Home
last modified time | relevance | path

Searched refs:fo (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/app/
DDownloadManagerStressTest.java175 FileOutputStream fo = null; in testDownloadToCacheWithAlmostFullCache() local
177 fo = new FileOutputStream(outFile); in testDownloadToCacheWithAlmostFullCache()
179 fo.write(buffer); in testDownloadToCacheWithAlmostFullCache()
186 if (fo != null) { in testDownloadToCacheWithAlmostFullCache()
187 fo.close(); in testDownloadToCacheWithAlmostFullCache()
/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/wear/
DWearPackageUtil.java99 final FileOutputStream fo = new FileOutputStream(newFile); in getFileFromFd() local
101 fo.write(data, 0, nRead); in getFileFromFd()
103 fo.flush(); in getFileFromFd()
104 fo.close(); in getFileFromFd()
/frameworks/base/cmds/statsd/tools/loadtest/src/com/android/statsd/loadtest/
DPerfDataRecorder.java65 FileOutputStream fo = null; in runDumpsysStats() local
67 fo = context.openFileOutput(dumpFilename, Context.MODE_PRIVATE); in runDumpsysStats()
68 if (!Debug.dumpService(cmd, fo.getFD(), args)) { in runDumpsysStats()
77 closeQuietly(fo); in runDumpsysStats()
/frameworks/base/services/tests/servicestests/src/com/android/server/adb/
DAdbDebuggingManagerTest.java611 FileOutputStream fo = new FileOutputStream(mAdbKeyFile); in testUntrackedUserKeysAddedToKeystore() local
613 fo.write(key.getBytes()); in testUntrackedUserKeysAddedToKeystore()
614 fo.write('\n'); in testUntrackedUserKeysAddedToKeystore()
616 fo.close(); in testUntrackedUserKeysAddedToKeystore()
/frameworks/base/services/core/java/com/android/server/adb/
DAdbDebuggingManager.java1553 FileOutputStream fo = new FileOutputStream(keyFile, true); in writeKey() local
1554 fo.write(key.getBytes()); in writeKey()
1555 fo.write('\n'); in writeKey()
1556 fo.close(); in writeKey()
1567 FileOutputStream fo = null; in writeKeys() local
1576 fo = atomicKeyFile.startWrite(); in writeKeys()
1578 fo.write(key.getBytes()); in writeKeys()
1579 fo.write('\n'); in writeKeys()
1581 atomicKeyFile.finishWrite(fo); in writeKeys()
1588 atomicKeyFile.failWrite(fo); in writeKeys()
/frameworks/rs/driver/runtime/
Drs_cl.c1269 float fo; in native_exp2() local
1270 SET_FLOAT_WORD(fo, (x + 127) << 23); in native_exp2()
1275 return fo * adj; in native_exp2()
1285 float2 fo = (float2)(x << (int2)23); in native_exp2() local
1290 return fo * adj; in native_exp2()
1300 float4 fo = (float4)(x << (int4)23); in native_exp2() local
1305 return fo * adj; in native_exp2()