Searched refs:fos (Results 1 – 3 of 3) sorted by relevance
72 FileOutputStream fos = null; in doInBackground() local75 fos = new FileOutputStream(file, false); in doInBackground()76 fos.write(mBuffer); in doInBackground()85 if (fos != null) { in doInBackground()86 fos.close(); in doInBackground()
261 try (FileOutputStream fos = openFileOutput(fileName, Context.MODE_PRIVATE)) { in writeToFile() argument262 fos.write(bytes); in writeToFile()
590 FileOutputStream fos = getContext().openFileOutput(filename, Context.MODE_PRIVATE);591 fos.write(buffer);592 fos.close();