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

1 2

  /bionic/libc/arch-arm/syscalls/
socketpair.S 5 .type socketpair, #function
6 .globl socketpair
10 socketpair: label
  /bionic/libc/arch-x86/syscalls/
socketpair.S 5 .type socketpair, @function
6 .globl socketpair
9 socketpair: label
  /bionic/libc/include/sys/
socket.h 70 __socketcall int socketpair(int, int, int, int *);
linux-unistd.h 146 int socketpair (int, int, int, int*);
167 int socketpair (int, int, int, int*);
  /ndk/build/platforms/android-3/arch-arm/usr/include/sys/
socket.h 70 __socketcall int socketpair(int, int, int, int *);
linux-unistd.h 145 int socketpair (int, int, int, int*);
166 int socketpair (int, int, int, int*);
  /ndk/build/platforms/android-4/arch-arm/usr/include/sys/
socket.h 70 __socketcall int socketpair(int, int, int, int *);
linux-unistd.h 145 int socketpair (int, int, int, int*);
166 int socketpair (int, int, int, int*);
  /ndk/build/platforms/android-5/arch-arm/usr/include/sys/
socket.h 70 __socketcall int socketpair(int, int, int, int *);
linux-unistd.h 145 int socketpair (int, int, int, int*);
166 int socketpair (int, int, int, int*);
  /ndk/build/platforms/android-5/arch-x86/usr/include/sys/
socket.h 70 __socketcall int socketpair(int, int, int, int *);
linux-unistd.h 145 int socketpair (int, int, int, int*);
166 int socketpair (int, int, int, int*);
  /ndk/build/platforms/android-8/arch-arm/usr/include/sys/
socket.h 70 __socketcall int socketpair(int, int, int, int *);
linux-unistd.h 145 int socketpair (int, int, int, int*);
166 int socketpair (int, int, int, int*);
  /ndk/build/platforms/android-8/arch-x86/usr/include/sys/
socket.h 70 __socketcall int socketpair(int, int, int, int *);
linux-unistd.h 145 int socketpair (int, int, int, int*);
166 int socketpair (int, int, int, int*);
  /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 429 return socketpair( d, type, protocol, sv );
445 #undef socketpair macro
446 #define socketpair ___xxx_socketpair macro
  /bionic/libc/unistd/
socketcalls.c 145 int socketpair(int d, int type, int protocol, int sv[2]) function
  /external/libpcap/lbl/
os-sunos4.h 164 int socketpair(int, int, int, int *);
  /external/tcpdump/lbl/
os-sunos4.h 164 int socketpair(int, int, int, int *);
  /development/simulator/wrapsim/
FakeDev.c 15 file descriptor (perhaps based on a socketpair).
20 for the cases where we don't need a socketpair.
194 if (socketpair(AF_UNIX, SOCK_STREAM, 0, fds) < 0) {
195 wsLog("socketpair() failed: %s\n", strerror(errno));
  /frameworks/base/core/jni/
android_bluetooth_ScoSocket.cpp 64 * use of a socketpair to signal the blocking I/O to abort.
333 // setup socketpair to pass messages between threads
334 if (socketpair(AF_UNIX, SOCK_STREAM, 0, signal_sks) < 0) {
335 LOGE("%s: socketpair() failed: %s", __FUNCTION__, strerror(errno));
383 // setup socketpair to pass messages between threads
384 if (socketpair(AF_UNIX, SOCK_STREAM, 0, signal_sks) < 0) {
385 LOGE("%s: socketpair() failed: %s\n", __FUNCTION__, strerror(errno));
  /system/bluetooth/tools/
pipetest.c 39 printf("%d: socketpair()\n", gettid());
40 ret = socketpair(AF_UNIX, SOCK_STREAM, 0, fd);
41 printf("%d: socketpair() = %d\n", gettid(), ret);
  /bionic/libc/arch-arm/
syscalls.mk 132 syscall_src += arch-arm/syscalls/socketpair.S

Completed in 655 milliseconds

1 2