/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/asm/ |
user32.h | 30 u32 fos; member in struct:user_i387_ia32_struct 44 int fos; member in struct:user32_fxsr_struct
|
user_32.h | 31 long fos; member in struct:user_i387_struct 45 long fos; member in struct:user_fxsr_struct
|
/frameworks/base/media/java/android/media/ |
MediaMuxer.java | 128 FileOutputStream fos = null; local 131 fos = new FileOutputStream(file); 132 FileDescriptor fd = fos.getFD(); 137 if (fos != null) { 138 fos.close();
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
CameraTestHelper.java | 70 FileOutputStream fos = null; 74 fos = new FileOutputStream(String.format("%s/%s/%s-%d.jpg", 77 fos.write(data); 84 if (fos != null) { 85 fos.close();
|
/packages/services/Telephony/src/com/android/phone/sip/ |
SipProfileDb.java | 76 FileOutputStream fos = null; local 79 fos = atomicFile.startWrite(); 80 oos = new ObjectOutputStream(fos); 84 atomicFile.finishWrite(fos); 86 atomicFile.failWrite(fos);
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
FilterInputStreamTest.java | 148 java.io.OutputStream fos = new java.io.FileOutputStream(fileName); local 149 fos.write(fileString.getBytes("UTF-8")); 150 fos.close();
|
FileTest.java | 315 FileOutputStream fos = new FileOutputStream(f); local 316 fos.close(); 330 FileOutputStream fos = new FileOutputStream(f); local 331 fos.close(); 632 FileOutputStream fos = new FileOutputStream(f); local 633 fos.close(); 654 // FileOutputStream fos = new FileOutputStream(f1); 655 // fos.close(); 726 FileOutputStream fos = new FileOutputStream(f); local 727 fos.close() 805 FileOutputStream fos = new FileOutputStream(f); local 877 FileOutputStream fos = new FileOutputStream(f1); local 1142 FileOutputStream fos = new FileOutputStream(f); local 1173 FileOutputStream fos = new FileOutputStream(f); local 1193 FileOutputStream fos = new FileOutputStream(f); local 1244 FileOutputStream fos = new FileOutputStream(file); local 1255 FileOutputStream fos = new FileOutputStream(f); local 1334 FileOutputStream fos = new FileOutputStream(file); local 1345 FileOutputStream fos = new FileOutputStream(f); local 1362 FileOutputStream fos = new FileOutputStream(f); local 1371 FileOutputStream fos = new FileOutputStream(f); local 1461 FileOutputStream fos = new FileOutputStream(file); local 1472 FileOutputStream fos = new FileOutputStream(f); local 1578 FileOutputStream fos = new FileOutputStream(file); local 1589 FileOutputStream fos = new FileOutputStream(f); local 1688 FileOutputStream fos = new FileOutputStream(f); local 1878 FileOutputStream fos = new FileOutputStream(f); local 1996 FileOutputStream fos = new FileOutputStream(f1); local [all...] |
/frameworks/base/core/java/android/util/ |
AtomicFile.java | 162 FileOutputStream fos = new FileOutputStream(mBaseName); local 163 FileUtils.sync(fos); 164 fos.close();
|
/frameworks/base/core/java/com/android/internal/os/ |
AtomicFile.java | 124 FileOutputStream fos = new FileOutputStream(mBaseName); local 125 FileUtils.sync(fos); 126 fos.close();
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
TestUtils.java | 96 FileOutputStream fos = new FileOutputStream(file); local 97 fos.write(data); 98 fos.close();
|
/frameworks/base/services/tests/servicestests/src/com/android/server/content/ |
SyncStorageEngineTest.java | 377 FileOutputStream fos = accountInfoFile.startWrite(); local 378 fos.write(accountsFileData); 379 accountInfoFile.finishWrite(fos); 408 fos = accountInfoFile.startWrite(); 409 fos.write(accountsFileData); 410 accountInfoFile.finishWrite(fos); 437 fos = accountInfoFile.startWrite(); 438 fos.write(accountsFileData); 439 accountInfoFile.finishWrite(fos); 485 FileOutputStream fos = accountInfoFile.startWrite() local 579 FileOutputStream fos = accountInfoFile.startWrite(); local 622 FileOutputStream fos = accountInfoFile.startWrite(); local 662 FileOutputStream fos = accountInfoFile.startWrite(); local [all...] |
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/ |
font.cc | 75 FontOutputStream fos(os); 76 SerializeHeader(&fos, &table_records); 77 SerializeTables(&fos, &table_records); 113 void Font::SerializeHeader(FontOutputStream* fos, 115 fos->WriteFixed(sfnt_version_); 116 fos->WriteUShort(table_headers->size()); 119 fos->WriteUShort(search_range); 120 fos->WriteUShort(log2_of_max_power_of_2); 121 fos->WriteUShort((table_headers->size() * 16) - search_range); 131 fos->WriteULong((*record)->tag()) [all...] |
/external/sfntly/cpp/src/sfntly/ |
font.cc | 75 FontOutputStream fos(os); 76 SerializeHeader(&fos, &table_records); 77 SerializeTables(&fos, &table_records); 113 void Font::SerializeHeader(FontOutputStream* fos, 115 fos->WriteFixed(sfnt_version_); 116 fos->WriteUShort(table_headers->size()); 119 fos->WriteUShort(search_range); 120 fos->WriteUShort(log2_of_max_power_of_2); 121 fos->WriteUShort((table_headers->size() * 16) - search_range); 131 fos->WriteULong((*record)->tag()) [all...] |
/frameworks/base/core/java/android/app/ |
WallpaperManager.java | 729 FileOutputStream fos = null; local 731 fos = new ParcelFileDescriptor.AutoCloseOutputStream(fd); 732 setWallpaper(resources.openRawResource(resid), fos); local 734 if (fos != null) { 735 fos.close(); 767 FileOutputStream fos = null; local 769 fos = new ParcelFileDescriptor.AutoCloseOutputStream(fd); 770 bitmap.compress(Bitmap.CompressFormat.PNG, 90, fos); 772 if (fos != null) { 773 fos.close() 806 FileOutputStream fos = null; local [all...] |
/libcore/luni/src/test/java/libcore/java/io/ |
OldOutputStreamWriterTest.java | 36 private Support_OutputStream fos; field in class:OldOutputStreamWriterTest 42 fos = new Support_OutputStream(500); 43 osw = new OutputStreamWriter(fos, "UTF-8"); 91 osw = new OutputStreamWriter(fos, (String) null); 98 osw = new OutputStreamWriter(fos, ""); 105 osw = new OutputStreamWriter(fos, "Bogus"); 112 osw = new OutputStreamWriter(fos, "8859_1"); 177 fos.setThrowsException(true); 195 fos.setThrowsException(false); 259 fos.setThrowsException(true) [all...] |
/external/jdiff/src/jdiff/ |
HTMLFiles.java | 29 FileOutputStream fos = new FileOutputStream(tln); local 30 h_.reportFile = new PrintWriter(fos); 82 FileOutputStream fos = new FileOutputStream(tlf); local 83 h_.reportFile = new PrintWriter(fos); 128 FileOutputStream fos = new FileOutputStream(helpFileName); local 129 h_.reportFile = new PrintWriter(fos); 274 FileOutputStream fos = new FileOutputStream(stylesheetFileName); local 275 h_.reportFile = new PrintWriter(fos);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/ |
user.h | 106 long int fos; member in struct:user_fpregs_struct 119 long int fos; member in struct:user_fpxregs_struct
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
user.h | 106 long int fos; member in struct:user_fpregs_struct 119 long int fos; member in struct:user_fpxregs_struct
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
user.h | 106 long int fos; member in struct:user_fpregs_struct 119 long int fos; member in struct:user_fpxregs_struct
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
TraceFileWriter.java | 39 * @param fos output stream to write trace data to 42 public TraceFileWriter(FileOutputStream fos, DataInputStream is) { 43 mOutputStream = new DataOutputStream(fos);
|
/libcore/luni/src/main/java/libcore/net/url/ |
JarURLConnectionImpl.java | 140 FileOutputStream fos = null; local 145 fos = new FileOutputStream(tempJar); 149 fos.write(buf, 0, nbytes); 151 fos.close(); 156 if (fos != null) { 158 fos.close();
|
/frameworks/base/core/tests/coretests/src/android/content/pm/ |
AppCacheTest.java | 167 FileOutputStream fos = null; local 169 fos = new FileOutputStream(pFile); 175 fos.write(pFileOut.getBytes()); 176 fos.close(); 208 FileOutputStream fos = con.openFileOutput(fileName, Context.MODE_PRIVATE); local 209 fos.close(); 244 FileOutputStream fos = null; local 246 fos = new FileOutputStream(file1); 248 fos.write(buffer); 251 fos.close() 301 FileOutputStream fos; local 367 FileOutputStream fos = null; local 417 FileOutputStream fos = null; local [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
TextureRender.java | 285 FileOutputStream fos = null; local 287 fos = new FileOutputStream(filename); 289 bmp.compress(Bitmap.CompressFormat.PNG, 90, fos); 295 if (fos != null) fos.close();
|
/cts/tests/tests/uidisolation/src/android/uidisolation/cts/ |
PermissionTestService.java | 189 FileOutputStream fos = null; local 191 fos = getApplication().openFileOutput("writeable_file", 0); 193 fos.write(content, 0, content.length); 201 if (fos != null) { 203 fos.close();
|
/development/apps/Development/src/com/android/development/ |
CacheAbuser.java | 73 FileOutputStream fos = null; local 76 fos = new FileOutputStream(file, false); 77 fos.write(mBuffer); 86 if (fos != null) { 87 fos.close();
|