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

1 2 3 4 5 6 7 8 91011>>

  /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)
  /external/toybox/toys/other/
fallocate.c 0 /* fallocate.c - Preallocate space to a file
7 USE_FALLOCATE(NEWTOY(fallocate, ">1l#|", TOYFLAG_USR|TOYFLAG_BIN))
9 config FALLOCATE
10 bool "fallocate"
14 usage: fallocate [-l size] file
  /bionic/libc/arch-mips64/syscalls/
fallocate.S 5 ENTRY(fallocate) function
25 END(fallocate)
27 ALIAS_SYMBOL(fallocate64, 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
file.h 52 * call fallocate() with FALLOC_FL_KEEP_SIZE set.
  /external/strace/
fallocate.c 9 SYS_FUNC(fallocate)
  /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);
  /external/fio/examples/
fusion-aw-sync.fio 14 fallocate=none
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");
  /external/e2fsprogs/contrib/
fallocate.c 2 * fallocate - utility to use the fallocate system call
42 printf("Usage: fallocate [-npt] [-o offset] -l length filename\n");
168 perror("fallocate failed");
  /external/elfutils/tests/
lfs-symbols 26 fallocate
  /external/kernel-headers/original/uapi/linux/
falloc.h 39 * with fallocate. Flag FALLOC_FL_KEEP_SIZE should cause the inode
57 * fallocate(2) with mode 0 for such type of operations.
  /bionic/libc/bionic/
posix_fallocate.cpp 35 return (fallocate(fd, 0, offset, length) == 0) ? 0 : errno;
legacy_32_bit_support.cpp 100 // There is no fallocate for 32-bit off_t, so we need to widen and call fallocate64.
101 int fallocate(int fd, int mode, off_t offset, off_t length) { function
  /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/autotest/server/site_tests/network_DiskFull/
hog_disk.sh 43 fallocate --length "$mount_size_bytes" "$temp_file" 2>/dev/null || true
  /bionic/libc/include/
fcntl.h 77 extern int fallocate(int, int, off_t, off_t) __RENAME(fallocate64);
81 extern int fallocate(int, int, off_t, off_t);
  /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
  /development/ndk/platforms/android-21/include/
fcntl.h 69 extern int fallocate(int, int, off_t, off_t);

Completed in 475 milliseconds

1 2 3 4 5 6 7 8 91011>>