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

1 2 3

  /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_org/net/base/
winsock_util.h 27 // Interface to create Windows Socket.
36 // Creates Windows socket. See WSASocket documentation of parameters.
37 virtual SOCKET CreateSocket(int family, int type, int protocol) = 0;
44 // Creates Windows Socket. See WSASocket documentation of parameters.
45 SOCKET CreatePlatformSocket(int family, int type, int protocol);
net_log_source_type_list.h 15 SOURCE_TYPE(SOCKET)
  /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...]
net_log_source_type_list.h 14 SOURCE_TYPE(SOCKET, 5)
listen_socket.cc 14 #include <sys/socket.h>
40 const SOCKET ListenSocket::kInvalidSocket = INVALID_SOCKET;
43 const SOCKET ListenSocket::kInvalidSocket = -1;
49 SOCKET s = Listen(ip, port);
85 ListenSocket::ListenSocket(SOCKET s, ListenSocketDelegate *del)
107 SOCKET ListenSocket::Listen(std::string ip, int port) {
108 SOCKET s = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
132 SOCKET ListenSocket::Accept(SOCKET s)
    [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_org/device/bluetooth/
bluetooth_socket_win.h 42 explicit BluetoothSocketWin(SOCKET fd);
44 const SOCKET fd_;
  /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);
win32socketserver.h 37 #include "talk/base/socket.h"
54 int Attach(SOCKET s);
84 void OnSocketNotify(SOCKET socket, int event, int error);
87 SOCKET socket_;
113 virtual Socket* CreateSocket(int type);
  /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);
win32socketserver.h 37 #include "talk/base/socket.h"
54 int Attach(SOCKET s);
85 void OnSocketNotify(SOCKET socket, int event, int error);
88 SOCKET socket_;
118 virtual Socket* CreateSocket(int type);
119 virtual Socket* CreateSocket(int family, int type);
  /external/chromium/chrome/browser/debugger/
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_;
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.h 17 // socket input and invokes the message handler when appropriate.
42 // The protocol states while reading socket input
50 DevToolsRemoteListenSocket(SOCKET s,
  /external/chromium_org/net/socket/
tcp_client_socket_win.h 15 #include "net/socket/stream_socket.h"
24 // The IP address(es) and port number to connect to. The TCP socket will try
33 // AdoptSocket causes the given, connected socket to be adopted as a TCP
34 // socket. This object must not be connected. This object takes ownership of
35 // the given socket and then acts as if Connect() had been called. This
38 int AdoptSocket(SOCKET socket);
40 // Binds the socket to a local IP address and port.
59 // Socket implementation.
78 // State machine for connecting the socket
    [all...]
tcp_server_socket_win.h 16 #include "net/socket/server_socket.h"
34 virtual int Accept(scoped_ptr<StreamSocket>* socket,
42 int AcceptInternal(scoped_ptr<StreamSocket>* socket);
45 SOCKET socket_;
  /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/chromium/net/socket/
tcp_client_socket_win.h 15 #include "net/socket/client_socket.h"
23 // The IP address(es) and port number to connect to. The TCP socket will try
32 // AdoptSocket causes the given, connected socket to be adopted as a TCP
33 // socket. This object must not be connected. This object takes ownership of
34 // the given socket and then acts as if Connect() had been called. This
37 void AdoptSocket(SOCKET socket);
56 // Socket methods:
66 // State machine for connecting the socket.
104 SOCKET socket_
    [all...]
tcp_server_socket_win.h 15 #include "net/socket/server_socket.h"
32 virtual int Accept(scoped_ptr<ClientSocket>* socket,
39 int AcceptInternal(scoped_ptr<ClientSocket>* socket);
42 SOCKET socket_;
  /external/chromium_org/tools/measure_page_load_time/ie_bho/
MeasurePageLoadTimeBHO.h 80 // Socket for accepting incoming connections
81 SOCKET m_sockListen;
83 // Socket for communicating with remote peers
84 SOCKET m_sockTransport;
  /external/chromium_org/ppapi/proxy/
serialized_handle.cc 55 case SOCKET:
75 case SOCKET:
130 case SOCKET:
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/chromium/net/tools/fetch/
http_listen_socket.h 15 // Implements a simple HTTP listen socket on top of the raw socket interface.
47 HttpListenSocket(SOCKET s, HttpListenSocket::Delegate* del);
  /external/chromium_org/sandbox/win/sandbox_poc/pocdll/
network.cc 22 // Create a SOCKET for listening for
24 SOCKET listen_socket;
25 listen_socket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
27 fprintf(output, "[ERROR] Failed to create socket. Error %ld\r\n",
34 // IP address, and port for the socket that is being bound.
42 fprintf(output, "[BLOCKED] Bind socket on port 88. Error %ld\r\n",
50 // on the created socket
52 fprintf(output, "[BLOCKED] Listen socket on port 88. Error %ld\r\n",
56 fprintf(output, "[GRANTED] Listen socket on port 88.\r\n",

Completed in 390 milliseconds

1 2 3