int |
NativeIO.close(int fd) |
|
int |
NativeIOImpl.close(int fd) |
|
(package private) static int |
NativeIOJni.close(int fd) |
|
int |
NativeIO.fallocate(int fd,
int mode,
long offset,
long len) |
fallocate is a linux-only syscall, so callers must handle the possibility that it does
not exist.
|
int |
NativeIOImpl.fallocate(int fd,
int mode,
long offset,
long len) |
|
(package private) static int |
NativeIOJni.fallocate(int fd,
int mode,
long offset,
long len) |
fallocate is a linux-only syscall, so callers must handle the possibility that it does
not exist.
|
void |
NativeIO.free(long pointer) |
|
void |
NativeIOImpl.free(long pointer) |
|
(package private) static void |
NativeIOJni.free(long pointer) |
|
int |
NativeIO.fsync(int fd) |
|
int |
NativeIOImpl.fsync(int fd) |
|
(package private) static int |
NativeIOJni.fsync(int fd) |
|
long |
NativeIO.lseek(int fd,
long offset,
int whence) |
|
long |
NativeIOImpl.lseek(int fd,
long offset,
int whence) |
|
(package private) static long |
NativeIOJni.lseek(int fd,
long offset,
int whence) |
|
int |
NativeIO.open(java.lang.String pathname,
int flags,
int mode) |
|
int |
NativeIOImpl.open(java.lang.String pathname,
int flags,
int mode) |
|
(package private) static int |
NativeIOJni.open(java.lang.String pathname,
int flags,
int mode) |
|
int |
NativeIO.posix_fadvise(int fd,
long offset,
long len,
int flag) |
posix_fadvise is a linux-only syscall, so callers must handle the possibility that it does
not exist.
|
int |
NativeIOImpl.posix_fadvise(int fd,
long offset,
long len,
int flag) |
|
(package private) static int |
NativeIOJni.posix_fadvise(int fd,
long offset,
long len,
int flag) |
|
long |
NativeIO.posix_memalign(int alignment,
int size) |
|
long |
NativeIOImpl.posix_memalign(int alignment,
int size) |
|
(package private) static long |
NativeIOJni.posix_memalign(int alignment,
int size) |
|
long |
NativeIO.pread(int fd,
long pointer,
long size,
long offset) |
|
long |
NativeIOImpl.pread(int fd,
long pointer,
long size,
long offset) |
|
(package private) static long |
NativeIOJni.pread(int fd,
long pointer,
long size,
long offset) |
|
int |
NativeIO.pwrite(int fd,
long pointer,
int count,
long offset) |
|
int |
NativeIOImpl.pwrite(int fd,
long pointer,
int count,
long offset) |
|
(package private) static int |
NativeIOJni.pwrite(int fd,
long pointer,
int count,
long offset) |
|