Searched refs:posix_fallocate (Results 1 - 6 of 6) sorted by last modified time

/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp1454 throwErrnoException(env, "posix_fallocate");
2033 NATIVE_METHOD(Posix, posix_fallocate, "(Ljava/io/FileDescriptor;JJ)V"),
/libcore/luni/src/main/java/android/system/
H A DOs.java336 * See <a href="http://man7.org/linux/man-pages/man2/posix_fallocate.2.html">posix_fallocate(2)</a>.
338 public static void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException { Libcore.os.posix_fallocate(fd, offset, length); } method in class:Os
/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java199 @Override public void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException { method in class:BlockGuardOs
201 os.posix_fallocate(fd, offset, length);
H A DForwardingOs.java122 public void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException { os.posix_fallocate(fd, offset, length); } method in class:ForwardingOs
H A DOs.java115 public void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException; method in interface:Os
H A DPosix.java116 public native void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException; method in class:Posix

Completed in 70 milliseconds