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

1 2 3 4 5

  /bionic/libc/arch-arm64/syscalls/
fallocate.S 5 ENTRY(fallocate) function
14 END(fallocate)
16 ALIAS_SYMBOL(fallocate64, fallocate)
  /bionic/libc/arch-x86_64/syscalls/
fallocate.S 5 ENTRY(fallocate) function
16 END(fallocate)
18 ALIAS_SYMBOL(fallocate64, fallocate)
  /bionic/libc/arch-mips64/syscalls/
fallocate.S 5 ENTRY(fallocate) function
25 END(fallocate)
27 ALIAS_SYMBOL(fallocate64, fallocate)
  /bionic/libc/bionic/
posix_fallocate.cpp 35 return (fallocate(fd, 0, offset, length) == 0) ? 0 : errno;
  /external/strace/
fallocate.c 9 SYS_FUNC(fallocate)
  /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
  /external/autotest/server/site_tests/network_DiskFull/
hog_disk.sh 43 fallocate --length "$mount_size_bytes" "$temp_file" 2>/dev/null || true
  /external/ltp/testcases/kernel/syscalls/fallocate/
fallocate.h 51 static inline long fallocate(int fd, int mode, loff_t offset, loff_t len) function
fallocate04.c 35 #include "fallocate.h"
123 if (fallocate(fd, 0, 0, buf_size) == -1) {
125 tst_brkm(TCONF, cleanup, "fallocate() not supported");
126 tst_brkm(TFAIL | TERRNO, cleanup, "fallocate() failed");
150 if (fallocate(fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
156 tst_brkm(TFAIL | TERRNO, cleanup, "fallocate() failed");
166 "fallocate() or lseek() failed");
209 if (fallocate(fd, FALLOC_FL_ZERO_RANGE, block_size - 1,
215 tst_brkm(TFAIL | TERRNO, cleanup, "fallocate failed");
246 if (fallocate(fd, FALLOC_FL_COLLAPSE_RANGE, block_size
    [all...]
  /external/strace/tests/
fallocate.c 2 * Check decoding of fallocate syscall.
51 long rc = fallocate(bogus_fd, bogus_mode, bogus_offset, bogus_len);
61 printf("fallocate(%d, ", bogus_fd);
  /external/strace/tests-m32/
fallocate.c 2 * Check decoding of fallocate syscall.
51 long rc = fallocate(bogus_fd, bogus_mode, bogus_offset, bogus_len);
61 printf("fallocate(%d, ", bogus_fd);
  /external/strace/tests-mx32/
fallocate.c 2 * Check decoding of fallocate syscall.
51 long rc = fallocate(bogus_fd, bogus_mode, bogus_offset, bogus_len);
61 printf("fallocate(%d, ", bogus_fd);
  /external/fio/examples/
enospc-pressure.fio 19 fallocate=none
  /external/f2fs-tools/mkfs/
f2fs_format_utils.c 50 if (fallocate(config.fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
52 MSG(0, "Info: fallocate(PUNCH_HOLE|KEEP_SIZE) is failed\n");
  /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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
fcntl.h 307 extern int fallocate (int __fd, int __mode, __off_t __offset, __off_t __len);
310 extern int __REDIRECT (fallocate, (int __fd, int __mode, __off64_t __offset,
314 # define fallocate fallocate64 macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
fcntl.h 325 extern int fallocate (int __fd, int __mode, __off_t __offset, __off_t __len);
328 extern int __REDIRECT (fallocate, (int __fd, int __mode, __off64_t __offset,
332 # define fallocate fallocate64 macro
  /bionic/libc/include/
fcntl.h 80 int fallocate(int, int, off_t, off_t) __RENAME(fallocate64) __INTRODUCED_IN(21);
84 int fallocate(int, int, off_t, off_t) __INTRODUCED_IN(21);
  /bionic/tests/
fcntl_test.cpp 105 // fallocate/fallocate64 set errno.
109 ASSERT_EQ(-1, fallocate(tf.fd, 0, 0, -1));
125 TEST(fcntl, fallocate) {
132 ASSERT_EQ(0, fallocate(tf.fd, 0, 0, 1));
295 ASSERT_EQ(-1, fallocate(tf.fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE, 0, 1));
  /development/ndk/platforms/android-21/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);
  /prebuilts/ndk/r10/platforms/android-21/arch-arm/usr/include/
fcntl.h 69 extern int fallocate(int, int, off_t, off_t);
  /prebuilts/ndk/r10/platforms/android-21/arch-arm64/usr/include/
fcntl.h 69 extern int fallocate(int, int, off_t, off_t);
  /prebuilts/ndk/r10/platforms/android-21/arch-mips/usr/include/
fcntl.h 69 extern int fallocate(int, int, off_t, off_t);

Completed in 595 milliseconds

1 2 3 4 5