Searched defs:posix_fallocate (Results 1 - 5 of 5) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java222 @Override public void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException { method in class:BlockGuardOs
224 os.posix_fallocate(fd, offset, length);
H A DForwardingOs.java140 public void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException { os.posix_fallocate(fd, offset, length); } method in class:ForwardingOs
H A DLinux.java131 public native void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException; method in class:Linux
H A DOs.java127 public void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException; method in interface:Os
/libcore/luni/src/main/java/android/system/
H A DOs.java377 * See <a href="http://man7.org/linux/man-pages/man3/posix_fallocate.3.html">posix_fallocate(3)</a>.
379 public static void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException { Libcore.os.posix_fallocate(fd, offset, length); } method in class:Os

Completed in 32 milliseconds