HomeSort by relevance Sort by last modified time
    Searched refs:fos (Results 51 - 75 of 342) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-17/arch-x86/usr/include/asm/
user_32.h 31 long fos; member in struct:user_i387_struct
45 long fos; member in struct:user_fxsr_struct
  /prebuilts/ndk/9/platforms/android-18/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
  /prebuilts/ndk/9/platforms/android-19/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
  /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
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
FileTest.java 305 FileOutputStream fos = new FileOutputStream(f); local
306 fos.close();
320 FileOutputStream fos = new FileOutputStream(f); local
321 fos.close();
622 FileOutputStream fos = new FileOutputStream(f); local
623 fos.close();
644 // FileOutputStream fos = new FileOutputStream(f1);
645 // fos.close();
691 FileOutputStream fos = new FileOutputStream(f); local
692 fos.close()
770 FileOutputStream fos = new FileOutputStream(f); local
842 FileOutputStream fos = new FileOutputStream(f1); local
1106 FileOutputStream fos = new FileOutputStream(f); local
1137 FileOutputStream fos = new FileOutputStream(f); local
1157 FileOutputStream fos = new FileOutputStream(f); local
1208 FileOutputStream fos = new FileOutputStream(file); local
1219 FileOutputStream fos = new FileOutputStream(f); local
1298 FileOutputStream fos = new FileOutputStream(file); local
1309 FileOutputStream fos = new FileOutputStream(f); local
1326 FileOutputStream fos = new FileOutputStream(f); local
1335 FileOutputStream fos = new FileOutputStream(f); local
1425 FileOutputStream fos = new FileOutputStream(file); local
1436 FileOutputStream fos = new FileOutputStream(f); local
1542 FileOutputStream fos = new FileOutputStream(file); local
1553 FileOutputStream fos = new FileOutputStream(f); local
1652 FileOutputStream fos = new FileOutputStream(f); local
1842 FileOutputStream fos = new FileOutputStream(f); local
1958 FileOutputStream fos = new FileOutputStream(f1); local
    [all...]
FilterInputStreamTest.java 101 OutputStream fos = new FileOutputStream(temp.getAbsolutePath()); local
102 fos.write(INPUT.getBytes(StandardCharsets.US_ASCII));
103 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/sip/src/com/android/services/telephony/sip/
SipProfileDb.java 75 FileOutputStream fos = null; local
78 fos = atomicFile.startWrite();
79 oos = new ObjectOutputStream(fos);
83 atomicFile.finishWrite(fos);
85 atomicFile.failWrite(fos);
  /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();
TransferPipe.java 187 final FileOutputStream fos; local
196 fos = new FileOutputStream(mOutFd);
211 fos.write(buffer, 0, size);
217 fos.write(buffer, start, i-start);
221 fos.write(bufferPrefix);
233 fos.write(buffer, start, size-start);
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldZipFileTest.java 149 FileOutputStream fos = new FileOutputStream(tempFile); local
151 fos.write(rbuf, 0, rbuf.length);
153 fos.close();
  /libcore/luni/src/test/java/libcore/util/
ZoneInfoDBTest.java 113 FileOutputStream fos = new FileOutputStream(f); local
114 fos.write(content);
115 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();
  /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 721 FileOutputStream fos = null; local
723 fos = new ParcelFileDescriptor.AutoCloseOutputStream(fd);
724 setWallpaper(resources.openRawResource(resid), fos); local
726 if (fos != null) {
727 fos.close();
759 FileOutputStream fos = null; local
761 fos = new ParcelFileDescriptor.AutoCloseOutputStream(fd);
762 bitmap.compress(Bitmap.CompressFormat.PNG, 90, fos);
764 if (fos != null) {
765 fos.close()
798 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/x86_64-linux-glibc2.11-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.11-4.8/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);

Completed in 1750 milliseconds

1 23 4 5 6 7 8 91011>>