/external/chromium_org/tools/telemetry/third_party/pyserial/serial/ |
serialjava.py | 68 self.sPort = portId.open("python serial module", 10) 70 self.sPort = None 73 self._instream = self.sPort.getInputStream() 74 self._outstream = self.sPort.getOutputStream() 79 if not self.sPort: 82 self.sPort.enableReceiveTimeout(30) 124 self.sPort.setSerialPortParams(self._baudrate, jdatabits, jstopbits, jparity) 125 self.sPort.setFlowControlMode(jflowin | jflowout) 128 self.sPort.enableReceiveTimeout(self._timeout*1000) 130 self.sPort.disableReceiveTimeout( [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/netfilter_bridge/ |
ebt_ip.h | 10 * added ip-sport and ip-dport 39 uint16_t sport[2]; member in struct:ebt_ip_info
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter_bridge/ |
ebt_ip.h | 10 * added ip-sport and ip-dport 39 uint16_t sport[2]; member in struct:ebt_ip_info
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ |
SocketFactoryTest.java | 60 int sport = new ServerSocket(0).getLocalPort(); local 63 Socket s = sf.createSocket(InetAddress.getLocalHost().getHostName(), sport); 65 assertTrue("Failed to create socket", s.getPort() == sport); 68 sf.createSocket("1.2.3.4hello", sport); 97 int sport = new ServerSocket(0).getLocalPort(); local 100 Socket s = sf.createSocket(InetAddress.getLocalHost(), sport); 102 assertTrue("Failed to create socket", s.getPort() == sport); 128 int sport = new ServerSocket(0).getLocalPort(); local 131 Socket s = sf.createSocket(InetAddress.getLocalHost(), sport, 134 assertTrue("1: Failed to create socket", s.getPort() == sport); 146 sf.createSocket(InetAddress.getLocalHost(), sport, local 154 sf.createSocket(InetAddress.getLocalHost(), sport, local 174 int sport = new ServerSocket(0).getLocalPort(); local 196 sf.createSocket(InetAddress.getLocalHost().getHostName(), sport, local [all...] |
/external/kernel-headers/original/uapi/linux/netfilter_bridge/ |
ebt_ip.h | 10 * added ip-sport and ip-dport 40 __u16 sport[2]; member in struct:ebt_ip_info
|
ebt_ip6.h | 41 __u16 sport[2]; member in union:ebt_ip6_info::__anon27865
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/ |
SSLSocketFactoryTest.java | 66 int sport = startServer("test_createSocket()"); local 72 Socket st = new Socket("localhost", sport); 73 Socket s = sf.createSocket(st, "localhost", sport, false); 76 st = new Socket("localhost", sport); 77 s = sf.createSocket(st, "localhost", sport, true); 82 sf.createSocket(null, "localhost", sport, true); 96 st = new Socket("1.2.3.4hello", sport); 97 s = sf.createSocket(st, "1.2.3.4hello", sport, false);
|
SSLSocketTest.java | 63 int sport = startServer("Cons InetAddress,I"); local 66 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost(), sport); 68 assertEquals(sport, ssl.getPort()); 72 getSSLSocket(InetAddress.getLocalHost(), sport + 1); local 91 int sport = startServer("Cons InetAddress,I,InetAddress,I"); local 93 SSLSocket ssl = getSSLSocket(InetAddress.getLocalHost(), sport, 96 assertEquals(sport, ssl.getPort()); 106 getSSLSocket(InetAddress.getLocalHost(), -1, InetAddress.getLocalHost(), sport + 1); local 111 getSSLSocket(InetAddress.getLocalHost(), sport, InetAddress.getLocalHost(), -1); local 118 InetAddress.getLocalHost(), sport + 1) local 126 getSSLSocket(InetAddress.getLocalHost(), sport, local 138 int sport = startServer("Cons String,I"); local 172 int sport = startServer("Cons String,I,InetAddress,I"); local 194 getSSLSocket(InetAddress.getLocalHost().getHostName(), sport, local 525 int sport; field in class:SSLSocketTest.TestServer [all...] |
/external/iproute2/misc/ |
ssfilter.y | 38 %token HOSTCOND DCOND SCOND DPORT SPORT LEQ GEQ NEQ AUTOBOUND 86 | SPORT GEQ HOSTCOND 90 | SPORT LEQ HOSTCOND 94 | SPORT '>' HOSTCOND 98 | SPORT '<' HOSTCOND 102 | SPORT '=' HOSTCOND 106 | SPORT NEQ HOSTCOND 229 if (strcmp(curtok, "sport") == 0) 230 return SPORT;
|
/external/tcpdump/ |
print-udp.c | 303 udpipaddr_print(const struct ip *ip, int sport, int dport) 315 if (sport == -1) { 322 udpport_string(sport), 327 if (sport != -1) { 329 udpport_string(sport), 337 if (sport == -1) { 344 udpport_string(sport), 349 if (sport != -1) { 351 udpport_string(sport), 366 u_int16_t sport, dport, ulen local [all...] |
print-tcp.c | 160 u_int16_t sport, dport, win, urp; local 185 sport = EXTRACT_16BITS(&tp->th_sport); 195 tcpport_string(sport), 200 tcpport_string(sport), tcpport_string(dport)); 208 tcpport_string(sport), 213 tcpport_string(sport), tcpport_string(dport)); 260 if (sport > dport) 262 else if (sport == dport) { 269 tha.port = dport << 16 | sport; 273 tha.port = sport << 16 | dport [all...] |
/external/libnl/etc/ |
pktloc | 25 tcp.sport u16 tcp+0 41 udp.sport u16 tcp+0
|
/libcore/luni/src/test/java/libcore/java/net/ |
OldSocketTest.java | 74 int sport = startServer("Cons String,I"); local 75 s = new Socket(InetAddress.getLocalHost().getHostName(), sport); 76 assertTrue("Failed to create socket", s.getPort() == sport); 104 socket = new Socket(InetAddress.getByName(null), sport); 115 int sport = startServer("Cons String,I,InetAddress,I"); local 116 s = new Socket(InetAddress.getLocalHost().getHostName(), sport, 118 assertTrue("Failed to create socket", s.getPort() == sport); 122 int sport = startServer("Cons String,I,InetAddress,I"); local 123 Socket s1 = new Socket(InetAddress.getLocalHost(), sport, null, 0); 125 Socket s2 = new Socket(InetAddress.getLocalHost(), sport, null, s1.getLocalPort()) 143 int sport = startServer("Cons String,I,Z"); local 152 int sport = startServer("Cons InetAddress,I"); local 161 int sport = startServer("Cons InetAddress,I,InetAddress,I"); local 168 int sport = startServer("Cons InetAddress,I,Z"); local 177 int sport = startServer("SServer close"); local 195 int sport = startServer("SServer getInetAddress"); local 215 int sport = startServer("SServer getKeepAlive"); local 247 int sport = startServer("SServer getLocAddress"); local 263 int sport = startServer("SServer getLocalPort"); local 274 int sport = startServer("SServer getOutputStream"); local 305 int sport = startServer("SServer getPort"); local 312 int sport = startServer("SServer getSoLinger"); local 339 int sport = startServer("SServer getReceiveBufferSize"); local 363 int sport = startServer("SServer setSendBufferSize"); local 409 int sport = startServer("SServer getTcpNoDelay"); local 439 int sport = startServer("SServer setKeepAlive"); local 485 int sport = startServer("SServer setSendBufferSizeI"); local 508 int sport = startServer("SServer setReceiveBufferSizeI"); local 532 int sport = startServer("SServer setSoLingerZI"); local 557 int sport = startServer("SServer setTcpNoDelayZ"); local 582 int sport = startServer("SServer toString"); local 660 int sport = startServer("SServer getLocSocketAddress"); local 698 int sport = startServer("SServer getLocRemoteAddress"); local [all...] |
/external/iptables/extensions/ |
libxt_dccp.man | 2 [\fB!\fP] \fB\-\-source\-port\fP,\fB\-\-sport\fP \fIport\fP[\fB:\fP\fIport\fP]
|
libxt_udp.c | 18 " --sport ...\n" 29 {.name = "sport", .id = O_SOURCE_PORT, .type = XTTYPE_PORTRC, 132 printf(" --sport %u:%u", 136 printf(" --sport %u",
|
libxt_udp.man | 4 [\fB!\fP] \fB\-\-source\-port\fP,\fB\-\-sport\fP \fIport\fP[\fB:\fP\fIport\fP]
|
libxt_HMARK.man | 14 .B sport 38 \fB\-\-hmark\-sport\-mask\fP \fIvalue\fP
|
libxt_tcp.man | 4 [\fB!\fP] \fB\-\-source\-port\fP,\fB\-\-sport\fP \fIport\fP[\fB:\fP\fIport\fP] 12 \fB\-\-sport\fP
|
libxt_HMARK.c | 26 " --hmark-tuple [src|dst|sport|dport|spi|proto|ct][,...]\n" 33 " --hmark-sport-mask value Mask src port with value\n" 36 " --hmark-sport value OR src port with value\n" 88 { .name = "hmark-sport-mask", 103 { .name = "hmark-sport", 157 } else if (strncasecmp(type, "sport", len) == 0) { 198 "src,dst,sport,dport,proto"); 293 printf("sport-mask 0x%x ", htons(info->port_mask.p16.src)); 299 printf("sport 0x%x ", htons(info->port_set.p16.src)); 356 printf(" --hmark-sport-mask 0x%04x" [all...] |
libxt_nfacct.man | 17 iptables \-I INPUT \-p tcp \-\-sport 80 \-m nfacct \-\-nfacct\-name http\-traffic
|
/system/core/libnetutils/ |
packet.h | 22 uint32_t saddr, uint32_t daddr, uint32_t sport, uint32_t dport);
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
flipcase.good | 19 09 - 02 - 2002 01.00 Studio Sport Italia 1 Sport
|
flipcase.inp | 19 09 - 02 - 2002 01.00 Studio SpORT Italia 1 SporT
|
/bionic/libc/kernel/uapi/linux/netfilter_bridge/ |
ebt_ip.h | 44 __u16 sport[2]; member in struct:ebt_ip_info
|
/development/ndk/platforms/android-L/include/linux/netfilter_bridge/ |
ebt_ip.h | 44 __u16 sport[2]; member in struct:ebt_ip_info
|