Home
last modified time | relevance | path

Searched refs:readahead (Results 1 – 25 of 118) sorted by relevance

12345

/external/ltp/testcases/kernel/syscalls/readahead/
Dreadahead01.c57 TEST(readahead(-1, 0, getpagesize())); in test_bad_fd()
67 TEST(readahead(fd, 0, getpagesize())); in test_bad_fd()
80 TEST(readahead(fd[0], 0, getpagesize())); in test_invalid_fd()
88 TEST(readahead(fd[0], 0, getpagesize())); in test_invalid_fd()
Dreadahead02.c63 return readahead(fd, offset, len); in libc_readahead()
79 int (*readahead)(int, off_t, size_t); member
176 TEST(tc->readahead(fd, offset, fsize - offset)); in read_testfile()
/external/python/cpython2/Modules/_io/
Diobase.c480 PyObject *readahead = PyObject_CallMethod(self, "peek", "i", 1); in iobase_readline() local
481 if (readahead == NULL) { in iobase_readline()
489 if (!PyBytes_Check(readahead)) { in iobase_readline()
492 "not '%.200s'", Py_TYPE(readahead)->tp_name); in iobase_readline()
493 Py_DECREF(readahead); in iobase_readline()
496 if (PyBytes_GET_SIZE(readahead) > 0) { in iobase_readline()
498 const char *buf = PyBytes_AS_STRING(readahead); in iobase_readline()
501 if (n >= PyBytes_GET_SIZE(readahead) || n >= limit) in iobase_readline()
509 if (n >= PyBytes_GET_SIZE(readahead)) in iobase_readline()
517 Py_DECREF(readahead); in iobase_readline()
/external/python/cpython3/Modules/_io/
Diobase.c547 PyObject *readahead = PyObject_CallFunctionObjArgs(peek, _PyLong_One, NULL); in _io__IOBase_readline_impl() local
548 if (readahead == NULL) { in _io__IOBase_readline_impl()
556 if (!PyBytes_Check(readahead)) { in _io__IOBase_readline_impl()
559 "not '%.200s'", Py_TYPE(readahead)->tp_name); in _io__IOBase_readline_impl()
560 Py_DECREF(readahead); in _io__IOBase_readline_impl()
563 if (PyBytes_GET_SIZE(readahead) > 0) { in _io__IOBase_readline_impl()
565 const char *buf = PyBytes_AS_STRING(readahead); in _io__IOBase_readline_impl()
568 if (n >= PyBytes_GET_SIZE(readahead) || n >= limit) in _io__IOBase_readline_impl()
576 if (n >= PyBytes_GET_SIZE(readahead)) in _io__IOBase_readline_impl()
584 Py_DECREF(readahead); in _io__IOBase_readline_impl()
/external/strace/
Dreadahead.c3 SYS_FUNC(readahead) in SYS_FUNC() argument
/external/strace/tests-m32/
Dreadahead.c97 rc = readahead(fds[i], offsets[j], counts[k]); in main()
/external/strace/tests/
Dreadahead.c97 rc = readahead(fds[i], offsets[j], counts[k]); in main()
/external/strace/tests-mx32/
Dreadahead.c97 rc = readahead(fds[i], offsets[j], counts[k]); in main()
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.resource_loader.pbtxt21 argspec: "args=[\'path\', \'readahead\'], varargs=None, keywords=None, defaults=[\'128M\'], "
/external/ltp/testcases/kernel/syscalls/
DMakefile42 readahead remap_file_pages rt_sigsuspend rt_sigtimedwait \
/external/e2fsprogs/e2fsck/
DAndroid.bp35 "readahead.c",
DMakefile.in65 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 \
/external/tensorflow/tensorflow/python/platform/
Dresource_loader.py121 def readahead_file_path(path, readahead='128M'): # pylint: disable=unused-argument argument
/external/e2fsprogs/po/
DPOTFILES.in24 e2fsck/readahead.c
/external/ltp/include/lapi/syscalls/
Daarch64.in215 readahead 213
Dia64.in186 readahead 1216
Dsparc64.in187 readahead 205
Dx86_64.in186 readahead 187
Di386.in221 readahead 225
Ds390.in148 readahead 222
Dpowerpc.in188 readahead 191
Ds390x.in148 readahead 222
Dpowerpc64.in188 readahead 191
Dsparc.in209 readahead 205
Dsh.in248 readahead 253

12345