HomeSort by relevance Sort by last modified time
    Searched refs:posix_fallocate64 (Results 1 - 3 of 3) sorted by null

  /bionic/libc/bionic/
posix_fallocate.cpp 38 int posix_fallocate64(int fd, off64_t offset, off64_t length) { function
  /bionic/libc/include/
fcntl.h 86 int posix_fallocate(int __fd, off_t __offset, off_t __length) __RENAME_IF_FILE_OFFSET64(posix_fallocate64) __INTRODUCED_IN(21);
87 int posix_fallocate64(int __fd, off64_t __offset, off64_t __length) __INTRODUCED_IN(21);
  /bionic/tests/
fcntl_test.cpp 107 // posix_fallocate/posix_fallocate64 return an errno value.
122 ASSERT_EQ(EINVAL, posix_fallocate64(tf.fd, 0, -1));
146 ASSERT_EQ(0, posix_fallocate64(tf.fd, 0, 4));

Completed in 323 milliseconds