HomeSort by relevance Sort by last modified time
    Searched defs:socketpair (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /bionic/libc/arch-arm/syscalls/
socketpair.S 5 ENTRY(socketpair) function
16 END(socketpair)
  /bionic/libc/arch-arm64/syscalls/
socketpair.S 5 ENTRY(socketpair) function
14 END(socketpair)
  /bionic/libc/arch-mips/syscalls/
socketpair.S 5 ENTRY(socketpair) function
19 END(socketpair)
  /bionic/libc/arch-mips64/syscalls/
socketpair.S 5 ENTRY(socketpair) function
25 END(socketpair)
  /bionic/libc/arch-x86/syscalls/
socketpair.S 5 ENTRY(socketpair) function
35 END(socketpair)
  /bionic/libc/arch-x86_64/syscalls/
socketpair.S 5 ENTRY(socketpair) function
16 END(socketpair)
  /system/core/adb/
sysdeps_test.cpp 45 int socketpair[2]; local
47 while (adb_socketpair(socketpair) == 0) {
48 fds.push_back(socketpair[0]);
49 fds.push_back(socketpair[1]);
56 ASSERT_EQ(0, adb_socketpair(socketpair));
57 ASSERT_EQ(socketpair[0], fds[0]);
58 ASSERT_EQ(socketpair[1], fds[1]);
59 ASSERT_EQ(0, adb_close(socketpair[0]));
60 ASSERT_EQ(0, adb_close(socketpair[1]));
95 // Wait for the socketpair to be flushed
    [all...]
  /external/python/cpython3/Lib/asyncio/
windows_utils.py 20 __all__ = ['socketpair', 'pipe', 'Popen', 'PIPE', 'PipeHandle']
32 if hasattr(socket, 'socketpair'):
33 # Since Python 3.5, socket.socketpair() is now also available on Windows
34 socketpair = socket.socketpair variable
36 # Replacement for socket.socketpair()
37 def socketpair(family=socket.AF_INET, type=socket.SOCK_STREAM, proto=0): function
  /external/curl/lib/
memdebug.h 122 #define socketpair(domain,type,protocol,socket_vector)\ macro
  /external/python/cpython3/Lib/test/
test_selectors.py 20 if hasattr(socket, 'socketpair'):
21 socketpair = socket.socketpair variable
23 def socketpair(family=socket.AF_INET, type=socket.SOCK_STREAM, proto=0): function
53 rd, wr = socketpair()
  /frameworks/base/core/java/android/os/
FileBridge.java 70 Os.socketpair(AF_UNIX, SOCK_STREAM, 0, mServer, mClient);
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 318 @Override public void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescriptor fd2) throws ErrnoException { method in class:BlockGuardOs
319 os.socketpair(domain, type, protocol, fd1, fd2);
  /external/python/cpython3/Lib/
socket.py 13 socketpair() -- create a pair of new socket objects [*]
473 if hasattr(_socket, "socketpair"):
475 def socketpair(family=None, type=SOCK_STREAM, proto=0): function
476 """socketpair([family[, type[, proto]]]) -> (socket object, socket object)
479 socketpair() function.
488 a, b = _socket.socketpair(family, type, proto)
496 def socketpair(family=AF_INET, type=SOCK_STREAM, proto=0): function
532 __all__.append("socketpair")
534 socketpair.__doc__ = """socketpair([family[, type[, proto]]]) -> (socket object, socket object
    [all...]
  /libcore/ojluni/src/main/java/java/net/
PlainSocketImpl.java 257 Libcore.os.socketpair(AF_UNIX, SOCK_STREAM, 0, fd1, fd2);
263 // We might have reached the maximum file descriptor number and socketpair(2) would
  /libcore/ojluni/src/main/java/sun/nio/ch/
EPollPort.java 94 socketpair(sv);
134 // write byte to socketpair to force wakeup
157 * write to the one end of the socketpair to wakeup any polling threads.
312 private static native void socketpair(int[] sv) throws IOException; method in class:EPollPort
  /prebuilts/go/darwin-x86/src/syscall/
syscall_linux_386.go 238 func socketpair(domain int, typ int, flags int, fd *[2]int32) (err error) { func
syscall_linux_s390x.go 169 func socketpair(domain int, typ int, flags int, fd *[2]int32) (err error) { func
zsyscall_dragonfly_amd64.go 136 func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { func
zsyscall_freebsd_386.go 136 func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { func
zsyscall_freebsd_amd64.go 136 func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { func
zsyscall_freebsd_arm.go 136 func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { func
  /prebuilts/go/linux-x86/src/syscall/
syscall_linux_386.go 238 func socketpair(domain int, typ int, flags int, fd *[2]int32) (err error) { func
syscall_linux_s390x.go 169 func socketpair(domain int, typ int, flags int, fd *[2]int32) (err error) { func
  /frameworks/base/media/java/android/media/midi/
MidiDeviceServer.java 176 Os.socketpair(OsConstants.AF_UNIX, OsConstants.SOCK_SEQPACKET, 0, fd0, fd1);
  /libcore/ojluni/src/main/java/sun/nio/fs/
LinuxWatchService.java 78 // create socketpair used in the close mechanism
82 socketpair(sp);
191 // socketpair used to shutdown polling thread
192 private final int socketpair[]; field in class:LinuxWatchService.Poller
206 this.socketpair = sp;
215 // write to socketpair to wakeup polling thread
217 write(socketpair[1], address, 1);
317 UnixNativeDispatcher.close(socketpair[0]);
318 UnixNativeDispatcher.close(socketpair[1]);
344 nReady = poll(ifd, socketpair[0])
491 private static native void socketpair(int[] sv) throws UnixException; method in class:LinuxWatchService
    [all...]

Completed in 675 milliseconds

1 2 3 4