Searched defs:toSkip (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/test/java/io/FileInputStream/
H A DLargeFileAvailable.java73 // Skip toSkip number of bytes and expect that the available() method
75 private static long skipBytes(InputStream is, long toSkip, long avail) argument
77 long skip = is.skip(toSkip);
78 if (skip != toSkip) {
80 + " but expected " + toSkip);
/openjdk7/jdk/src/share/native/java/io/
H A DFileInputStream.c76 Java_java_io_FileInputStream_skip(JNIEnv *env, jobject this, jlong toSkip) { argument
86 } else if ((end = IO_Lseek(fd, toSkip, (jint)SEEK_CUR)) == -1) {
/openjdk7/jdk/src/share/classes/java/net/
H A DURLConnection.java1618 long toSkip = (long)0x1C;
1621 if ((posn = skipForward(is, toSkip)) < toSkip) {
1651 toSkip = (long)0x30 - posn;
1653 if ((skipped = skipForward(is, toSkip)) < toSkip) {
1679 toSkip = 0x200L + (long)(1<<uSectorShift)*sectDirStart + 0x50L;
1682 if (toSkip < 0) {
1692 is.mark((int)toSkip+0x30);
1694 if ((skipForward(is, toSkip)) < toSki
1766 skipForward(InputStream is, long toSkip) argument
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DmemTracker.cpp587 void MemTracker::walk_stack(int toSkip, char* buf, int len) { argument
593 pc = os::get_caller_pc(toSkip + 1);
601 toSkip ++;

Completed in 153 milliseconds