HomeSort by relevance Sort by last modified time
    Searched refs:FileOutputStream (Results 176 - 200 of 582) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/guava/guava/src/com/google/common/io/
Files.java 32 import java.io.FileOutputStream;
89 new OutputStreamWriter(new FileOutputStream(file), charset));
111 * Returns a factory that will supply instances of {@link FileOutputStream}
117 public static OutputSupplier<FileOutputStream> newOutputStreamSupplier(
123 * Returns a factory that will supply instances of {@link FileOutputStream}
131 public static OutputSupplier<FileOutputStream> newOutputStreamSupplier(
134 return new OutputSupplier<FileOutputStream>() {
136 public FileOutputStream getOutput() throws IOException {
137 return new FileOutputStream(file, append);
  /cts/hostsidetests/appsecurity/test-apps/ExternalStorageApp/src/com/android/cts/externalstorageapp/
CommonExternalStorageTest.java 28 import java.io.FileOutputStream;
240 new FileOutputStream(path, true).close();
255 new FileOutputStream(path, true).close();
270 new FileOutputStream(path, true).close();
291 final DataOutputStream os = new DataOutputStream(new FileOutputStream(file));