HomeSort by relevance Sort by last modified time
    Searched refs:posix_fallocate (Results 1 - 11 of 11) sorted by null

  /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",
  /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);
  /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));
  /bionic/libc/
Android.mk 150 bionic/posix_fallocate.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...]

Completed in 429 milliseconds