Searched defs:whence (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.inline.hpp124 inline jlong os::lseek(int fd, jlong offset, int whence) { argument
125 return (jlong) ::lseek(fd, offset, whence);
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.inline.hpp128 inline jlong os::lseek(int fd, jlong offset, int whence) { argument
129 return (jlong) ::lseek64(fd, offset, whence);
/openjdk7/jdk/src/windows/native/java/io/
H A Dio_util_md.c568 handleLseek(jlong fd, jlong offset, jint whence) argument
576 if (whence == SEEK_END) {
579 if (whence == SEEK_CUR) {
582 if (whence == SEEK_SET) {
/openjdk7/hotspot/src/share/vm/memory/
H A Dallocation.hpp302 void signal_out_of_memory(size_t request, const char* whence) const;
304 bool check_for_overflow(size_t request, const char* whence, argument
310 signal_out_of_memory(request, whence);
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp5733 jlong os::lseek(int fd, jlong offset, int whence) { argument
5734 return (jlong) ::lseek64(fd, offset, whence);
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp4145 jlong os::lseek(int fd, jlong offset, int whence) { argument
4146 return (jlong) ::_lseeki64(fd, offset, whence);

Completed in 289 milliseconds