Home
last modified time | relevance | path

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

123456

/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.c59 return readahead(fd, offset, len); in libc_readahead()
75 int (*readahead)(int, off_t, size_t); member
171 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.c558 PyObject *readahead = PyObject_CallOneArg(peek, _PyLong_One); in _io__IOBase_readline_impl() local
559 if (readahead == NULL) { in _io__IOBase_readline_impl()
567 if (!PyBytes_Check(readahead)) { in _io__IOBase_readline_impl()
570 "not '%.200s'", Py_TYPE(readahead)->tp_name); in _io__IOBase_readline_impl()
571 Py_DECREF(readahead); in _io__IOBase_readline_impl()
574 if (PyBytes_GET_SIZE(readahead) > 0) { in _io__IOBase_readline_impl()
576 const char *buf = PyBytes_AS_STRING(readahead); in _io__IOBase_readline_impl()
579 if (n >= PyBytes_GET_SIZE(readahead) || n >= limit) in _io__IOBase_readline_impl()
587 if (n >= PyBytes_GET_SIZE(readahead)) in _io__IOBase_readline_impl()
595 Py_DECREF(readahead); in _io__IOBase_readline_impl()
/external/strace/
Dreadahead.c3 SYS_FUNC(readahead) in SYS_FUNC() argument
/external/rust/crates/nix/src/sys/
Dsendfile.rs136 readahead: u16
141 let ra32 = u32::from(readahead);
/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/tensorflow/tensorflow/python/platform/
Dresource_loader.py134 def readahead_file_path(path, readahead='128M'): # pylint: disable=unused-argument argument
/external/e2fsprogs/e2fsck/
DAndroid.bp46 "readahead.c",
/external/libcap/doc/values/
D21.txt24 - setting readahead and flushing buffers on block
/external/e2fsprogs/po/
DPOTFILES.in24 e2fsck/readahead.c
/external/ltp/include/lapi/syscalls/
Daarch64.in215 readahead 213
Dmips_n64.in180 readahead 179
Dia64.in186 readahead 1216
Dx86_64.in186 readahead 187
Dsparc64.in187 readahead 205
Ds390.in148 readahead 222
Dpowerpc.in188 readahead 191
Ds390x.in148 readahead 222
Dmips_n32.in180 readahead 179
Di386.in221 readahead 225

123456