Home
last modified time | relevance | path

Searched refs:fos (Results 1 – 3 of 3) sorted by relevance

/development/apps/Development/src/com/android/development/
DCacheAbuser.java72 FileOutputStream fos = null; in doInBackground() local
75 fos = new FileOutputStream(file, false); in doInBackground()
76 fos.write(mBuffer); in doInBackground()
85 if (fos != null) { in doInBackground()
86 fos.close(); in doInBackground()
/development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/
DBrokenKeyDerivationActivity.java261 try (FileOutputStream fos = openFileOutput(fileName, Context.MODE_PRIVATE)) { in writeToFile() argument
262 fos.write(bytes); in writeToFile()
/development/samples/browseable/StorageProvider/src/com.example.android.storageprovider/
DMyCloudProvider.java590 FileOutputStream fos = getContext().openFileOutput(filename, Context.MODE_PRIVATE);
591 fos.write(buffer);
592 fos.close();