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

1 2 3 4

  /external/webkit/Source/WebKit2/UIProcess/Launcher/gtk/
ProcessLauncherGtk.cpp 63 int sockets[2]; local
64 if (socketpair(AF_UNIX, SOCK_DGRAM, 0, sockets) < 0) {
71 GOwnPtr<gchar> socket(g_strdup_printf("%d", sockets[0]));
79 if (!g_spawn_async(0, argv, 0, static_cast<GSpawnFlags>(spawnFlags), childSetupFunction, GINT_TO_POINTER(sockets[1]), &pid, &error.outPtr())) {
84 close(sockets[0]);
87 RunLoop::main()->scheduleWork(WorkItem::create(this, &ProcessLauncher::didFinishLaunchingProcess, m_processIdentifier, sockets[1]));
  /development/tools/emulator/opengl/tests/event_injector/
Android.mk 7 sockets.c \
  /external/webkit/Source/WebKit2/UIProcess/Launcher/qt/
ProcessLauncherQt.cpp 106 int sockets[2]; local
107 if (socketpair(AF_UNIX, SOCK_DGRAM, 0, sockets) == -1) {
114 while (fcntl(sockets[1], F_SETFD, FD_CLOEXEC) == -1) {
117 while (close(sockets[0]) == -1 && errno == EINTR) { }
118 while (close(sockets[1]) == -1 && errno == EINTR) { }
123 QString program(applicationPath.arg(sockets[0]));
130 while (fcntl(sockets[0], F_SETFD, FD_CLOEXEC) == -1) {
147 RunLoop::main()->scheduleWork(WorkItem::create(this, &WebKit::ProcessLauncher::didFinishLaunchingProcess, webProcess, sockets[1]));
  /libcore/luni/src/test/java/libcore/java/io/
InterruptedStreamTest.java 46 private Socket[] sockets; field in class:InterruptedStreamTest
49 if (sockets != null) {
50 sockets[0].close();
51 sockets[1].close();
90 sockets = newSocketChannelPair();
91 testInterruptReadableChannel(sockets[0].getChannel());
95 sockets = newSocketChannelPair();
96 testInterruptReadableChannel(sockets[0].getChannel());
100 * Returns a pair of connected sockets backed by NIO socket channels.
  /system/core/libcutils/
sockets.c 18 #include <cutils/sockets.h>
socket_inaddr_any_server.c 18 #include <cutils/sockets.h>
socket_loopback_client.c 18 #include <cutils/sockets.h>
socket_loopback_server.c 18 #include <cutils/sockets.h>
socket_network_client.c 18 #include <cutils/sockets.h>
socket_local_server.c 18 #include <cutils/sockets.h>
  /frameworks/base/cmds/bugreport/
bugreport.c 22 #include <cutils/sockets.h>
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLSocketPair.java 60 SSLSocket[] sockets = connect(c, null, null); local
61 return new TestSSLSocketPair(c, sockets[0], sockets[1]);
  /system/core/adb/
Android.mk 12 # Default to a virtual (sockets) usb interface
60 sockets.c \
117 sockets.c \
163 sockets.c \
  /system/core/init/
signal_handler.c 25 #include <cutils/sockets.h>
71 /* remove any sockets we may have created */
72 for (si = svc->sockets; si; si = si->next) {
  /development/tools/emulator/opengl/shared/OpenglCodecCommon/
TcpStream.cpp 17 #include <cutils/sockets.h>
UnixStream.cpp 17 #include <cutils/sockets.h>
  /external/chromium/chrome/browser/resources/net_internals/
socketsview.js 9 * - For each pool with allocated sockets or connect jobs, shows all its
10 * groups with any allocated sockets.
  /frameworks/base/cmds/keystore/
keystore_cli.cpp 23 #include <cutils/sockets.h>
keystore_get.h 26 #include <cutils/sockets.h>
  /hardware/ril/rild/
radiooptions.c 21 #include <cutils/sockets.h>
  /system/core/debuggerd/
crasher.c 18 #include <cutils/sockets.h>
  /system/core/debuggerd/x86/
machine.c 31 #include <cutils/sockets.h>
  /system/core/toolbox/
log.c 38 #include <cutils/sockets.h>
  /external/chromium/third_party/libevent/
http-internal.h 114 TAILQ_HEAD(boundq, evhttp_bound_socket) sockets; member in struct:evhttp
  /external/dbus/
config.h 2 #include <cutils/sockets.h>
58 /* Where per-session bus puts its sockets */
67 /* Where to put test sockets */

Completed in 366 milliseconds

1 2 3 4