HomeSort by relevance Sort by last modified time
    Searched defs:Socketpair (Results 1 - 5 of 5) sorted by null

  /system/core/base/include/android-base/
unique_fd.h 125 inline bool Socketpair(int domain, int type, int protocol, unique_fd* left, unique_fd* right) {
127 if (socketpair(domain, type, protocol, sockfd) != 0) {
135 inline bool Socketpair(int type, unique_fd* left, unique_fd* right) {
136 return Socketpair(AF_UNIX, type, 0, left, right);
  /prebuilts/go/darwin-x86/src/syscall/
syscall_unix.go 314 func Socketpair(domain, typ, proto int) (fd [2]int, err error) {
316 err = socketpair(domain, typ, proto, &fdx)
net_nacl.go 971 func Socketpair(domain, typ, proto int) (fd [2]int, err error) { panic("Socketpair") }
  /prebuilts/go/linux-x86/src/syscall/
syscall_unix.go 314 func Socketpair(domain, typ, proto int) (fd [2]int, err error) {
316 err = socketpair(domain, typ, proto, &fdx)
net_nacl.go 971 func Socketpair(domain, typ, proto int) (fd [2]int, err error) { panic("Socketpair") }

Completed in 108 milliseconds