Searched refs:fallocate64 (Results 1 - 10 of 10) sorted by relevance
/bionic/libc/arch-mips/syscalls/ |
H A D | fallocate64.S | 5 ENTRY(fallocate64) function 19 END(fallocate64)
|
/bionic/libc/arch-arm/syscalls/ |
H A D | fallocate64.S | 5 ENTRY(fallocate64) function 22 END(fallocate64)
|
/bionic/libc/arch-arm64/syscalls/ |
H A D | fallocate.S | 16 ALIAS_SYMBOL(fallocate64, fallocate)
|
/bionic/libc/arch-x86_64/syscalls/ |
H A D | fallocate.S | 18 ALIAS_SYMBOL(fallocate64, fallocate)
|
/bionic/libc/bionic/ |
H A D | posix_fallocate.cpp | 40 return (fallocate64(fd, 0, offset, length) == 0) ? 0 : errno;
|
H A D | legacy_32_bit_support.cpp | 80 // 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 D | fallocate.S | 27 ALIAS_SYMBOL(fallocate64, fallocate)
|
/bionic/libc/arch-x86/syscalls/ |
H A D | fallocate64.S | 5 ENTRY(fallocate64) function 46 END(fallocate64)
|
/bionic/libc/include/ |
H A D | fcntl.h | 73 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 D | fcntl_test.cpp | 96 // 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