HomeSort by relevance Sort by last modified time
    Searched refs:fallocate (Results 1 - 25 of 29) sorted by null

1 2

  /bionic/libc/arch-arm64/syscalls/
fallocate.S 5 ENTRY(fallocate) function
14 END(fallocate)
17 .equ fallocate64, fallocate
  /bionic/libc/arch-x86_64/syscalls/
fallocate.S 5 ENTRY(fallocate) function
16 END(fallocate)
19 .equ fallocate64, fallocate
  /bionic/libc/arch-mips64/syscalls/
fallocate.S 5 ENTRY(fallocate) function
25 END(fallocate)
28 .equ fallocate64, fallocate
  /bionic/libc/bionic/
posix_fallocate.cpp 35 return (fallocate(fd, 0, offset, length) == 0) ? 0 : errno;
legacy_32_bit_support.cpp 92 // There is no fallocate for 32-bit off_t, so we need to widen and call fallocate64.
93 int fallocate(int fd, int mode, off_t offset, off_t length) { function
  /external/fio/
helpers.h 9 extern int fallocate(int fd, int mode, off_t offset, off_t len);
helpers.c 13 int fallocate(int fd, int mode, off_t offset, off_t len) function
configure 573 # Linux fallocate probe
581 int r = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 1024);
588 echo "Linux fallocate $linux_fallocate"
608 # POSIX fallocate probe
622 echo "POSIX fallocate $posix_fallocate"
  /external/fio/examples/
enospc-pressure.fio 19 fallocate=none
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
fcntl.h 286 extern int fallocate (int __fd, int __mode, __off_t __offset, __off_t __len);
289 extern int __REDIRECT (fallocate, (int __fd, int __mode, __off64_t __offset,
293 # define fallocate fallocate64 macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
fcntl.h 286 extern int fallocate (int __fd, int __mode, __off_t __offset, __off_t __len);
289 extern int __REDIRECT (fallocate, (int __fd, int __mode, __off64_t __offset,
293 # define fallocate fallocate64 macro
  /bionic/libc/include/
fcntl.h 69 extern int fallocate(int, int, off_t, off_t);
  /development/ndk/platforms/android-L/include/
fcntl.h 69 extern int fallocate(int, int, off_t, off_t);
  /external/fio/engines/
falloc.c 4 * IO engine that does regular fallocate to simulate data transfer
6 * DDIR_READ does fallocate(,mode = FALLOC_FL_KEEP_SIZE,)
7 * DDIR_WRITE does fallocate(,mode = 0) : fallocate with size extension
8 * DDIR_TRIM does fallocate(,mode = FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE)
33 log_err("fio: only files are supported fallocate \n");
88 ret = fallocate(f->fd, flags, io_u->offset, io_u->xfer_buflen);
e4defrag.c 102 r = fallocate(ed->donor_fd, 0, td->o.start_offset, len);
153 ret = fallocate(ed->donor_fd, 0, io_u->offset, io_u->xfer_buflen);
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/
fcntl.h 69 extern int fallocate(int, int, off_t, off_t);
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/
fcntl.h 69 extern int fallocate(int, int, off_t, off_t);
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/
fcntl.h 69 extern int fallocate(int, int, off_t, off_t);
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/
fcntl.h 69 extern int fallocate(int, int, off_t, off_t);
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/
fcntl.h 69 extern int fallocate(int, int, off_t, off_t);
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/
fcntl.h 69 extern int fallocate(int, int, off_t, off_t);
  /bionic/tests/
fcntl_test.cpp 96 // fallocate/fallocate64 set errno.
100 ASSERT_EQ(-1, fallocate(tf.fd, 0, 0, -1));
116 TEST(fcntl, fallocate) {
123 ASSERT_EQ(0, fallocate(tf.fd, 0, 0, 1));
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
fuse.h 257 int (*fallocate)(const char*, int, off_t, off_t, struct fuse_file_info*); member in struct:fuse_operations
  /system/vold/
Loop.cpp 262 if (fallocate(fd, 0, 0, numSectors * 512)) {
264 SLOGW("fallocate not found. Falling back to ftruncate.");
  /external/chromium_org/components/nacl/loader/nonsfi/
nonsfi_sandbox_sigsys_unittest.cc 113 RESTRICT_SYSCALL_DEATH_TEST(fallocate);

Completed in 1415 milliseconds

1 2