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

1 2 3 4 5

  /external/libpcap/rpcapd/
daemon.h 40 int daemon_serviceloop(SOCKET sockctrl_in, SOCKET sockctrl_out, int isactive,
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
SockImpl.h 2 Socket implementation header file.
18 #include "Socket.h"
48 the buffer to socket send buffer,then try to send it.
50 @param Sock Pointer to the socket.
59 IN SOCKET *Sock,
64 Copy data from socket buffer to application provided receive buffer.
66 @param Sock Pointer to the socket.
74 IN SOCKET *Sock,
81 Get received data from the socket layer to the receive token.
83 @param Sock Pointer to the socket.
    [all...]
Socket.h 2 Socket header file.
50 // When a socket is created it enters into SO_UNCONFIGURED,
51 // no actions can be taken on this socket, only after calling
52 // SockConfigure. The state transition diagram of socket is
61 // A passive socket can only go into SO_LISTENING and
63 // when a socket is undergoing a protocol procedure such
70 /// Socket state
79 /// Socket configure state
87 Set socket SO_NO_MORE_DATA flag.
89 @param Sock Pointer to the socket
    [all...]
SockInterface.c 2 Interface function of the Socket.
56 in the related socket's lists.
58 @param Sock Pointer to the instance's socket.
61 @retval TRUE The Event exists in related socket's lists.
62 @retval FALSE The Event is not in related socket's lists.
67 IN SOCKET *Sock,
95 Buffer a token into the specific list of socket Sock.
97 @param Sock Pointer to the instance's socket.
107 IN SOCKET *Sock,
134 Destroy the socket Sock and its associated protocol control block.
    [all...]
Tcp4Main.c 94 SOCKET *Sock;
158 SOCKET *Sock;
269 SOCKET *Sock;
323 SOCKET *Sock;
374 SOCKET *Sock;
429 SOCKET *Sock;
511 SOCKET *Sock;
578 SOCKET *Sock;
661 SOCKET *Sock;
SockImpl.c 2 Implementation of the Socket.
18 Get the length of the data that can be retrieved from the socket
21 @param SockBuffer Pointer to the socket receive buffer.
25 received data in socket layer.
40 @param Sock Pointer to the socket.
45 IN OUT SOCKET *Sock
65 Get the length of the data that can be retrieved from the socket
68 @param SockBuffer Pointer to the socket receive buffer.
72 received data in socket layer.
148 Copy data from socket buffer to application provided receive buffer.
    [all...]
  /external/swiftshader/src/Common/
Socket.hpp 21 #include <sys/socket.h>
22 typedef int SOCKET;
27 class Socket
30 Socket(SOCKET socket);
31 Socket(const char *address, const char *port);
32 ~Socket();
36 Socket *accept();
45 SOCKET socket member in class:sw::Socket
    [all...]
  /external/swiftshader/src/System/
Socket.hpp 21 #include <sys/socket.h>
22 typedef int SOCKET;
27 class Socket
30 Socket(SOCKET socket);
31 Socket(const char *address, const char *port);
32 ~Socket();
36 Socket *accept();
45 SOCKET socket member in class:sw::Socket
    [all...]
  /external/grpc-grpc/src/core/lib/iomgr/
tcp_windows.h 25 Note that this file does not (yet) include APIs for creating the socket in
43 grpc_endpoint* grpc_tcp_create(grpc_winsocket* socket,
47 grpc_error* grpc_tcp_prepare_socket(SOCKET sock);
49 grpc_error* grpc_tcp_set_non_block(SOCKET sock);
socket_windows.h 35 /* This holds the data for an outstanding read or write on a socket.
62 /* This is a wrapper to a Windows socket. A socket can have one outstanding
72 SOCKET socket; member in struct:grpc_winsocket
81 /* You can't add the same socket twice to the same IO Completion Port.
93 grpc_winsocket* grpc_winsocket_create(SOCKET socket, const char* name);
95 SOCKET grpc_winsocket_wrapped_socket(grpc_winsocket* socket);
    [all...]
endpoint_pair_windows.cc 36 static void create_sockets(SOCKET sv[2]) {
37 SOCKET svr_sock = INVALID_SOCKET;
38 SOCKET lst_sock = INVALID_SOCKET;
39 SOCKET cli_sock = INVALID_SOCKET;
75 SOCKET sv[2];
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
SockImpl.h 2 The function declaration that provided for Socket Interface.
19 #include "Socket.h"
38 the buffer to socket send buffer, then try to send it.
40 @param[in] Sock Pointer to the socket.
49 IN SOCKET *Sock,
54 Get received data from the socket layer to the receive token.
56 @param[in, out] Sock Pointer to the socket.
64 IN OUT SOCKET *Sock,
69 Flush the sndBuffer and rcvBuffer of socket.
71 @param[in, out] Sock Pointer to the socket.
    [all...]
Socket.h 2 Common head file for TCP socket.
48 // When a socket is created it enters into SO_UNCONFIGURED,
49 // no actions can be taken on this socket, only after calling
50 // SockConfigure. The state transition diagram of socket is
59 // A passive socket can only go into SO_LISTENING and
61 // when a socket is undergoing a protocol procedure such
68 /// Socket state
77 /// Socket configure state
85 /// The request issued from socket layer to protocol layer.
87 #define SOCK_ATTACH 0 ///< Attach current socket to a new PCB
    [all...]
TcpMain.c 88 SOCKET *Sock;
135 SOCKET *Sock;
223 SOCKET *Sock;
266 SOCKET *Sock;
304 SOCKET *Sock;
351 SOCKET *Sock;
416 SOCKET *Sock;
473 SOCKET *Sock;
515 SOCKET *Sock;
546 SOCKET *Sock;
    [all...]
SockInterface.c 2 Interface function of the Socket.
54 in the related socket's lists.
56 @param[in] Sock Pointer to the instance's socket.
59 @retval TRUE The Event exists in related socket's lists.
60 @retval FALSE The Event is not in related socket's lists.
65 IN SOCKET *Sock,
92 Buffer a token into the specific list of the socket Sock.
94 @param[in] Sock Pointer to the instance's socket.
104 IN SOCKET *Sock,
132 Destroy the socket Sock and its associated protocol control block.
    [all...]
  /external/libpcap/
pcap-rpcap-int.h 38 #include "sockutils.h" /* Needed for some structures (like SOCKET, sockaddr_in) which are used here */
62 * \brief Buffer used by socket functions to send-receive packets.
73 int rpcap_senderror(SOCKET sock, char *error, unsigned short errcode, char *errbuf);
sockutils.h 61 #include <sys/socket.h>
70 * \brief In Winsock, a socket handle is of type SOCKET; in UN*X, it's
72 * We define SOCKET to be a signed integer on UN*X, so that it can
75 #ifndef SOCKET
76 #define SOCKET int
80 * \brief In Winsock, the error return if socket() fails is INVALID_SOCKET;
90 * \brief In Winsock, the close() call cannot be used on a socket;
108 * \defgroup SockUtils Cross-platform socket utilities (IPv4-IPv6)
165 /* no 'server' flag; it opens a client socket */
    [all...]
  /external/webrtc/webrtc/base/
physicalsocketserver.h 23 typedef int SOCKET;
50 virtual SOCKET GetSocket() = 0;
58 // A socket server that provides the real sockets of the underlying OS.
65 Socket* CreateSocket(int type) override;
66 Socket* CreateSocket(int family, int type) override;
72 AsyncSocket* WrapSocket(SOCKET s);
121 PhysicalSocket(PhysicalSocketServer* ss, SOCKET s = INVALID_SOCKET);
124 // Creates the underlying OS socket (same as the "socket" function).
162 virtual SOCKET DoAccept(SOCKET socket, sockaddr* addr, socklen_t* addrlen)
    [all...]
  /external/curl/lib/
config-win32ce.h 87 /* Define if you have the <sys/socket.h> header file. */
193 /* Define if you have the socket function. */
253 #define RECV_TYPE_ARG1 SOCKET
271 #define RECVFROM_TYPE_ARG1 SOCKET
295 #define SEND_TYPE_ARG1 SOCKET
  /external/grpc-grpc/third_party/cares/config_windows/
ares_config.h 229 /* Define to 1 if you have the socket function. */
232 /* Define to 1 if you have the <socket.h> header file. */
298 /* Define to 1 if you have the <sys/socket.h> header file. */
347 #define RECVFROM_TYPE_ARG1 SOCKET
377 #define RECV_TYPE_ARG1 SOCKET
398 #define SEND_TYPE_ARG1 SOCKET
  /external/libevent/
iocp-internal.h 58 typedef BOOL (WINAPI *AcceptExPtr)(SOCKET, SOCKET, PVOID, DWORD, DWORD, DWORD, LPDWORD, LPOVERLAPPED);
59 typedef BOOL (WINAPI *ConnectExPtr)(SOCKET, const struct sockaddr *, int, PVOID, DWORD, LPDWORD, LPOVERLAPPED);
112 socket. The socket must be associated with an IO completion port using
  /external/libxml2/include/libxml/
nanoftp.h 23 * SOCKET:
27 #define SOCKET int
32 * the value to be used when the socket is not valid
137 XMLPUBFUN SOCKET XMLCALL
146 XMLPUBFUN SOCKET XMLCALL
  /external/webrtc/webrtc/test/channel_transport/
udp_socket_manager_posix.h 77 typedef std::list<SOCKET> FdList;
83 std::map<SOCKET, UdpSocketPosix*> _socketMap;
udp_socket_posix.h 16 #include <sys/socket.h>
51 // Deletes socket in addition to closing it.
55 SOCKET GetFd();
79 SOCKET _socket;
udp_socket_wrapper.h 27 typedef int SOCKET;
31 #define INVALID_SOCKET (SOCKET)(~0)
57 // Socket to local address specified by name.
68 // Set socket options.
84 // Close socket and don't return until completed.
97 // Creating the socket is done via CreateSocket().
99 // Destroying the socket is done via CloseBlocking().

Completed in 854 milliseconds

1 2 3 4 5