Home
last modified time | relevance | path

Searched refs:toSkip (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
DURLConnection.java1614 long toSkip = (long)0x1C; in checkfpx() local
1617 if ((posn = skipForward(is, toSkip)) < toSkip) { in checkfpx()
1647 toSkip = (long)0x30 - posn; in checkfpx()
1649 if ((skipped = skipForward(is, toSkip)) < toSkip) { in checkfpx()
1675 toSkip = 0x200L + (long)(1<<uSectorShift)*sectDirStart + 0x50L; in checkfpx()
1678 if (toSkip < 0) { in checkfpx()
1688 is.mark((int)toSkip+0x30); in checkfpx()
1690 if ((skipForward(is, toSkip)) < toSkip) { in checkfpx()
1762 static private long skipForward(InputStream is, long toSkip) in skipForward() argument
1768 while (skipped != toSkip) { in skipForward()
[all …]
/libcore/ojluni/src/main/native/
DFileInputStream.c71 FileInputStream_skip0(JNIEnv *env, jobject this, jlong toSkip) { in FileInputStream_skip0() argument
85 } else if ((end = IO_Lseek(fd, toSkip, (jint)SEEK_CUR)) == -1) { in FileInputStream_skip0()