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

  /external/libxml2/include/libxml/
nanoftp.h 23 * SOCKET:
27 #define SOCKET int
32 * the value to be used when the socket is not valid
136 XMLPUBFUN SOCKET XMLCALL
145 XMLPUBFUN SOCKET XMLCALL
  /external/bluetooth/bluedroid/udrv/ulinux/
uipc_linux.h 21 typedef int SOCKET;
22 #define INVALID_SOCKET (SOCKET)(-1)
25 /* tcp/ip socket configuration */
36 /* Socket configuration for GLGPS interface */
  /external/chromium/net/base/
listen_socket.h 32 typedef int SOCKET;
35 // Implements a raw socket interface
45 // to split up the listener from the connected socket. Perhaps this class
51 // server is the original listening Socket, connection is the new
52 // Socket that was created. Ownership of connection is transferred
66 // Send data to the socket.
86 static const SOCKET kInvalidSocket;
89 ListenSocket(SOCKET s, ListenSocketDelegate* del);
91 static SOCKET Listen(std::string ip, int port);
92 // if valid, returned SOCKET is non-blockin
    [all...]
listen_socket_unittest.h 14 #include <sys/socket.h>
33 #define SOCKET int
80 // read all pending data from the test socket
93 virtual bool Send(SOCKET sock, const std::string& str);
106 SOCKET test_socket_;
  /external/chromium/third_party/libjingle/source/talk/base/
physicalsocketserver.h 39 typedef int SOCKET;
66 virtual SOCKET GetSocket() = 0;
74 // A socket server that provides the real sockets of the underlying OS.
81 virtual Socket* CreateSocket(int type);
85 AsyncSocket* WrapSocket(SOCKET s);
  /external/chromium_org/third_party/libjingle/source/talk/base/
physicalsocketserver.h 39 typedef int SOCKET;
66 virtual SOCKET GetSocket() = 0;
74 // A socket server that provides the real sockets of the underlying OS.
81 virtual Socket* CreateSocket(int type);
82 virtual Socket* CreateSocket(int family, int type);
88 AsyncSocket* WrapSocket(SOCKET s);
  /external/chromium/chrome/browser/debugger/
devtools_remote_listen_socket.cc 17 #include <sys/socket.h>
36 #define SOCKET int
44 SOCKET s,
90 SOCKET s = ListenSocket::Listen(ip, port);
108 // Dispatches data from socket to socket_delegate_, extracting messages
214 SOCKET conn = ListenSocket::Accept(socket_);
devtools_remote_listen_socket_unittest.h 17 #include <sys/socket.h>
39 #define SOCKET int
93 // read all pending data from the test socket
99 virtual bool Send(SOCKET sock, const std::string& str);
119 SOCKET test_socket_;
  /external/chromium_org/ppapi/proxy/
serialized_handle.h 24 // memory handle, socket descriptor, etc). This is useful for passing handles in
29 enum Type { INVALID, SHARED_MEMORY, SOCKET, CHANNEL_HANDLE, FILE };
47 // Create a socket, channel or file handle.
53 bool is_socket() const { return type_ == SOCKET; }
78 void set_socket(const IPC::PlatformFileForTransit& socket) {
79 type_ = SOCKET;
80 descriptor_ = socket;
140 // This is valid if type == SOCKET || type == CHANNEL_HANDLE || type == FILE.
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3defs.h 225 typedef struct sockaddr_in ANTLR3_SOCKADDRT, * pANTLR3_SOCKADDRT; // Type used for socket address declaration
299 # include <socket.h>
302 # include <sys/socket.h>
351 // SOCKET not defined on Unix
353 typedef int SOCKET;
364 typedef struct sockaddr_in ANTLR3_SOCKADDRT, * pANTLR3_SOCKADDRT; // Type used for socket address declaration
380 typedef struct sockaddr_in ANTLR3_SOCKADDRT, * pANTLR3_SOCKADDRT; // Type used for socket address declaration
385 #define INVALID_SOCKET ((SOCKET)-1)
  /development/apps/Development/src/com/android/development/
Connectivity.java 68 import java.net.Socket;
548 onRoutedRequest(SOCKET);
551 private final static int SOCKET = 1;
568 case SOCKET:
656 Socket socket = null; local
658 socket = new Socket(remote, 80, local, 6000);
660 Log.e(TAG, "Exception creating socket: " + e);
664 PrintWriter out = new PrintWriter(socket.getOutputStream(), true)
693 Socket socket = null; local
    [all...]
  /external/chromium_org/third_party/libxml/src/
nanoftp.c 32 #include <sys/socket.h>
56 #include <sys/socket.h>
95 #define SOCKET int
131 struct sockaddr_in ftpAddr; /* the socket address struct */
134 SOCKET controlFd; /* the file descriptor for the control socket */
135 SOCKET dataFd; /* the file descriptor for the data socket */
157 s = socket (AF_INET6, SOCK_STREAM, 0);
916 ctxt->controlFd = socket (AF_INET6, SOCK_STREAM, 0)
    [all...]
nanohttp.c 31 #include <sys/socket.h>
78 #define SOCKET int
105 #define SOCKET int
117 #ifndef SOCKET
118 #define SOCKET int
142 SOCKET fd; /* the file descriptor for the socket */
201 s = socket (AF_INET6, SOCK_STREAM, 0);
477 * socket to be writable or default timeout prior
836 * @addr: a socket address structur
    [all...]
  /external/libxml2/
nanohttp.c 31 #include <sys/socket.h>
105 #define SOCKET int
140 SOCKET fd; /* the file descriptor for the socket */
197 SOCKET s;
199 s = socket (AF_INET6, SOCK_STREAM, 0);
475 * socket to be writable or default timeout prior
834 * @addr: a socket address structure
837 * non-blocking semantic on the socket, and allow 60 seconds for
843 static SOCKET
    [all...]
  /external/netperf/
netlib.h 10 # include <sys/socket.h>
327 #define SOCKET int
334 /* the socket from another thread can also return several other errors. */
417 extern SOCKET win_kludge_socket, win_kludge_socket2;
445 extern SOCKET server_sock;
487 extern void set_sock_buffer(SOCKET sd,
507 extern int set_nonblock (SOCKET sock);
  /external/robolectric/lib/main/
h2-1.2.147.jar 

Completed in 1823 milliseconds