HomeSort by relevance Sort by last modified time
    Searched refs:readahead (Results 1 - 25 of 69) sorted by null

1 2 3

  /bionic/libc/arch-arm64/syscalls/
readahead.S 5 ENTRY(readahead) function
14 END(readahead)
  /bionic/libc/arch-mips/syscalls/
readahead.S 5 ENTRY(readahead) function
19 END(readahead)
  /bionic/libc/arch-x86_64/syscalls/
readahead.S 5 ENTRY(readahead) function
15 END(readahead)
  /external/strace/
readahead.c 3 SYS_FUNC(readahead)
sys_func.h 191 extern SYS_FUNC(readahead);
Android.mk 150 readahead.c \
  /bionic/libc/arch-arm/syscalls/
readahead.S 5 ENTRY(readahead) function
22 END(readahead)
  /bionic/libc/arch-mips64/syscalls/
readahead.S 5 ENTRY(readahead) function
25 END(readahead)
  /bionic/libc/arch-x86/syscalls/
readahead.S 5 ENTRY(readahead) function
44 END(readahead)
  /external/ltp/testcases/kernel/syscalls/readahead/
readahead01.c 26 * errno tests for readahead() syscall
89 TEST(readahead(-1, 0, getpagesize()));
101 TEST(readahead(fd, 0, getpagesize()));
115 TEST(readahead(fd[0], 0, getpagesize()));
125 TEST(readahead(fd[0], 0, getpagesize()));
152 /* check if readahead syscall is supported */
readahead02.c 26 * functional test for readahead() syscall
28 * This test is measuring effects of readahead syscall.
29 * It mmaps/reads a test file with and without prior call to readahead.
194 * @do_readahead: call readahead prior to reading file content?
221 TEST(readahead(fd, offset, fsize - offset));
227 /* estimate max readahead size based on first call */
243 tst_resm(TINFO, "readahead calls made: %zu", i);
246 /* offset of file shouldn't change after readahead */
331 tst_resm(TPASS, "readahead saved some I/O");
333 tst_resm(TFAIL, "readahead failed to save any I/O")
    [all...]
  /external/strace/tests/
readahead.c 32 /* Check for glibc readahead argument passing bugs. */
96 rc = readahead(fds[i], offsets[j], counts[k]);
98 printf("readahead(%d, %lld, %lu) = %s\n",
  /external/strace/tests-m32/
readahead.c 32 /* Check for glibc readahead argument passing bugs. */
96 rc = readahead(fds[i], offsets[j], counts[k]);
98 printf("readahead(%d, %lld, %lu) = %s\n",
  /external/strace/tests-mx32/
readahead.c 32 /* Check for glibc readahead argument passing bugs. */
96 rc = readahead(fds[i], offsets[j], counts[k]);
98 printf("readahead(%d, %lld, %lu) = %s\n",
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
iobase.c 470 PyObject *readahead = PyObject_CallMethod(self, "peek", "i", 1); local
471 if (readahead == NULL) {
479 if (!PyBytes_Check(readahead)) {
482 "not '%.200s'", Py_TYPE(readahead)->tp_name);
483 Py_DECREF(readahead);
486 if (PyBytes_GET_SIZE(readahead) > 0) {
488 const char *buf = PyBytes_AS_STRING(readahead);
491 if (n >= PyBytes_GET_SIZE(readahead) || n >= limit)
499 if (n >= PyBytes_GET_SIZE(readahead))
507 Py_DECREF(readahead);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
iobase.c 470 PyObject *readahead = PyObject_CallMethod(self, "peek", "i", 1); local
471 if (readahead == NULL)
473 if (!PyBytes_Check(readahead)) {
476 "not '%.200s'", Py_TYPE(readahead)->tp_name);
477 Py_DECREF(readahead);
480 if (PyBytes_GET_SIZE(readahead) > 0) {
482 const char *buf = PyBytes_AS_STRING(readahead);
485 if (n >= PyBytes_GET_SIZE(readahead) || n >= limit)
493 if (n >= PyBytes_GET_SIZE(readahead))
501 Py_DECREF(readahead);
    [all...]
  /bionic/libc/include/
fcntl.h 93 ssize_t readahead(int, off64_t, size_t) __INTRODUCED_IN(16);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
fcntl.h 262 extern ssize_t readahead (int __fd, __off64_t __offset, size_t __count)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
fcntl.h 271 extern ssize_t readahead (int __fd, __off64_t __offset, size_t __count)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
fcntl.h 286 extern ssize_t readahead (int __fd, __off64_t __offset, size_t __count)
  /bionic/tests/
fcntl_test.cpp 250 TEST(fcntl, readahead) {
253 ASSERT_EQ(-1, readahead(-1, 0, 123));
  /external/e2fsprogs/e2fsck/
Makefile.in 65 logfile.o sigcatcher.o $(MTRACE_OBJ) readahead.o \
77 profiled/readahead.o profiled/extents.o
100 $(srcdir)/readahead.c \
485 readahead.o: $(srcdir)/readahead.c $(top_builddir)/lib/config.h \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_pyio.py 462 readahead = self.peek(1)
463 if not readahead:
465 n = (readahead.find(b"\n") + 1) or len(readahead)
    [all...]
  /external/strace/linux/32/
syscallent.h 221 [213] = { 4, TD, SEN(readahead), "readahead" },
  /external/strace/linux/s390x/
syscallent.h 237 [222] = { 3, TD, SEN(readahead), "readahead" },

Completed in 650 milliseconds

1 2 3