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

1 2 3 4 5 6 7 8 91011>>

  /external/kernel-headers/original/uapi/asm-arm/asm/
socket.h 1 #include <asm-generic/socket.h>
  /external/kernel-headers/original/uapi/asm-arm64/asm/
socket.h 1 #include <asm-generic/socket.h>
  /external/kernel-headers/original/uapi/asm-x86/asm/
socket.h 1 #include <asm-generic/socket.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm/
socket.h 1 #include <asm-generic/socket.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/
socket.h 1 #include <asm-generic/socket.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/
socket.h 1 #include <asm-generic/socket.h>
  /bionic/libc/include/net/
if_arp.h 1 #include <sys/socket.h>
  /development/ndk/platforms/android-21/include/net/
if_arp.h 1 #include <sys/socket.h>
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/net/
if_arp.h 1 #include <sys/socket.h>
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/net/
if_arp.h 1 #include <sys/socket.h>
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/net/
if_arp.h 1 #include <sys/socket.h>
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/net/
if_arp.h 1 #include <sys/socket.h>
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/net/
if_arp.h 1 #include <sys/socket.h>
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/net/
if_arp.h 1 #include <sys/socket.h>
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DelegatingSocketFactory.java 20 import java.net.Socket;
26 * overriding {@link #configureSocket(java.net.Socket)}.
37 public Socket createSocket() throws IOException {
38 Socket socket = delegate.createSocket(); local
39 configureSocket(socket);
40 return socket;
44 public Socket createSocket(String host, int port) throws IOException, UnknownHostException {
45 Socket socket = delegate.createSocket(host, port) local
53 Socket socket = delegate.createSocket(host, port, localAddress, localPort); local
60 Socket socket = delegate.createSocket(host, port); local
68 Socket socket = delegate.createSocket(host, port, localAddress, localPort); local
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
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 hostname, int port,
35 super(socket, hostname, port, autoClose, sslParameters);
36 if (!socket.isConnected()) {
37 throw new SocketException("Socket is not connected.");
39 this.socket = socket
    [all...]
  /device/lge/hammerhead/sepolicy/
app.te 1 # Grant access to qmux socket that is created by rild
  /device/moto/shamu/sepolicy/
wpa.te 1 # permission for wpa socket which IMS use to communicate
  /libcore/support/src/test/java/tests/util/
DelegatingSSLSocketFactory.java 21 import java.net.Socket;
40 * Invoked after obtaining a socket from the delegate and before returning it to the caller.
44 protected void configureSocket(@SuppressWarnings("unused") SSLSocket socket) {}
57 public Socket createSocket() throws IOException {
58 SSLSocket socket = (SSLSocket) mDelegate.createSocket(); local
59 configureSocket(socket);
60 return socket;
64 public Socket createSocket(Socket s, String host, int port, boolean autoClose)
66 SSLSocket socket = (SSLSocket) mDelegate.createSocket(s, host, port, autoClose) local
73 SSLSocket socket = (SSLSocket) mDelegate.createSocket(host, port); local
81 SSLSocket socket = (SSLSocket) mDelegate.createSocket(host, port, localHost, localPort); local
88 SSLSocket socket = (SSLSocket) mDelegate.createSocket(host, port); local
96 SSLSocket socket = local
    [all...]
  /system/bt/osi/src/
socket.c 27 #include <sys/socket.h>
35 #include "osi/include/socket.h"
54 LOG_ERROR("%s unable to allocate memory for socket.", __func__);
58 ret->fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
60 LOG_ERROR("%s unable to create socket: %s", __func__, strerror(errno));
84 LOG_ERROR("%s unable to allocate memory for socket.", __func__);
92 void socket_free(socket_t *socket) {
93 if (!socket)
96 socket_unregister(socket);
97 close(socket->fd)
223 socket_t *socket = (void *)context; local
230 socket_t *socket = (void *)context; local
    [all...]
  /development/tools/axl/
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/lldb/test/functionalities/connect_remote/
EchoServer.py 5 Taken from http://docs.python.org/library/socket.html#example.
8 import socket namespace
12 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  /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...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
SocketChannelTest.java 23 import java.net.Socket;
98 /** Checks that closing a Socket's output stream also closes the Socket and SocketChannel. */
105 Socket scSocket = sc.socket();
119 /** Checks that closing a Socket's input stream also closes the Socket and SocketChannel. */
126 Socket scSocket = sc.socket();
140 /** Checks the state of the SocketChannel and associated Socket after open() *
146 Socket socket = sc.socket(); local
184 Socket socket = sc.socket(); local
216 Socket socket = sc.socket(); local
    [all...]
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
ClientSocketHandler.java 10 import java.net.Socket;
26 Socket socket = new Socket(); local
28 socket.bind(null);
29 socket.connect(new InetSocketAddress(mAddress.getHostAddress(),
32 chat = new ChatManager(socket, handler);
37 socket.close();

Completed in 615 milliseconds

1 2 3 4 5 6 7 8 91011>>