Home | History | Annotate | Download | only in makedict

Lines Matching refs:inStream

157             FileInputStream inStream = null;
160 inStream = new FileInputStream(file);
161 buffer = inStream.getChannel().map(FileChannel.MapMode.READ_ONLY,
164 if (inStream != null) {
165 inStream.close();
186 FileInputStream inStream = null;
188 inStream = new FileInputStream(file);
190 inStream.read(array);
193 if (inStream != null) {
194 inStream.close();