HomeSort by relevance Sort by last modified time
    Searched defs:Socket (Results 1 - 25 of 41) sorted by null

1 2

  /external/deqp/framework/delibs/decpp/
deSocket.cpp 76 // Socket
78 Socket::Socket (void)
85 Socket::~Socket (void)
90 void Socket::setFlags (deUint32 flags)
93 throw SocketError("Setting socket flags failed");
96 void Socket::listen (const SocketAddress& address)
99 throw SocketError("Listening on socket failed");
102 void Socket::connect (const SocketAddress& address
    [all...]
deSocket.hpp 72 class Socket
75 Socket (void);
76 ~Socket (void);
84 Socket* accept (SocketAddress& clientAddress) { return accept(clientAddress.getPtr()); }
85 Socket* accept (void) { return accept(DE_NULL); }
102 Socket (deSocket* socket) : m_socket(socket) {}
103 Socket (const Socket& other)
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketImplFactoryTest.java 8 import java.net.Socket;
30 Socket.setSocketImplFactory(factory);
33 new Socket();
41 Socket.setSocketImplFactory(factory);
48 Socket.setSocketImplFactory(null);
65 Field [] fields = Socket.class.getDeclaredFields();
OldSocketTest.java 31 import java.net.Socket;
47 Socket s;
61 // create the socket and then validate some basic state
62 s = new Socket();
63 assertFalse("new socket should not be connected", s.isConnected());
64 assertFalse("new socket should not be bound", s.isBound());
65 assertFalse("new socket should not be closed", s.isClosed());
66 assertFalse("new socket should not be in InputShutdown", s
68 assertFalse("new socket should not be in OutputShutdown", s
74 // Test for method java.net.Socket(java.lang.String, int
103 Socket socket = null; local
617 Socket socket = new Socket(); local
890 Socket socket = new Socket(proxy); local
1091 Socket socket = channel.socket(); local
1396 Socket socket = channel.socket(); local
1696 Socket socket = channel.socket(); local
2042 Socket socket = new Socket(); local
2053 Socket socket = new Socket(); local
2064 Socket socket = new Socket(); local
2095 Socket socket = channel.socket(); local
    [all...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Socket.java 28 * Encapsulates a connection with the emulator over a UNIX-domain socket.
30 public class Socket {
31 /** UNIX-domain socket connected with the emulator. */
33 /** Channel name for the connection established via this socket. */
44 * Constructs Socket instance.
46 * @param socket Socket connection with the emulator.
50 public Socket(LocalSocket socket, String name, ByteOrder endian) {
51 mSocket = socket;
99 LocalSocket socket = mSocket; local
116 LocalSocket socket = mSocket; local
153 LocalSocket socket = mSocket; local
182 LocalSocket socket; local
    [all...]
Connection.java 34 * the device side, the connection is bound to the UNIX-domain socket named
37 * 'android.sdk.controller' socket on the device. Typically, the port forwarding
52 * 2. Channels are connected to emulator via separate socket instance (though all
53 * of the connections share the same socket address).
61 * 1. Bind to "android.sdk.controller" socket, listening to emulator connections.
79 /** Server socket used to listen to emulator connections. */
91 private List<Socket> mPendingSockets = new ArrayList<Socket>();
110 * Binds to the socket, and starts the listening thread.
124 * Stops the listener, and closes the socket
133 LocalServerSocket socket; local
269 LocalServerSocket socket = mServerSocket; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
stm.h 17 UCHAR Socket[2];
atalkwsh.h 68 UCHAR Socket;
traffic.h 107 USHORT Socket;
iscsidsc.h 114 USHORT Socket;
120 USHORT Socket;
258 USHORT Socket;
266 USHORT Socket;
274 USHORT Socket;
284 USHORT Socket;
tdi.h 399 UCHAR Socket;
415 USHORT Socket;
455 USHORT Socket;
wininet.h 135 DWORD_PTR Socket;
    [all...]
ntddndis.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntddpcm.h 48 USHORT Socket;
71 USHORT Socket;
  /system/extras/tests/net_test/
net_test.py 19 from socket import * # pylint: disable=wildcard-import
101 def Socket(family, sock_type, protocol):
102 s = socket(family, sock_type, protocol)
109 return Socket(family, SOCK_DGRAM, proto)
121 s = Socket(family, SOCK_STREAM, IPPROTO_TCP)
135 return Socket(family, SOCK_DGRAM, IPPROTO_UDP)
139 s = Socket(family, SOCK_RAW, IPPROTO_GRE)
  /libcore/luni/src/main/java/java/net/
Socket.java 29 * Provides a client-side TCP socket.
31 public class Socket implements Closeable {
49 * Creates a new unconnected socket. When a SocketImplFactory is defined it
50 * creates the internal socket implementation, otherwise the default socket
51 * implementation will be used for this socket.
56 public Socket() {
62 * Creates a new unconnected socket using the given proxy type. When a
63 * {@code SocketImplFactory} is defined it creates the internal socket
64 * implementation, otherwise the default socket implementation will be use
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
ant.jar 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 

Completed in 567 milliseconds

1 2