Searched refs:fallocate64 (Results 1 - 10 of 10) sorted by relevance

/bionic/libc/arch-mips/syscalls/
H A Dfallocate64.S5 ENTRY(fallocate64) function
19 END(fallocate64)
/bionic/libc/arch-arm/syscalls/
H A Dfallocate64.S5 ENTRY(fallocate64) function
22 END(fallocate64)
/bionic/libc/arch-arm64/syscalls/
H A Dfallocate.S16 ALIAS_SYMBOL(fallocate64, fallocate)
/bionic/libc/arch-x86_64/syscalls/
H A Dfallocate.S18 ALIAS_SYMBOL(fallocate64, fallocate)
/bionic/libc/bionic/
H A Dposix_fallocate.cpp40 return (fallocate64(fd, 0, offset, length) == 0) ? 0 : errno;
H A Dlegacy_32_bit_support.cpp80 // There is no fallocate for 32-bit off_t, so we need to widen and call fallocate64.
82 return fallocate64(fd, mode, static_cast<off64_t>(offset), static_cast<off64_t>(length));
/bionic/libc/arch-mips64/syscalls/
H A Dfallocate.S27 ALIAS_SYMBOL(fallocate64, fallocate)
/bionic/libc/arch-x86/syscalls/
H A Dfallocate64.S5 ENTRY(fallocate64) function
46 END(fallocate64)
/bionic/libc/include/
H A Dfcntl.h73 extern int fallocate(int, int, off_t, off_t) __RENAME(fallocate64); variable
81 extern int fallocate64(int, int, off64_t, off64_t);
/bionic/tests/
H A Dfcntl_test.cpp96 // fallocate/fallocate64 set errno.
104 ASSERT_EQ(-1, fallocate64(tf.fd, 0, 0, -1));
127 ASSERT_EQ(0, fallocate64(tf.fd, 0, 0, 2));

Completed in 184 milliseconds