Searched refs:readahead (Results 1 – 25 of 131) sorted by relevance
123456
/external/ltp/testcases/kernel/syscalls/readahead/ |
D | readahead01.c | 57 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()
|
D | readahead02.c | 59 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/ |
D | iobase.c | 480 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/ |
D | iobase.c | 558 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/ |
D | readahead.c | 3 SYS_FUNC(readahead) in SYS_FUNC() argument
|
/external/rust/crates/nix/src/sys/ |
D | sendfile.rs | 136 readahead: u16 141 let ra32 = u32::from(readahead);
|
/external/strace/tests-m32/ |
D | readahead.c | 97 rc = readahead(fds[i], offsets[j], counts[k]); in main()
|
/external/strace/tests/ |
D | readahead.c | 97 rc = readahead(fds[i], offsets[j], counts[k]); in main()
|
/external/strace/tests-mx32/ |
D | readahead.c | 97 rc = readahead(fds[i], offsets[j], counts[k]); in main()
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.resource_loader.pbtxt | 21 argspec: "args=[\'path\', \'readahead\'], varargs=None, keywords=None, defaults=[\'128M\'], "
|
/external/ltp/testcases/kernel/syscalls/ |
D | Makefile | 42 readahead remap_file_pages rt_sigsuspend rt_sigtimedwait \
|
/external/tensorflow/tensorflow/python/platform/ |
D | resource_loader.py | 134 def readahead_file_path(path, readahead='128M'): # pylint: disable=unused-argument argument
|
/external/e2fsprogs/e2fsck/ |
D | Android.bp | 46 "readahead.c",
|
/external/libcap/doc/values/ |
D | 21.txt | 24 - setting readahead and flushing buffers on block
|
/external/e2fsprogs/po/ |
D | POTFILES.in | 24 e2fsck/readahead.c
|
/external/ltp/include/lapi/syscalls/ |
D | aarch64.in | 215 readahead 213
|
D | mips_n64.in | 180 readahead 179
|
D | ia64.in | 186 readahead 1216
|
D | x86_64.in | 186 readahead 187
|
D | sparc64.in | 187 readahead 205
|
D | s390.in | 148 readahead 222
|
D | powerpc.in | 188 readahead 191
|
D | s390x.in | 148 readahead 222
|
D | mips_n32.in | 180 readahead 179
|
D | i386.in | 221 readahead 225
|
123456