/third_party/libunwind/libunwind/src/s390x/ |
H A D | Ginit.c | 108 pipe2 (mem_validate_pipe, O_CLOEXEC | O_NONBLOCK); in open_pipe()
|
/third_party/musl/src/process/ |
H A D | posix_spawn.c | 194 if (pipe2(args.p, O_CLOEXEC)) { in posix_spawn()
|
/third_party/musl/porting/liteos_a/user/src/process/ |
H A D | posix_spawn.c | 190 if (pipe2(args.p, O_CLOEXEC)) { in posix_spawn()
|
/base/msdp/device_status/rust/modules/scheduler/test/src/ |
H A D | lib.rs | 103 let ret = unsafe { libc::pipe2(fds.as_mut_ptr(), libc::O_CLOEXEC | libc::O_NONBLOCK) }; in new() 105 error!(LOG_LABEL, "In EpollHandler::new, libc::pipe2 fail:{:?}", @public(Error::last_os_error())); in new()
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/components/lib/libc/musl/include/ |
H A D | unistd.h | 46 int pipe2(int [2], int);
|
/third_party/libunwind/libunwind/src/aarch64/ |
H A D | Ginit.c | 98 pipe2 (pipefd, O_CLOEXEC | O_NONBLOCK); in do_pipe2()
|
/third_party/libunwind/libunwind/src/arm/ |
H A D | Ginit.c | 88 pipe2 (pipefd, O_CLOEXEC | O_NONBLOCK); in do_pipe2()
|
/third_party/libunwind/libunwind/src/riscv/ |
H A D | Ginit.c | 109 pipe2 (pipefd, O_CLOEXEC | O_NONBLOCK); in do_pipe2()
|
/third_party/libunwind/libunwind/src/x86_64/ |
H A D | Ginit.c | 85 pipe2 (pipefd, O_CLOEXEC | O_NONBLOCK); in do_pipe2()
|
/third_party/musl/porting/liteos_a/user/include/ |
H A D | unistd.h | 36 int pipe2(int [2], int);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | unistd.h | 34 int pipe2(int [2], int);
|
/third_party/musl/porting/linux/user/include/ |
H A D | unistd.h | 40 int pipe2(int [2], int);
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | unistd.h | 36 int pipe2(int [2], int);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | unistd.h | 34 int pipe2(int [2], int);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | unistd.h | 40 int pipe2(int [2], int);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | unistd.h | 34 int pipe2(int [2], int);
|
/third_party/node/deps/v8/src/debug/wasm/gdb-server/ |
H A D | transport.cc | 345 int ret = pipe2(fds, O_CLOEXEC);
|
/third_party/musl/include/ |
H A D | unistd.h | 50 int pipe2(int [2], int);
|
/third_party/node/deps/uv/src/unix/ |
H A D | pipe.c | 411 if (pipe2(temp, flags)) in uv_pipe()
|
/foundation/arkui/ace_engine/test/unittest/core/layout/ |
H A D | box_layout_algorithm_test_ng.cpp | 328 auto pipe2 = PipelineContext::GetCurrentContext()->safeAreaManager_->isFullScreen_; in HWTEST_F() local 329 EXPECT_FALSE(pipe2); in HWTEST_F()
|
/third_party/python/Lib/test/ |
H A D | test_posix.py | 886 @unittest.skipUnless(hasattr(os, 'pipe2'), "test needs os.pipe2()") 889 self.assertRaises(TypeError, os.pipe2, 'DEADBEEF') 890 self.assertRaises(TypeError, os.pipe2, 0, 0) 893 r, w = os.pipe2(0) 898 r, w = os.pipe2(os.O_CLOEXEC|os.O_NONBLOCK) 915 @unittest.skipUnless(hasattr(os, 'pipe2'), "test needs os.pipe2()") 920 self.assertRaises(OverflowError, os.pipe2, _testcapi.INT_MAX + 1) 921 self.assertRaises(OverflowError, os.pipe2, _testcap [all...] |
/third_party/libuv/src/unix/ |
H A D | pipe.c | 496 if (pipe2(temp, flags)) in uv_pipe()
|
/third_party/ltp/lib/ |
H A D | tst_safe_macros.c | 501 ret = pipe2(fildes, flags); in safe_pipe2() 505 "pipe2({%d,%d}) failed with flag(%d)", fildes[0], in safe_pipe2() 509 "Invalid pipe2({%d,%d}, %d) return value %d", in safe_pipe2()
|
/third_party/musl/Benchmark/musl/ |
H A D | libc_unistd.cpp | 361 if (pipe2(fd, flags) < 0) { in Bm_function_Pipe2()
|
/base/hiviewdfx/hiview/base/ |
H A D | event_loop.cpp | 72 if (pipe2(eventQueueFd_, O_CLOEXEC) != 0) {
in InitEventQueueNotifier()
|