Searched
full:socket (Results
426 -
450 of
4983) sorted by null
<<11121314151617181920>>
/bionic/libc/kernel/uapi/asm-arm64/asm/ |
socket.h | 19 #include <asm-generic/socket.h>
|
/bionic/libc/kernel/uapi/asm-x86/asm/ |
socket.h | 19 #include <asm-generic/socket.h>
|
/cts/suite/audio_quality/test_description/ |
processing_main.py | 20 import socket namespace 151 if justRead == 0: # socket closed 208 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 209 s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) 215 # close the server socket to allow other instance to run
|
/development/ndk/platforms/android-21/arch-arm/include/asm/ |
socket.h | 19 #include <asm-generic/socket.h>
|
/development/ndk/platforms/android-21/arch-arm64/include/asm/ |
socket.h | 19 #include <asm-generic/socket.h>
|
/development/ndk/platforms/android-21/arch-p/include/asm/ |
socket.h | 19 #include <asm-generic/socket.h>
|
/development/ndk/platforms/android-21/arch-x86/include/asm/ |
socket.h | 19 #include <asm-generic/socket.h>
|
/development/ndk/platforms/android-21/arch-x86_64/include/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>
|
/development/samples/KeyChainDemo/src/com/example/android/keychain/ |
SecureWebServer.java | 25 import java.net.Socket; 77 // Create the SSL server socket factory 99 // Create the secure server socket 110 Socket socket = sss.accept(); 116 new InputStreamReader(socket.getInputStream())); 117 PrintWriter out = new PrintWriter(socket 137 socket.close(); 155 // Close the socket
|
/device/moto/shamu/power/ |
power_shamu.c | 20 #include <sys/socket.h> 43 #define BOOST_SOCKET "/dev/socket/mpdecision/pb" 51 client_sockfd = socket(PF_UNIX, SOCK_DGRAM, 0); 75 ALOGE("%s: boost socket not created", __func__); 101 ALOGE("%s: boost socket not created", __func__); 128 ALOGE("%s: boost socket not created", __func__); 159 ALOGE("%s: boost socket not created", __func__); 180 ALOGE("%s: boost socket not created", __func__); 205 ALOGE("%s: boost socket not created", __func__);
|
/device/moto/shamu/sepolicy/ |
qmux.te | 8 # Create sockets under each /dev/socket/qmux_* directory.
|
tcmd.te | 19 # Uses raw socket
|
/external/apache-http/src/org/apache/http/impl/conn/ |
DefaultClientConnectionOperator.java | 36 import java.net.Socket; 80 /** The scheme registry for looking up socket factories. */ 145 Socket sock = plain_sf.createSocket(); 149 Socket connsock = plain_sf.connectSocket(sock, 159 * socket before the creation of the layered socket to 160 * ensure that desired socket options such as 162 * before any I/O is performed on the socket. This 170 Socket layeredsock = layered_sf.createSocket(sock, 235 ") must have layered socket factory.") [all...] |
/external/dhcpcd/ |
ifaddrs.h | 13 #include <sys/socket.h>
|
/external/e2fsprogs/tests/f_filetype/ |
expect.1 | 2 Special (device/socket/fifo/symlink) file (inode 14) has immutable 5 Special (device/socket/fifo/symlink) file (inode 15) has immutable 8 Special (device/socket/fifo/symlink) file (inode 16) has immutable 11 Special (device/socket/fifo/symlink) file (inode 17) has immutable
|
/external/fio/examples/ |
netio.fio | 6 #Use =udp for UDP, =unix for local unix domain socket
|
/external/fio/ |
helpers.c | 3 #include <sys/socket.h>
|
/external/iproute2/include/libiptc/ |
ipt_kernel_headers.h | 16 #include <sys/socket.h>
|
/external/kernel-headers/original/uapi/linux/ |
atalk.h | 6 #include <linux/socket.h>
|
/external/kernel-headers/original/uapi/linux/netfilter_ipv4/ |
ipt_LOG.h | 10 #define IPT_LOG_UID 0x08 /* Log UID owning local socket */
|
/external/kernel-headers/original/uapi/linux/netfilter_ipv6/ |
ip6t_LOG.h | 10 #define IP6T_LOG_UID 0x08 /* Log UID owning local socket */
|
/external/libnl/tests/ |
test-socket-creation.c | 20 nl_perror("Unable to allocate socket");
|
/external/libpcap/ |
README.linux | 9 socket: Address family not supported by protocol 17 Packet socket 33 Packet socket 62 Socket filtering 64 The Linux Socket Filter is derived from the Berkeley Packet Filter. 66 socket and thereby tell the kernel that it should allow or disallow 67 certain types of data to get through the socket. Linux Socket 68 Filtering works on all socket types except TCP for now. See the text
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
IOHandler.java | 50 * Low level Input output to a socket. Caches TCP connections and takes care of re-connecting to 73 private ConcurrentHashMap<String, Socket> socketTable; 82 this.socketTable = new ConcurrentHashMap<String, Socket>(); 86 protected void putSocket(String key, Socket sock) { 91 protected Socket getSocket(String key) { 92 return (Socket) socketTable.get(key); 120 * Creates and binds, if necessary, a socket connected to the specified destination address 123 * @param dst the destination address that the socket would need to connect to. 126 * @param localPort the port that we'd like our socket to bind to (0 for a random port). 137 Socket clientSock = getSocket(key) [all...] |
Completed in 301 milliseconds
<<11121314151617181920>>