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

  /bionic/libc/arch-arm/syscalls/
socketpair.S 6 ENTRY(socketpair) function
15 END(socketpair)
  /bionic/libc/arch-mips/syscalls/
socketpair.S 4 .globl socketpair
6 .ent socketpair
8 socketpair: label
22 .end socketpair
  /bionic/libc/arch-x86/syscalls/
socketpair.S 6 ENTRY(socketpair) function
25 END(socketpair)
  /external/webkit/Source/WebKit2/UIProcess/Launcher/qt/
ProcessLauncherQt.cpp 87 // FIXME: Symbian's POSIX layer doesn't have a socketpair(), so
90 static int socketpair(int, int, int , int[2]) function in namespace:WebKit
107 if (socketpair(AF_UNIX, SOCK_DGRAM, 0, sockets) == -1) {
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 184 @Override public void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescriptor fd2) throws ErrnoException { method in class:BlockGuardOs
185 os.socketpair(domain, type, protocol, fd1, fd2);
Os.java 122 public void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescriptor fd2) throws ErrnoException; method in interface:Os
Posix.java 173 public native void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescriptor fd2) throws ErrnoException; method in class:Posix
ForwardingOs.java 129 public void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescriptor fd2) throws ErrnoException { os.socketpair(domain, type, protocol, fd1, fd2); } method in class:ForwardingOs
  /development/ndk/sources/android/libportable/arch-mips/
socket.c 147 int WRAP(socketpair)(int domain, int type, int protocol, int sv[2]) { function
154 rv = REAL(socketpair)(domain, socktype_pton(type), protocol, sv);
  /libcore/luni/src/main/java/java/nio/
PipeImpl.java 41 Libcore.os.socketpair(AF_UNIX, SOCK_STREAM, 0, fd1, fd2);
  /bootable/recovery/minadbd/
sysdeps.h 442 return socketpair( d, type, protocol, sv );
458 #undef socketpair macro
459 #define socketpair ___xxx_socketpair macro
  /external/kernel-headers/original/linux/
net.h 135 int (*socketpair)(struct socket *sock1, member in struct:proto_ops
246 SOCKCALL_WRAP(name, socketpair, (struct socket *sock1, struct socket *sock2), \
277 .socketpair = __lock_##name##_socketpair, \
  /system/core/adb/
sysdeps.h 463 return socketpair( d, type, protocol, sv );
479 #undef socketpair macro
480 #define socketpair ___xxx_socketpair macro

Completed in 162 milliseconds