Home
last modified time | relevance | path

Searched refs:fallocate (Results 1 – 8 of 8) sorted by relevance

/bionic/libc/arch-arm64/syscalls/
Dfallocate.S5 ENTRY(fallocate)
14 END(fallocate)
17 .equ fallocate64, fallocate
/bionic/libc/arch-x86_64/syscalls/
Dfallocate.S5 ENTRY(fallocate)
16 END(fallocate)
19 .equ fallocate64, fallocate
/bionic/libc/arch-mips64/syscalls/
Dfallocate.S5 ENTRY(fallocate)
25 END(fallocate)
28 .equ fallocate64, fallocate
/bionic/libc/bionic/
Dposix_fallocate.cpp35 return (fallocate(fd, 0, offset, length) == 0) ? 0 : errno; in posix_fallocate()
Dlegacy_32_bit_support.cpp93 int fallocate(int fd, int mode, off_t offset, off_t length) { in fallocate() function
/bionic/tests/
Dfcntl_test.cpp100 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/
Dfcntl.h69 extern int fallocate(int, int, off_t, off_t);
/bionic/libc/
DSYSCALLS.TXT166 # (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