HomeSort by relevance Sort by last modified time
    Searched refs:pipe2 (Results 51 - 75 of 164) sorted by null

1 23 4 5 6 7

  /prebuilts/go/darwin-x86/src/syscall/
syscall_linux_s390x.go 74 err = pipe2(&pp, 0)
80 //sysnb pipe2(p *[2]_C_int, flags int) (err error)
82 func Pipe2(p []int, flags int) (err error) {
87 err = pipe2(&pp, flags)
syscall_linux_amd64.go 108 //sysnb pipe2(p *[2]_C_int, flags int) (err error)
110 func Pipe2(p []int, flags int) (err error) {
115 err = pipe2(&pp, flags)
syscall_linux_386.go 38 //sysnb pipe2(p *[2]_C_int, flags int) (err error)
40 func Pipe2(p []int, flags int) (err error) {
45 err = pipe2(&pp, flags)
syscall_freebsd.go 70 return Pipe2(p, 0)
73 //sysnb pipe2(p *[2]_C_int, flags int) (err error)
75 func Pipe2(p []int, flags int) error {
80 err := pipe2(&pp, flags)
  /prebuilts/go/linux-x86/src/syscall/
syscall_linux_s390x.go 74 err = pipe2(&pp, 0)
80 //sysnb pipe2(p *[2]_C_int, flags int) (err error)
82 func Pipe2(p []int, flags int) (err error) {
87 err = pipe2(&pp, flags)
syscall_linux_amd64.go 108 //sysnb pipe2(p *[2]_C_int, flags int) (err error)
110 func Pipe2(p []int, flags int) (err error) {
115 err = pipe2(&pp, flags)
syscall_linux_386.go 38 //sysnb pipe2(p *[2]_C_int, flags int) (err error)
40 func Pipe2(p []int, flags int) (err error) {
45 err = pipe2(&pp, flags)
syscall_freebsd.go 70 return Pipe2(p, 0)
73 //sysnb pipe2(p *[2]_C_int, flags int) (err error)
75 func Pipe2(p []int, flags int) error {
80 err := pipe2(&pp, flags)
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
StreamTestScenario.java 172 Stream<U> pipe2 = m.apply(pipe1); local
174 for (Object t : pipe2.toArray())
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
StreamTestScenario.java 175 Stream<U> pipe2 = m.apply(pipe1); local
177 for (Object t : pipe2.toArray())
  /external/autotest/client/site_tests/security_Libcontainer/src/
libcontainer_target_unittest.cc 33 CHECK(pipe2(pipe_fds, O_NONBLOCK) != -1);
  /libcore/luni/src/test/java/libcore/java/io/
FileInputStreamTest.java 85 FileDescriptor[] pipe = Libcore.os.pipe2(0);
  /external/strace/
sys_func.h 172 extern SYS_FUNC(pipe2);
  /art/libartbase/base/unix_file/
fd_file_test.cc 279 ASSERT_EQ(0, pipe2(pipefd, O_CLOEXEC));
  /bionic/libc/include/
unistd.h 138 int pipe2(int __fds[2], int __flags) __INTRODUCED_IN(9);
  /system/bt/vendor_libs/test_vendor_lib/src/
async_manager.cc 164 if (pipe2(pipe_fds, O_NONBLOCK)) {
  /libcore/luni/src/main/java/android/system/
Os.java 363 public static FileDescriptor[] pipe() throws ErrnoException { return Libcore.os.pipe2(0); }
365 /** @hide */ public static FileDescriptor[] pipe2(int flags) throws ErrnoException { return Libcore.os.pipe2(flags); } method in class:Os
  /external/python/cpython3/Lib/test/
test_posix.py 632 @unittest.skipUnless(hasattr(os, 'pipe2'), "test needs os.pipe2()")
635 self.assertRaises(TypeError, os.pipe2, 'DEADBEEF')
636 self.assertRaises(TypeError, os.pipe2, 0, 0)
639 r, w = os.pipe2(0)
644 r, w = os.pipe2(os.O_CLOEXEC|os.O_NONBLOCK)
661 @unittest.skipUnless(hasattr(os, 'pipe2'), "test needs os.pipe2()")
666 self.assertRaises(OverflowError, os.pipe2, _testcapi.INT_MAX + 1)
667 self.assertRaises(OverflowError, os.pipe2, _testcapi.UINT_MAX + 1
    [all...]
  /libcore/luni/src/test/java/libcore/libcore/io/
OsTest.java 832 Libcore.os.pipe2(-1);
    [all...]
  /external/strace/linux/32/
syscallent.h 63 [ 59] = { 2, TD, SEN(pipe2), "pipe2" },
  /libcore/luni/src/main/java/libcore/io/
Os.java 124 public FileDescriptor[] pipe2(int flags) throws ErrnoException; method in interface:Os
  /external/strace/linux/64/
syscallent.h 60 [ 59] = { 2, TD, SEN(pipe2), "pipe2" },
  /external/strace/linux/avr32/
syscallent.h 323 [294] = { 2, TD, SEN(pipe2), "pipe2" },
  /external/strace/linux/hppa/
syscallent.h 319 [313] = { 2, TD, SEN(pipe2), "pipe2" },
  /external/strace/linux/x86_64/
syscallent.h 294 [293] = { 2, TD, SEN(pipe2), "pipe2" },

Completed in 704 milliseconds

1 23 4 5 6 7