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

  /external/chromium_org/base/test/
test_file_util_linux.cc 23 if (posix_fadvise(fd.get(), 0, 0, POSIX_FADV_DONTNEED) != 0)
  /external/fio/
helpers.h 13 extern int posix_fadvise(int fd, off_t offset, off_t len, int advice);
helpers.c 36 int posix_fadvise(int fd, off_t offset, off_t len, int advice) function
configure 592 posix_fadvise="no"
598 int r = posix_fadvise(0, 0, 0, POSIX_FADV_NORMAL);
602 if compile_prog "" "" "posix_fadvise"; then
603 posix_fadvise="yes"
605 echo "POSIX fadvise $posix_fadvise"
1254 if test "$posix_fadvise" = "yes" ; then
ioengines.c 459 if (posix_fadvise(f->fd, f->file_offset, f->io_size, flags) < 0) {
filesetup.c 411 ret = posix_fadvise(f->fd, off, len, POSIX_FADV_DONTNEED);
  /bionic/libc/bionic/
posix_fadvise.cpp 37 int posix_fadvise(int fd, off_t offset, off_t length, int advice) { function
  /bionic/tests/
fcntl_test.cpp 73 TEST(fcntl, posix_fadvise) {
77 EXPECT_EQ(EBADF, posix_fadvise(-1, 0, 0, POSIX_FADV_NORMAL));
83 EXPECT_EQ(EINVAL, posix_fadvise(tf.fd, 0, 0, -1));
89 EXPECT_EQ(0, posix_fadvise(tf.fd, 0, 0, POSIX_FADV_NORMAL));
  /bionic/libc/include/
fcntl.h 76 extern int posix_fadvise(int, off_t, off_t, int);
  /external/e2fsprogs/misc/
e4defrag.c 188 #warning Using locally defined posix_fadvise interface.
202 static int posix_fadvise(int fd, loff_t offset, size_t len, int advise) function
494 if (posix_fadvise(fd, offset, pagesize, fadvise_flag) < 0) {
    [all...]
  /external/elfutils/0.153/src/
strings.c 589 (void) posix_fadvise (fd, 0, 0, POSIX_FADV_SEQUENTIAL);
  /bionic/libc/
Android.mk 149 bionic/posix_fadvise.cpp \
    [all...]
  /external/e2fsprogs/
configure     [all...]

Completed in 6439 milliseconds