Home | History | Annotate | Download | only in shadows

Lines Matching refs:fos

108         FileOutputStream fos = null;
110 fos = new FileOutputStream(cacheTest);
111 fos.write("test".getBytes());
113 if (fos != null)
114 fos.close();
126 FileOutputStream fos = null;
128 fos = new FileOutputStream(cacheTest);
129 fos.write("test".getBytes());
131 if (fos != null)
132 fos.close();
214 FileOutputStream fos = null;
216 fos = context.openFileOutput(File.separator + "data" + File.separator + "test" + File.separator + "hi", 0);
218 if (fos != null)
219 fos.close();