/prebuilts/ndk/r11/platforms/android-21/arch-x86_64/usr/include/ |
fcntl.h | 78 extern int posix_fallocate(int, off_t, off_t);
|
/prebuilts/ndk/r11/platforms/android-23/arch-arm/usr/include/ |
fcntl.h | 78 extern int posix_fallocate(int, off_t, off_t);
|
/prebuilts/ndk/r11/platforms/android-23/arch-arm64/usr/include/ |
fcntl.h | 78 extern int posix_fallocate(int, off_t, off_t);
|
/prebuilts/ndk/r11/platforms/android-23/arch-mips/usr/include/ |
fcntl.h | 78 extern int posix_fallocate(int, off_t, off_t);
|
/prebuilts/ndk/r11/platforms/android-23/arch-mips64/usr/include/ |
fcntl.h | 78 extern int posix_fallocate(int, off_t, off_t);
|
/prebuilts/ndk/r11/platforms/android-23/arch-x86/usr/include/ |
fcntl.h | 78 extern int posix_fallocate(int, off_t, off_t);
|
/prebuilts/ndk/r11/platforms/android-23/arch-x86_64/usr/include/ |
fcntl.h | 78 extern int posix_fallocate(int, off_t, off_t);
|
/prebuilts/ndk/r11/platforms/android-24/arch-arm/usr/include/ |
fcntl.h | 78 extern int posix_fallocate(int, off_t, off_t);
|
/prebuilts/ndk/r11/platforms/android-24/arch-arm64/usr/include/ |
fcntl.h | 78 extern int posix_fallocate(int, off_t, off_t);
|
/prebuilts/ndk/r11/platforms/android-24/arch-mips/usr/include/ |
fcntl.h | 78 extern int posix_fallocate(int, off_t, off_t);
|
/prebuilts/ndk/r11/platforms/android-24/arch-mips64/usr/include/ |
fcntl.h | 78 extern int posix_fallocate(int, off_t, off_t);
|
/prebuilts/ndk/r11/platforms/android-24/arch-x86/usr/include/ |
fcntl.h | 78 extern int posix_fallocate(int, off_t, off_t);
|
/prebuilts/ndk/r11/platforms/android-24/arch-x86_64/usr/include/ |
fcntl.h | 78 extern int posix_fallocate(int, off_t, off_t);
|
/cts/hostsidetests/appsecurity/test-apps/StorageApp/src/com/android/cts/storageapp/ |
Hoarder.java | 77 Os.posix_fallocate(fd, 0, size);
|
Utils.java | 124 Os.posix_fallocate(fd, 0, length);
|
/external/toybox/scripts/ |
genconfig.sh | 56 int main(int argc, char *argv[]) { return posix_fallocate(0,0,0); }
|
/external/elfutils/libelf/ |
elf_update.c | 85 full. In glibc posix_fallocate is required to extend the 95 && unlikely (posix_fallocate (elf->fildes, 0, size) != 0))
|
/bionic/tests/ |
fcntl_test.cpp | 106 // posix_fallocate/posix_fallocate64 return an errno value. 117 ASSERT_EQ(EINVAL, posix_fallocate(tf.fd, 0, -1)); 141 ASSERT_EQ(0, posix_fallocate(tf.fd, 0, 3));
|
/external/fio/ |
configure | 770 if test "$posix_fallocate" != "yes" ; then 771 posix_fallocate="no" 778 int r = posix_fallocate(0, 0, 1024); 782 if compile_prog "" "" "posix_fallocate"; then 783 posix_fallocate="yes" 785 echo "POSIX fallocate $posix_fallocate" [all...] |
/libcore/luni/src/test/java/libcore/java/io/ |
FileInputStreamTest.java | 281 Os.posix_fallocate(fos.getFD(), 0, fileSize);
|
/libcore/luni/src/main/java/libcore/io/ |
BlockGuardOs.java | 219 @Override public void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException { method in class:BlockGuardOs 221 os.posix_fallocate(fd, offset, length);
|
Os.java | 127 public void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException; method in interface:Os
|
ForwardingOs.java | 140 public void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException { os.posix_fallocate(fd, offset, length); } method in class:ForwardingOs
|
/libcore/luni/src/main/java/android/system/ |
Os.java | 375 * See <a href="http://man7.org/linux/man-pages/man3/posix_fallocate.3.html">posix_fallocate(3)</a>. 377 public static void posix_fallocate(FileDescriptor fd, long offset, long length) throws ErrnoException { Libcore.os.posix_fallocate(fd, offset, length); } method in class:Os
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
pthread.h | 606 #define posix_fallocate(...) (pthread_testcancel(), posix_fallocate(__VA_ARGS__)) macro [all...] |