HomeSort by relevance Sort by last modified time
    Searched defs:readahead (Results 1 - 11 of 11) 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)
  /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...]
  /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/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 321 milliseconds