Searched refs:fallocate (Results 1 – 8 of 8) sorted by relevance
/bionic/libc/arch-arm64/syscalls/ |
D | fallocate.S | 5 ENTRY(fallocate) 14 END(fallocate) 17 .equ fallocate64, fallocate
|
/bionic/libc/arch-x86_64/syscalls/ |
D | fallocate.S | 5 ENTRY(fallocate) 16 END(fallocate) 19 .equ fallocate64, fallocate
|
/bionic/libc/arch-mips64/syscalls/ |
D | fallocate.S | 5 ENTRY(fallocate) 25 END(fallocate) 28 .equ fallocate64, fallocate
|
/bionic/libc/bionic/ |
D | posix_fallocate.cpp | 35 return (fallocate(fd, 0, offset, length) == 0) ? 0 : errno; in posix_fallocate()
|
D | legacy_32_bit_support.cpp | 93 int fallocate(int fd, int mode, off_t offset, off_t length) { in fallocate() function
|
/bionic/tests/ |
D | fcntl_test.cpp | 100 ASSERT_EQ(-1, fallocate(tf.fd, 0, 0, -1)); in TEST() 116 TEST(fcntl, fallocate) { in TEST() argument 123 ASSERT_EQ(0, fallocate(tf.fd, 0, 0, 1)); in TEST()
|
/bionic/libc/include/ |
D | fcntl.h | 69 extern int fallocate(int, int, off_t, off_t);
|
/bionic/libc/ |
D | SYSCALLS.TXT | 166 # (fallocate only gets two lines because there is no 32-bit variant.) 167 int fallocate64:fallocate(int, int, off64_t, off64_t) arm,mips,x86 168 int fallocate|fallocate64(int, int, off_t, off_t) arm64,mips64,x86_64
|