Searched defs:fos (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/net/
H A DLocalSocketImpl.java32 private SocketOutputStream fos; field in class:LocalSocketImpl
316 if (fos == null) {
317 fos = new SocketOutputStream();
320 return fos;
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java492 FileOutputStream fos = null;
494 fos = new ParcelFileDescriptor.AutoCloseOutputStream(fd);
495 setWallpaper(resources.openRawResource(resid), fos);
497 if (fos != null) {
498 fos.close();
530 FileOutputStream fos = null;
532 fos = new ParcelFileDescriptor.AutoCloseOutputStream(fd);
533 bitmap.compress(Bitmap.CompressFormat.PNG, 90, fos);
535 if (fos != null) {
536 fos
583 setWallpaper(InputStream data, FileOutputStream fos) argument
[all...]

Completed in 841 milliseconds