Home
last modified time | relevance | path

Searched refs:PIPE_BUF (Results 1 – 25 of 29) sorted by relevance

12

/external/ltp/testcases/kernel/ipc/pipeio/
Dpipeio.c435 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/
Dpipe11.c22 static unsigned char buf[PIPE_BUF];
66 read_per_child = PIPE_BUF/nchilds; in run()
/external/minijail/
Dlibminijail_unittest.cc252 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/
Dlimits.h14 #define PIPE_BUF 4096 /* # bytes in atomic write to a pipe */ macro
/external/iproute2/include/uapi/linux/
Dlimits.h14 #define PIPE_BUF 4096 /* # bytes in atomic write to a pipe */ macro
/external/python/cpython2/Modules/
Dselectmodule.c1861 #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/
Dselectmodule.c2463 #ifdef PIPE_BUF
2465 #undef PIPE_BUF
2466 #define PIPE_BUF 512 macro
2468 PyModule_AddIntMacro(m, PIPE_BUF);
/external/toybox/toys/posix/
Dgetconf.c126 CONF(PATH_MAX), CONF(PIPE_BUF), CONF(PRIO_IO), CONF(SYMLINK_MAX),
/external/python/cpython2/Lib/plat-linux2/
DIN.py291 PIPE_BUF = 4096 variable
/external/python/cpython2/Lib/plat-irix6/
DFILE.py435 PIPE_BUF = 10240 variable
/external/python/cpython2/Doc/library/
Dselect.rst103 .. attribute:: select.PIPE_BUF
107 of up to :const:`PIPE_BUF` bytes.
/external/python/cpython2/Lib/plat-atheos/
DIN.py143 PIPE_BUF = 4096 variable
/external/python/cpython2/Lib/plat-sunos5/
DIN.py112 PIPE_BUF = 5120 variable
DSTROPTS.py109 PIPE_BUF = 5120 variable
/external/rust/crates/libc/src/unix/bsd/
Dmod.rs440 pub const PIPE_BUF: usize = 512; constant
/external/crosvm/io_uring/src/
Dbindings.rs56 pub const PIPE_BUF: ::std::os::raw::c_uint = 4096; constant
/external/minijail/linux-x86/
Dlibconstants.gen.c3586 #ifdef PIPE_BUF
3587 { "PIPE_BUF", (unsigned long) PIPE_BUF },
/external/igt-gpu-tools/lib/
Digt_core.c2515 char buf[PIPE_BUF]; in log_output()
/external/python/cpython3/Doc/library/
Dselect.rst167 .. attribute:: PIPE_BUF
/external/rust/crates/libc/src/unix/linux_like/
Dmod.rs1147 pub const PIPE_BUF: usize = 4096; constant
/external/python/cpython2/Misc/NEWS.d/
D2.7.1rc1.rst46 Compensate for broken PIPE_BUF in AIX by hard coding its value as the
/external/rust/crates/nix/src/
Dunistd.rs1811 PIPE_BUF = libc::_PC_PIPE_BUF, enumerator
/external/python/cpython2/
Dpyconfig.h.in88 /* Define if the system reports an invalid PIPE_BUF value. */
/external/python/cpython3/
Dpyconfig.h.in97 /* Define if the system reports an invalid PIPE_BUF value. */
/external/python/cpython3/Doc/whatsnew/
D3.2.rst1387 :attr:`~select.PIPE_BUF`, which gives the minimum number of bytes which are
1392 >>> select.PIPE_BUF # doctest: +SKIP

12