HomeSort by relevance Sort by last modified time
    Searched refs:readahead (Results 1 - 25 of 61) 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 194 extern SYS_FUNC(readahead);
  /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 7 * errno tests for readahead() syscall
57 TEST(readahead(-1, 0, getpagesize()));
67 TEST(readahead(fd, 0, getpagesize()));
80 TEST(readahead(fd[0], 0, getpagesize()));
88 TEST(readahead(fd[0], 0, getpagesize()));
102 /* check if readahead syscall is supported */
readahead02.c 7 * functional test for readahead() syscall
9 * This test is measuring effects of readahead syscall.
10 * It mmaps/reads a test file with and without prior call to readahead.
63 return readahead(fd, offset, len);
68 /* Should have the same effect as readahead() syscall */
78 /* Use either readahead() syscall or POSIX_FADV_WILLNEED */
79 int (*readahead)(int, off_t, size_t); member in struct:tcase
81 { "readahead on file", 0, 0, libc_readahead },
82 { "readahead on overlayfs file", 1, 0, libc_readahead },
152 * @do_readahead: call readahead prior to reading file content
    [all...]
  /external/strace/tests/
readahead.c 33 /* Check for glibc readahead argument passing bugs. */
97 rc = readahead(fds[i], offsets[j], counts[k]);
99 printf("readahead(%d, %lld, %lu) = %s\n",
  /external/strace/tests-m32/
readahead.c 33 /* Check for glibc readahead argument passing bugs. */
97 rc = readahead(fds[i], offsets[j], counts[k]);
99 printf("readahead(%d, %lld, %lu) = %s\n",
  /external/strace/tests-mx32/
readahead.c 33 /* Check for glibc readahead argument passing bugs. */
97 rc = readahead(fds[i], offsets[j], counts[k]);
99 printf("readahead(%d, %lld, %lu) = %s\n",
  /external/ltp/testcases/kernel/syscalls/
Makefile 42 readahead remap_file_pages rt_sigsuspend rt_sigtimedwait \
  /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...]
  /external/python/cpython2/Modules/_io/
iobase.c 480 PyObject *readahead = PyObject_CallMethod(self, "peek", "i", 1); local
481 if (readahead == NULL) {
489 if (!PyBytes_Check(readahead)) {
492 "not '%.200s'", Py_TYPE(readahead)->tp_name);
493 Py_DECREF(readahead);
496 if (PyBytes_GET_SIZE(readahead) > 0) {
498 const char *buf = PyBytes_AS_STRING(readahead);
501 if (n >= PyBytes_GET_SIZE(readahead) || n >= limit)
509 if (n >= PyBytes_GET_SIZE(readahead))
517 Py_DECREF(readahead);
    [all...]
  /external/python/cpython3/Modules/_io/
iobase.c 547 PyObject *readahead = PyObject_CallFunctionObjArgs(peek, _PyLong_One, NULL); local
548 if (readahead == NULL) {
556 if (!PyBytes_Check(readahead)) {
559 "not '%.200s'", Py_TYPE(readahead)->tp_name);
560 Py_DECREF(readahead);
563 if (PyBytes_GET_SIZE(readahead) > 0) {
565 const char *buf = PyBytes_AS_STRING(readahead);
568 if (n >= PyBytes_GET_SIZE(readahead) || n >= limit)
576 if (n >= PyBytes_GET_SIZE(readahead))
584 Py_DECREF(readahead);
    [all...]
  /external/tensorflow/tensorflow/python/platform/
resource_loader.py 121 def readahead_file_path(path, readahead='128M'): # pylint: disable=unused-argument
122 """Readahead files not implemented; simply returns given path."""
  /bionic/libc/include/
fcntl.h 90 ssize_t readahead(int __fd, off64_t __offset, size_t __length) __INTRODUCED_IN(16);
  /bionic/tests/
fcntl_test.cpp 251 TEST(fcntl, readahead) {
254 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 \
506 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/python/cpython2/Lib/
_pyio.py 474 readahead = self.peek(1)
475 if not readahead:
477 n = (readahead.find(b"\n") + 1) or len(readahead)
    [all...]
  /external/strace/linux/32/
syscallent.h 221 [213] = { 4, TD, SEN(readahead), "readahead" },

Completed in 1234 milliseconds

1 2 3