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.java1619 long toSkip = (long)0x1C; in checkfpx() local
1622 if ((posn = skipForward(is, toSkip)) < toSkip) { in checkfpx()
1652 toSkip = (long)0x30 - posn; in checkfpx()
1654 if ((skipped = skipForward(is, toSkip)) < toSkip) { in checkfpx()
1680 toSkip = 0x200L + (long)(1<<uSectorShift)*sectDirStart + 0x50L; in checkfpx()
1683 if (toSkip < 0) { in checkfpx()
1693 is.mark((int)toSkip+0x30); in checkfpx()
1695 if ((skipForward(is, toSkip)) < toSkip) { in checkfpx()
1767 static private long skipForward(InputStream is, long toSkip) in skipForward() argument
1773 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()