/bionic/libc/bionic/ |
posix_fallocate.cpp | 33 int posix_fallocate(int fd, off_t offset, off_t length) { function
|
/external/fio/ |
helpers.h | 10 extern int posix_fallocate(int fd, off_t offset, off_t len);
|
helpers.c | 21 int posix_fallocate(int fd, off_t offset, off_t len) function
|
configure | 609 posix_fallocate="no" 615 int r = posix_fallocate(0, 0, 1024); 619 if compile_prog "" "" "posix_fallocate"; then 620 posix_fallocate="yes" 622 echo "POSIX fallocate $posix_fallocate" 1227 if test "$posix_fallocate" = "yes" ; then
|
filesetup.c | 89 dprint(FD_FILE, "posix_fallocate file %s size %llu\n", 93 r = posix_fallocate(f->fd, 0, f->real_file_size); 95 log_err("fio: posix_fallocate fails: %s\n",
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/ |
fcntl.h | 186 extern int posix_fallocate (int __fd, __off_t __offset, __off_t __len); 189 extern int __REDIRECT (posix_fallocate, (int __fd, __off64_t __offset, 193 # define posix_fallocate posix_fallocate64 macro
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
fcntl.h | 186 extern int posix_fallocate (int __fd, __off_t __offset, __off_t __len); 189 extern int __REDIRECT (posix_fallocate, (int __fd, __off64_t __offset, 193 # define posix_fallocate posix_fallocate64 macro
|
/bionic/libc/include/ |
fcntl.h | 78 extern int posix_fallocate(int, off_t, off_t);
|
/development/ndk/platforms/android-L/include/ |
fcntl.h | 76 extern int posix_fallocate(int, off_t, off_t);
|
/prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/ |
fcntl.h | 78 extern int posix_fallocate(int, off_t, off_t);
|
/prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/ |
fcntl.h | 78 extern int posix_fallocate(int, off_t, off_t);
|
/prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/ |
fcntl.h | 78 extern int posix_fallocate(int, off_t, off_t);
|
/bionic/tests/ |
fcntl_test.cpp | 97 // posix_fallocate/posix_fallocate64 return an errno value. 108 ASSERT_EQ(EINVAL, posix_fallocate(tf.fd, 0, -1)); 132 ASSERT_EQ(0, posix_fallocate(tf.fd, 0, 3));
|
/libcore/luni/src/main/java/libcore/io/ |
BlockGuardOs.java | 198 @Override public void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException { method in class:BlockGuardOs 200 os.posix_fallocate(fd, offset, length);
|
ForwardingOs.java | 118 public void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException { os.posix_fallocate(fd, offset, length); } method in class:ForwardingOs
|
Os.java | 111 public void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException; method in interface:Os
|
Posix.java | 112 public native void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException; method in class:Posix
|
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
StorageTest.java | 198 Os.posix_fallocate(os.getFD(), 0, dirtySize);
|
/libcore/luni/src/main/java/android/system/ |
Os.java | 327 * See <a href="http://man7.org/linux/man-pages/man2/posix_fallocate.2.html">posix_fallocate(2)</a>. 329 public static void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException { Libcore.os.posix_fallocate(fd, offset, length); } method in class:Os
|
/frameworks/base/services/core/java/com/android/server/pm/ |
PackageInstallerSession.java | 367 Libcore.os.posix_fallocate(targetFd, 0, lengthBytes); [all...] |
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
DownloadThread.java | 468 Os.posix_fallocate(outFd, 0, mInfoDelta.mTotalBytes);
|
/bionic/libc/ |
Android.mk | 148 bionic/posix_fallocate.cpp \ [all...] |
/libcore/luni/src/main/native/ |
libcore_io_Posix.cpp | [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
os_unix.c | 377 { "fallocate", (sqlite3_syscall_ptr)posix_fallocate, 0 }, [all...] |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | [all...] |