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

1 2 3 4

  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
main.cc 96 SocketArray sockets; local
104 for (SocketArray::iterator i = sockets.begin(); i != sockets.end(); ++i)
113 for (SocketArray::iterator i = sockets.begin(); i != sockets.end(); ++i) {
165 i = sockets.erase(i);
166 if (i == sockets.end())
175 if (sockets.size() >= kMaxConnections) {
179 sockets.push_back(s);
185 for (SocketArray::iterator i = sockets.begin(); i != sockets.end(); ++i
    [all...]
  /external/chromium_org/media/audio/
cross_process_notification_posix.cc 77 // and return the index of that socket if set. This can cause sockets
78 // that come later in the array to starve when the first sockets are
81 // becomes the last socket in the array and all the other sockets will have
83 scoped_ptr<struct pollfd[]> sockets(new struct pollfd[notifications.size()]);
84 memset(&sockets[0], 0, notifications.size() * sizeof(sockets[0]));
87 struct pollfd& fd = sockets[index++];
93 struct pollfd& fd = sockets[index++];
99 int err = poll(&sockets[0], notifications.size(), -1);
102 if (sockets[i].revents)
    [all...]
  /sdk/emulator/opengl/tests/event_injector/
Android.mk 7 sockets.c \
  /frameworks/native/libs/gui/
BitTube.cpp 71 int sockets[2]; local
72 if (socketpair(AF_UNIX, SOCK_SEQPACKET, 0, sockets) == 0) {
74 setsockopt(sockets[0], SOL_SOCKET, SO_RCVBUF, &rcvbuf, sizeof(rcvbuf));
75 setsockopt(sockets[1], SOL_SOCKET, SO_SNDBUF, &sndbuf, sizeof(sndbuf));
77 setsockopt(sockets[0], SOL_SOCKET, SO_SNDBUF, &size, sizeof(size));
78 setsockopt(sockets[1], SOL_SOCKET, SO_RCVBUF, &size, sizeof(size));
79 fcntl(sockets[0], F_SETFL, O_NONBLOCK);
80 fcntl(sockets[1], F_SETFL, O_NONBLOCK);
81 mReceiveFd = sockets[0];
82 mSendFd = sockets[1]
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
InterruptedStreamTest.java 47 private Socket[] sockets; field in class:InterruptedStreamTest
57 if (sockets != null) {
58 sockets[0].close();
59 sockets[1].close();
98 sockets = newSocketChannelPair();
99 testInterruptReadableChannel(sockets[0].getChannel());
103 sockets = newSocketChannelPair();
104 testInterruptWritableChannel(sockets[0].getChannel());
108 * 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>
debugger.c 21 #include <cutils/sockets.h>
socket_local_server.c 18 #include <cutils/sockets.h>
  /frameworks/native/cmds/bugreport/
bugreport.c 22 #include <cutils/sockets.h>
  /bootable/recovery/minadbd/
Android.mk 18 sockets.c \
  /external/openssh/
ssh-agent.c 102 SocketEntry *sockets = NULL; variable
909 if (sockets[i].type == AUTH_UNUSED) {
910 sockets[i].fd = fd;
911 buffer_init(&sockets[i].input);
912 buffer_init(&sockets[i].output);
913 buffer_init(&sockets[i].request);
914 sockets[i].type = type;
919 sockets = xrealloc(sockets, new_alloc, sizeof(sockets[0]))
    [all...]
  /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]);
  /external/chromium_org/chrome/browser/resources/net_internals/
timeline_view.css 37 #timeline-view-open-sockets {
41 #timeline-view-in-use-sockets {
  /system/core/adb/
Android.mk 12 # Default to a virtual (sockets) usb interface
62 sockets.c \
111 sockets.c \
153 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) {
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
TcpStream.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.
  /external/chromium_org/third_party/libjingle/source/talk/base/
macsocketserver.h 43 const std::set<MacAsyncSocket*>& sockets() { function in class:talk_base::MacBaseSocketServer
  /hardware/ril/rild/
radiooptions.c 21 #include <cutils/sockets.h>
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
TcpStream.cpp 17 #include <cutils/sockets.h>
  /system/core/toolbox/
log.c 38 #include <cutils/sockets.h>

Completed in 1013 milliseconds

1 2 3 4