Home | History | Annotate | Download | only in io

Lines Matching defs:fis

74             FileInputStream fis = new FileInputStream(pipe[0]);
75 fis.skip(SKIP_SIZE);
76 verifyData(fis, SKIP_SIZE, TOTAL_SIZE - SKIP_SIZE);
77 assertEquals(-1, fis.read());
159 FileInputStream fis = new FileInputStream(tmp);
162 fis.close();
163 fis.close();
167 fis.available();
172 fis.read();
177 fis.read(new byte[1], 0, 1);
182 fis.skip(1);
188 fis.skip(0);
193 fis.read(new byte[0], 0, 0);