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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/kernel/arch-x86/asm/
socket.h 19 #include <asm-generic/socket.h>
  /development/ndk/platforms/android-9/arch-x86/include/asm/
socket.h 19 #include <asm-generic/socket.h>
  /external/kernel-headers/original/asm-x86/
socket.h 1 #include <asm-generic/socket.h>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
socketvar.h 3 #include <sys/socket.h>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
socketvar.h 3 #include <sys/socket.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
socketvar.h 3 #include <sys/socket.h>
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/
socket.h 19 #include <asm-generic/socket.h>
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/
socket.h 19 #include <asm-generic/socket.h>
  /development/tools/axl/
udpEater.py 24 import time, socket, string namespace
29 svrsocket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
30 svrsocket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
33 hostname = socket.gethostname()
34 ip = socket.gethostbyname(hostname)
udpServer.py 2 import time, socket, string namespace
9 svrsocket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
10 svrsocket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
13 # hostname = socket.gethostname()
15 ip = socket.gethostbyname(hostname)
  /external/qemu/slirp/
socket.h 17 * Our socket structure
20 struct socket { struct
21 struct socket *so_next,*so_prev; /* For a linked list of sockets */
23 int s; /* The actual socket */
38 u_int8_t so_emu; /* Is the socket emulated? */
40 u_char so_type; /* Type of socket, UDP or TCP */
44 u_int so_expire; /* When the socket will expire */
46 int so_queued; /* Number of packets queued from this socket */
58 * Socket state bits. (peer means the host on the Internet,
63 #define SS_ISFCONNECTING 0x002 /* Socket is connecting to peer (non-blocking connect()'s) *
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSocketImplWrapper.java 22 import java.net.Socket;
27 * This class wraps the SSL functionality over an existing connected socket.
31 private Socket socket; field in class:OpenSSLSocketImplWrapper
33 protected OpenSSLSocketImplWrapper(Socket socket, String host, int port,
35 super(socket, host, port, autoClose, sslParameters);
36 if (!socket.isConnected()) {
37 throw new SocketException("Socket is not connected.");
39 this.socket = socket
    [all...]
SSLSocketWrapper.java 23 import java.net.Socket;
28 * This class wraps the SSL fuctionality over existing conneted socket.
32 private final Socket socket; field in class:SSLSocketWrapper
35 protected SSLSocketWrapper(Socket socket, String host, int port, boolean autoClose,
38 if (!socket.isConnected()) {
39 throw new SocketException("Socket is not connected.");
41 this.socket = socket;
    [all...]
  /bionic/libc/bionic/
recv.c 29 #include <sys/socket.h>
31 ssize_t recv(int socket, void *buf, size_t buflen, unsigned int flags)
33 return recvfrom(socket, buf, buflen, flags, NULL, 0);
send.c 29 #include <sys/socket.h>
31 ssize_t send(int socket, const void *buf, size_t buflen, unsigned int flags)
33 return (ssize_t) sendto(socket, buf, buflen, flags, NULL, 0);
  /bionic/libc/include/net/
if_arp.h 1 #include <sys/socket.h>
  /external/chromium/third_party/libjingle/source/talk/base/
basicpacketsocketfactory.cc 56 talk_base::AsyncSocket* socket = local
58 if (!socket) {
61 if (BindSocket(socket, address, min_port, max_port) < 0) {
63 << socket->GetError();
64 delete socket;
67 return new talk_base::AsyncUDPSocket(socket);
73 talk_base::AsyncSocket* socket = local
75 if (!socket) {
79 if (BindSocket(socket, local_address, min_port, max_port) < 0) {
81 << socket->GetError()
97 talk_base::AsyncSocket* socket = local
    [all...]
socketstream.h 41 explicit SocketStream(AsyncSocket* socket);
44 void Attach(AsyncSocket* socket);
60 void OnConnectEvent(AsyncSocket* socket);
61 void OnReadEvent(AsyncSocket* socket);
62 void OnWriteEvent(AsyncSocket* socket);
63 void OnCloseEvent(AsyncSocket* socket, int err);
  /external/apache-http/src/org/apache/http/impl/
SocketHttpClientConnection.java 36 import java.net.Socket;
49 * network Socket in order to receive and transmit data.
61 private Socket socket = null; field in class:SocketHttpClientConnection
80 final Socket socket,
83 return new SocketInputBuffer(socket, buffersize, params);
87 final Socket socket,
90 return new SocketOutputBuffer(socket, buffersize, params)
    [all...]
SocketHttpServerConnection.java 36 import java.net.Socket;
49 * network Socket in order to receive and transmit data.
61 private Socket socket = null; field in class:SocketHttpServerConnection
80 final Socket socket,
83 return new SocketInputBuffer(socket, buffersize, params);
87 final Socket socket,
90 return new SocketOutputBuffer(socket, buffersize, params)
    [all...]
  /external/qemu/slirp-android/
socket.h 17 * Our socket structure
20 struct socket { struct
21 struct socket *so_next,*so_prev; /* For a linked list of sockets */
23 int s; /* The actual socket */
39 u_int8_t so_emu; /* Is the socket emulated? */
41 u_char so_type; /* Type of socket, UDP or TCP */
45 u_int so_expire; /* When the socket will expire */
47 int so_queued; /* Number of packets queued from this socket */
59 * Socket state bits. (peer means the host on the Internet,
64 #define SS_ISFCONNECTING 0x002 /* Socket is connecting to peer (non-blocking connect()'s) *
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5BytestreamSession.java 23 import java.net.Socket;
35 /* the underlying socket of the SOCKS5 Bytestream */
36 private final Socket socket; field in class:Socks5BytestreamSession
41 protected Socks5BytestreamSession(Socket socket, boolean isDirect) {
42 this.socket = socket;
69 return this.socket.getInputStream();
73 return this.socket.getOutputStream();
    [all...]
  /bionic/libc/arch-mips/syscalls/
socket.S 4 .globl socket
6 .ent socket
8 socket: label
22 .end socket
  /external/apache-http/src/org/apache/http/impl/io/
SocketInputBuffer.java 36 import java.net.Socket;
44 * {@link Socket} bound session input buffer.
54 private final Socket socket; field in class:SocketInputBuffer
57 final Socket socket,
61 if (socket == null) {
62 throw new IllegalArgumentException("Socket may not be null");
64 this.socket = socket;
    [all...]
SocketOutputBuffer.java 35 import java.net.Socket;
41 * {@link Socket} bound session output buffer.
52 final Socket socket,
56 if (socket == null) {
57 throw new IllegalArgumentException("Socket may not be null");
64 init(socket.getOutputStream(), 8192, params);

Completed in 2600 milliseconds

1 2 3 4 5 6 7 8 91011>>