Home | History | Annotate | Download | only in provider

Lines Matching defs:fis

103         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) {
143 DrmRawContent content = new DrmRawContent(fis, (int) fis.available(),
146 long size = fis.getChannel().size();
186 if (fis != null)
187 fis.close();