Searched refs:whence (Results 1 - 12 of 12) sorted by relevance

/openjdk9/jdk/src/java.base/windows/native/libnio/ch/
H A DFileChannelImpl.c150 DWORD whence; local
154 whence = FILE_CURRENT;
157 whence = FILE_BEGIN;
160 result = SetFilePointerEx(h, where, &where, whence);
/openjdk9/jdk/src/java.base/share/native/libzip/zlib/
H A Dgzlib.c390 z_off64_t ZEXPORT gzseek64(file, offset, whence)
393 int whence;
411 if (whence != SEEK_SET && whence != SEEK_CUR)
415 if (whence == SEEK_SET)
467 z_off_t ZEXPORT gzseek(file, offset, whence)
470 int whence;
474 ret = gzseek64(file, (z_off64_t)offset, whence);
/openjdk9/hotspot/src/os/linux/vm/
H A Dos_linux.inline.hpp83 inline jlong os::lseek(int fd, jlong offset, int whence) { argument
84 return (jlong) ::lseek64(fd, offset, whence);
/openjdk9/hotspot/src/os/bsd/vm/
H A Dos_bsd.inline.hpp91 inline jlong os::lseek(int fd, jlong offset, int whence) { argument
92 return (jlong) ::lseek(fd, offset, whence);
/openjdk9/hotspot/src/os/aix/vm/
H A Dos_aix.inline.hpp88 inline jlong os::lseek(int fd, jlong offset, int whence) { argument
89 return (jlong) ::lseek64(fd, offset, whence);
/openjdk9/jdk/src/java.base/windows/native/libjava/
H A Dio_util_md.c563 handleLseek(FD fd, jlong offset, jint whence) argument
571 if (whence == SEEK_END) {
574 if (whence == SEEK_CUR) {
577 if (whence == SEEK_SET) {
H A Dio_util_md.h52 jlong handleLseek(FD fd, jlong offset, jint whence);
/openjdk9/hotspot/src/share/vm/memory/
H A Dallocation.hpp380 void signal_out_of_memory(size_t request, const char* whence) const;
382 bool check_for_overflow(size_t request, const char* whence, argument
388 signal_out_of_memory(request, whence);
H A Dallocation.cpp535 void Arena::signal_out_of_memory(size_t sz, const char* whence) const {
536 vm_exit_out_of_memory(sz, OOM_MALLOC_ERROR, "%s", whence);
/openjdk9/hotspot/src/share/vm/runtime/
H A Dos.hpp513 static jlong lseek(int fd, jlong offset, int whence);
/openjdk9/hotspot/src/os/windows/vm/
H A Dos_windows.cpp4510 jlong os::lseek(int fd, jlong offset, int whence) { argument
4511 return (jlong) ::_lseeki64(fd, offset, whence);
/openjdk9/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp4634 jlong os::lseek(int fd, jlong offset, int whence) { argument
4635 return (jlong) ::lseek64(fd, offset, whence);

Completed in 283 milliseconds