Searched refs:cis (Results 1 – 3 of 3) sorted by relevance
115 CountingInputStream cis = null; in get() local117 cis = new CountingInputStream(new BufferedInputStream(new FileInputStream(file))); in get()118 CacheHeader.readHeader(cis); // eat header in get()119 byte[] data = streamToBytes(cis, (int) (file.length() - cis.bytesRead)); in get()126 if (cis != null) { in get()128 cis.close(); in get()
344 CheckedInputStream cis = null; in checksumCrc32() local347 cis = new CheckedInputStream( new FileInputStream(file), checkSummer); in checksumCrc32()349 while(cis.read(buf) >= 0) { in checksumCrc32()354 if (cis != null) { in checksumCrc32()356 cis.close(); in checksumCrc32()
106 CommandsInterface[] cis, Phone[] phones) { in PhoneSwitcher() argument127 mCommandsInterfaces = cis; in PhoneSwitcher()