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

/frameworks/base/core/java/android/provider/
H A DDrmStore.java103 FileInputStream fis = null;
107 fis = new FileInputStream(file);
115 result = addDrmFile(cr, fis, title);
120 if (fis != null)
121 fis.close();
134 * @param fis The FileInputStream to insert
138 public static final Intent addDrmFile(ContentResolver cr, FileInputStream fis, String title) { argument
143 DrmRawContent content = new DrmRawContent(fis, (int) fis.available(),
146 long size = fis
[all...]
/frameworks/base/core/java/android/net/
H A DLocalSocketImpl.java31 private SocketInputStream fis; field in class:LocalSocketImpl
295 if (fis == null) {
296 fis = new SocketInputStream();
299 return fis;

Completed in 86 milliseconds