HomeSort by relevance Sort by last modified time
    Searched defs:readahead (Results 1 - 15 of 15) sorted by null

  /bionic/libc/arch-arm/syscalls/
readahead.S 5 ENTRY(readahead) function
22 END(readahead)
  /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-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)
  /bionic/libc/arch-x86_64/syscalls/
readahead.S 5 ENTRY(readahead) function
15 END(readahead)
  /external/ltp/testcases/kernel/syscalls/readahead/
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...]
  /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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
fileobject.c 2239 readahead(PyFileObject *f, Py_ssize_t bufsize) function
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
fileobject.c 2171 readahead(PyFileObject *f, int bufsize) function
    [all...]
  /external/python/cpython2/Objects/
fileobject.c 2262 readahead(PyFileObject *f, readaheadbuffer *rab, Py_ssize_t bufsize) function
    [all...]
  /external/google-breakpad/src/third_party/lss/
linux_syscall_support.h 3871 LSS_INLINE int LSS_NAME(readahead)(int f, loff_t o, unsigned c) { function
    [all...]

Completed in 449 milliseconds