/external/ltp/testcases/kernel/ipc/pipeio/ |
D | pipeio.c | 435 if (size > PIPE_BUF && num_writers > 1) { in setup() 442 PIPE_BUF - 1) / PIPE_BUF, in setup() 445 "writes to %d", PIPE_BUF, num_writes); in setup() 447 tst_resm(TINFO, "adjusting i/o size to %d", PIPE_BUF); in setup() 449 size = PIPE_BUF; in setup() 689 } else if (nb < size && size <= PIPE_BUF) { in do_parent()
|
/external/ltp/testcases/kernel/syscalls/pipe/ |
D | pipe11.c | 22 static unsigned char buf[PIPE_BUF]; 66 read_per_child = PIPE_BUF/nchilds; in run()
|
/external/minijail/ |
D | libminijail_unittest.cc | 252 char buf[PIPE_BUF]; in TEST() 253 EXPECT_EQ(read(fds[0], buf, PIPE_BUF), 0); in TEST() 368 char buf[PIPE_BUF]; in TEST() 372 nbytes = read(out, buf, PIPE_BUF); in TEST() 380 EXPECT_EQ(read(out, buf, PIPE_BUF), 0); in TEST() 394 nbytes = read(err, buf, PIPE_BUF); in TEST() 400 EXPECT_EQ(read(err, buf, PIPE_BUF), 0); in TEST() 439 char buf[PIPE_BUF]; in TEST() 443 n = read(out, buf, PIPE_BUF); in TEST() 447 n = read(err, buf, PIPE_BUF); in TEST() [all …]
|
/external/kernel-headers/original/uapi/linux/ |
D | limits.h | 14 #define PIPE_BUF 4096 /* # bytes in atomic write to a pipe */ macro
|
/external/iproute2/include/uapi/linux/ |
D | limits.h | 14 #define PIPE_BUF 4096 /* # bytes in atomic write to a pipe */ macro
|
/external/python/cpython2/Modules/ |
D | selectmodule.c | 1861 #ifdef PIPE_BUF 1863 #undef PIPE_BUF 1864 #define PIPE_BUF 512 macro 1866 PyModule_AddIntConstant(m, "PIPE_BUF", PIPE_BUF);
|
/external/python/cpython3/Modules/ |
D | selectmodule.c | 2463 #ifdef PIPE_BUF 2465 #undef PIPE_BUF 2466 #define PIPE_BUF 512 macro 2468 PyModule_AddIntMacro(m, PIPE_BUF);
|
/external/toybox/toys/posix/ |
D | getconf.c | 126 CONF(PATH_MAX), CONF(PIPE_BUF), CONF(PRIO_IO), CONF(SYMLINK_MAX),
|
/external/python/cpython2/Lib/plat-linux2/ |
D | IN.py | 291 PIPE_BUF = 4096 variable
|
/external/python/cpython2/Lib/plat-irix6/ |
D | FILE.py | 435 PIPE_BUF = 10240 variable
|
/external/python/cpython2/Doc/library/ |
D | select.rst | 103 .. attribute:: select.PIPE_BUF 107 of up to :const:`PIPE_BUF` bytes.
|
/external/python/cpython2/Lib/plat-atheos/ |
D | IN.py | 143 PIPE_BUF = 4096 variable
|
/external/python/cpython2/Lib/plat-sunos5/ |
D | IN.py | 112 PIPE_BUF = 5120 variable
|
D | STROPTS.py | 109 PIPE_BUF = 5120 variable
|
/external/rust/crates/libc/src/unix/bsd/ |
D | mod.rs | 440 pub const PIPE_BUF: usize = 512; constant
|
/external/crosvm/io_uring/src/ |
D | bindings.rs | 56 pub const PIPE_BUF: ::std::os::raw::c_uint = 4096; constant
|
/external/minijail/linux-x86/ |
D | libconstants.gen.c | 3586 #ifdef PIPE_BUF 3587 { "PIPE_BUF", (unsigned long) PIPE_BUF },
|
/external/igt-gpu-tools/lib/ |
D | igt_core.c | 2515 char buf[PIPE_BUF]; in log_output()
|
/external/python/cpython3/Doc/library/ |
D | select.rst | 167 .. attribute:: PIPE_BUF
|
/external/rust/crates/libc/src/unix/linux_like/ |
D | mod.rs | 1147 pub const PIPE_BUF: usize = 4096; constant
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.1rc1.rst | 46 Compensate for broken PIPE_BUF in AIX by hard coding its value as the
|
/external/rust/crates/nix/src/ |
D | unistd.rs | 1811 PIPE_BUF = libc::_PC_PIPE_BUF, enumerator
|
/external/python/cpython2/ |
D | pyconfig.h.in | 88 /* Define if the system reports an invalid PIPE_BUF value. */
|
/external/python/cpython3/ |
D | pyconfig.h.in | 97 /* Define if the system reports an invalid PIPE_BUF value. */
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.2.rst | 1387 :attr:`~select.PIPE_BUF`, which gives the minimum number of bytes which are 1392 >>> select.PIPE_BUF # doctest: +SKIP
|