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

1 2

  /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)
  /external/curl/lib/
memdebug.h 117 #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()
  /external/python/cpython3/Lib/
socket.py 13 socketpair() -- create a pair of new socket objects [*]
476 if hasattr(_socket, "socketpair"):
478 def socketpair(family=None, type=SOCK_STREAM, proto=0): function
479 """socketpair([family[, type[, proto]]]) -> (socket object, socket object)
482 socketpair() function.
491 a, b = _socket.socketpair(family, type, proto)
499 def socketpair(family=AF_INET, type=SOCK_STREAM, proto=0): function
535 __all__.append("socketpair")
537 socketpair.__doc__ = """socketpair([family[, type[, proto]]]) -> (socket object, socket object
    [all...]
  /external/syzkaller/vendor/golang.org/x/sys/unix/
syscall_linux_386.go 238 func socketpair(domain int, typ int, flags int, fd *[2]int32) (err error) { func
syscall_linux_s390x.go 201 func socketpair(domain int, typ int, flags int, fd *[2]int32) error { func
zsyscall_darwin_386.go 141 func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { func
    [all...]
zsyscall_darwin_amd64.go 141 func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { func
    [all...]
zsyscall_darwin_arm.go 141 func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { func
    [all...]
zsyscall_darwin_arm64.go 141 func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { func
    [all...]
zsyscall_dragonfly_amd64.go 141 func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { func
    [all...]
zsyscall_freebsd_386.go 141 func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { func
    [all...]
zsyscall_freebsd_amd64.go 141 func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { func
    [all...]
zsyscall_freebsd_arm.go 141 func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { func
    [all...]
zsyscall_linux_arm.go 1649 func socketpair(domain int, typ int, flags int, fd *[2]int32) (err error) { func
    [all...]
zsyscall_linux_arm64.go 1907 func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { func
    [all...]
zsyscall_netbsd_386.go 141 func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { func
    [all...]
zsyscall_netbsd_amd64.go 141 func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { func
    [all...]
zsyscall_netbsd_arm.go 141 func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { func
    [all...]
zsyscall_openbsd_386.go 141 func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { func
    [all...]

Completed in 429 milliseconds

1 2