Home
last modified time | relevance | path

Searched defs:port (Results 1 – 25 of 1149) sorted by relevance

12345678910>>...46

/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/
Dserialposix.py36 def device(port): argument
43 def set_special_baudrate(port, baudrate): argument
97 def device(port): argument
100 def set_special_baudrate(port, baudrate): argument
119 def device(port): argument
122 def set_special_baudrate(port, baudrate): argument
130 def device(port): argument
133 def set_special_baudrate(port, baudrate): argument
143 def set_special_baudrate(port, baudrate): argument
150 def set_special_baudrate(port, baudrate): argument
[all …]
/external/nist-sip/java/gov/nist/core/net/
DNetworkLayer.java57 public ServerSocket createServerSocket(int port, int backlog, in createServerSocket()
69 public SSLServerSocket createSSLServerSocket(int port, int backlog, in createSSLServerSocket()
80 public Socket createSocket(InetAddress address, int port) throws IOException; in createSocket()
91 …public Socket createSocket(InetAddress address, int port, InetAddress localAddress) throws IOExcep… in createSocket()
109 public Socket createSocket(InetAddress address, int port, in createSocket()
121 public SSLSocket createSSLSocket(InetAddress address, int port) throws IOException; in createSSLSocket()
132 …public SSLSocket createSSLSocket(InetAddress address, int port, InetAddress localAddress) throws I… in createSSLSocket()
150 public DatagramSocket createDatagramSocket(int port, InetAddress laddr) in createDatagramSocket()
DDefaultNetworkLayer.java69 public ServerSocket createServerSocket(int port, int backlog, in createServerSocket()
74 public Socket createSocket(InetAddress address, int port) in createSocket()
83 public DatagramSocket createDatagramSocket(int port, InetAddress laddr) in createDatagramSocket()
98 public SSLServerSocket createSSLServerSocket(int port, int backlog, in createSSLServerSocket()
105 public SSLSocket createSSLSocket(InetAddress address, int port) in createSSLSocket()
111 public SSLSocket createSSLSocket(InetAddress address, int port, in createSSLSocket()
117 public Socket createSocket(InetAddress address, int port, in createSocket()
141 public Socket createSocket(InetAddress address, int port, in createSocket()
DSslNetworkLayer.java88 public ServerSocket createServerSocket(int port, int backlog, in createServerSocket()
93 public Socket createSocket(InetAddress address, int port) in createSocket()
102 public DatagramSocket createDatagramSocket(int port, InetAddress laddr) in createDatagramSocket()
108 public SSLServerSocket createSSLServerSocket(int port, int backlog, in createSSLServerSocket()
115 public SSLSocket createSSLSocket(InetAddress address, int port) in createSSLSocket()
121 public SSLSocket createSSLSocket(InetAddress address, int port, in createSSLSocket()
127 public Socket createSocket(InetAddress address, int port, in createSocket()
151 public Socket createSocket(InetAddress address, int port, in createSocket()
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
DSSLEngineTest.java55 int port = 1010; in test02() local
58 assertEquals(e.getPeerPort(), port); in test02() local
70 int port = 8080; in test03() local
73 assertEquals(e.getPeerPort(), port); in test03() local
93 int port = 8080; in testWrap01() local
121 int port = 8080; in testWrap02() local
154 int port = 8080; in testWrap03() local
184 int port = 8080; in testWrap04() local
200 int port = 8080; in testWrap05() local
225 int port = 8080; in testUnwrap01() local
[all …]
/external/jcommander/src/test/java/com/beust/jcommander/
DPositiveIntegerTest.java13 private int port = 0; in validateTest() field in PositiveIntegerTest.Arg
25 private int port = 0; in validateTest2() field in PositiveIntegerTest.Arg
36 private int port = 0; in validateTest3() field in PositiveIntegerTest.Arg
47 private int port = 0; in validateTest4() field in PositiveIntegerTest.Arg
58 private int port = 0; in validateTest5() field in PositiveIntegerTest.Arg
/external/jmdns/src/javax/jmdns/
DServiceInfo.java79 …public static ServiceInfo create(final String type, final String name, final int port, final Strin… in create()
98 …o create(final String type, final String name, final String subtype, final int port, final String … in create()
119 …public static ServiceInfo create(final String type, final String name, final int port, final int w… in create()
142 …o create(final String type, final String name, final String subtype, final int port, final int wei… in create()
163 …public static ServiceInfo create(final String type, final String name, final int port, final int w… in create()
186 …o create(final String type, final String name, final String subtype, final int port, final int wei… in create()
207 …public static ServiceInfo create(final String type, final String name, final int port, final int w… in create()
230 …o create(final String type, final String name, final String subtype, final int port, final int wei… in create()
253 …public static ServiceInfo create(final String type, final String name, final int port, final int w… in create()
278 …o create(final String type, final String name, final String subtype, final int port, final int wei… in create()
[all …]
/external/autotest/server/cros/servo/
Dpd_console.py106 def execute_pd_state_cmd(self, port): argument
135 def get_pd_state(self, port): argument
145 def get_pd_port(self, port): argument
154 def get_pd_role(self, port): argument
163 def get_pd_flags(self, port): argument
251 def is_pd_flag_set(self, port, key): argument
265 def is_pd_connected(self, port): argument
303 def _verify_plankton_connection(self, port): argument
/external/autotest/client/site_tests/usbpd_GFU/
Dusbpd_GFU.py65 def _is_gfu(self, port): argument
74 def _is_in_rw(self, port): argument
95 def _modify_rw(self, port, rw=None, tries=3): argument
145 def _test_update(self, port, rw=None, tries=3): argument
211 def _test_rw_rollback(self, port, fw_dict): argument
229 def _test_ro_only(self, port, ro_reps): argument
/external/conscrypt/src/compat/java/org/conscrypt/
DBaseOpenSSLSocketAdapterFactory.java49 public Socket createSocket(String hostname, int port) in createSocket()
55 public Socket createSocket(String hostname, int port, InetAddress localHost, int localPort) in createSocket()
61 public Socket createSocket(InetAddress address, int port) throws IOException { in createSocket()
67 int port, in createSocket()
76 public Socket createSocket(Socket s, String hostname, int port, boolean autoClose) in createSocket()
/external/conscrypt/src/main/java/org/conscrypt/
DOpenSSLSocketFactoryImpl.java67 public Socket createSocket(String hostname, int port) throws IOException, UnknownHostException { in createSocket()
72 public Socket createSocket(String hostname, int port, InetAddress localHost, int localPort) in createSocket()
82 public Socket createSocket(InetAddress address, int port) throws IOException { in createSocket()
88 int port, in createSocket()
100 public Socket createSocket(Socket s, String hostname, int port, boolean autoClose) in createSocket()
DClientSessionContext.java52 int port = session.getPeerPort(); in sessionRemoved() local
69 public SSLSession getSession(String host, int port) { in getSession()
105 int port = session.getPeerPort(); in putSession() local
126 final int port; field in ClientSessionContext.HostAndPort
128 HostAndPort(String host, int port) { in HostAndPort()
/external/guava/guava/src/com/google/common/net/
DHostAndPort.java75 private final int port; field in HostAndPort
80 private HostAndPort(String host, int port, boolean hasBracketlessColons) { in HostAndPort()
133 public static HostAndPort fromParts(String host, int port) { in fromParts()
134 checkArgument(isValidPort(port), "Port out of range: %s", port); in fromParts() local
190 int port = NO_PORT; in fromString() local
311 private static boolean isValidPort(int port) { in isValidPort()
/external/libevent/
Devent_iocp.c65 struct event_iocp_port *port = _port; in loop() local
101 event_iocp_port_associate(struct event_iocp_port *port, evutil_socket_t fd, in event_iocp_port_associate()
177 struct event_iocp_port *port; in event_iocp_port_launch() local
226 _event_iocp_port_unlock_and_free(struct event_iocp_port *port) in _event_iocp_port_unlock_and_free()
236 event_iocp_notify_all(struct event_iocp_port *port) in event_iocp_notify_all()
249 event_iocp_shutdown(struct event_iocp_port *port, long waitMsec) in event_iocp_shutdown()
276 struct event_iocp_port *port, struct event_overlapped *o, in event_iocp_activate_overlapped()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DDelegatingSSLSocketFactory.java45 public SSLSocket createSocket(String host, int port) throws IOException, UnknownHostException { in createSocket()
51 public SSLSocket createSocket(String host, int port, InetAddress localAddress, int localPort) in createSocket()
58 public SSLSocket createSocket(InetAddress host, int port) throws IOException { in createSocket()
64 public SSLSocket createSocket(InetAddress host, int port, InetAddress localAddress, int localPort) in createSocket()
81 public SSLSocket createSocket(Socket socket, String host, int port, boolean autoClose) in createSocket()
DDelegatingSocketFactory.java43 public Socket createSocket(String host, int port) throws IOException, UnknownHostException { in createSocket()
49 public Socket createSocket(String host, int port, InetAddress localAddress, int localPort) in createSocket()
56 public Socket createSocket(InetAddress host, int port) throws IOException { in createSocket()
62 public Socket createSocket(InetAddress host, int port, InetAddress localAddress, int localPort) in createSocket()
/external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/
DSocketFactoryTest.java86 public Socket createSocket(String host, int port) throws IOException, UnknownHostException { in createSocket()
91 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) in createSocket()
97 public Socket createSocket(InetAddress host, int port) throws IOException { in createSocket()
102 … public Socket createSocket(InetAddress address, int port, InetAddress localAddress, int localPort) in createSocket()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/tools/
DExecDumpClientTest.java109 int port = createExecServer(); in testDump() local
121 int port = createExecServer(); in testReset() local
124 client.dump((String) null, port); in testReset() local
132 final int port = server.getLocalPort(); in getFreePort() local
/external/nist-sip/java/gov/nist/javax/sip/
DListeningPointImpl.java64 int port; field in ListeningPointImpl
91 public static String makeKey(String host, int port, String transport) { in makeKey()
130 int port, in ListeningPointImpl()
228 int port = this.getPort(); in createContactHeader() local
246 public void sendHeartbeat(String ipAddress, int port) throws IOException { in sendHeartbeat()
/external/libchrome/base/mac/
Dscoped_mach_port.cc14 void SendRightTraits::Free(mach_port_t port) { in Free()
21 void ReceiveRightTraits::Free(mach_port_t port) { in Free()
29 void PortSetTraits::Free(mach_port_t port) { in Free()
/external/autotest/server/hosts/
Drpc_server_tracker.py44 def _setup_rpc(self, port, command_name, remote_pid=None): argument
86 def xmlrpc_connect(self, command, port, command_name=None, argument
171 def jsonrpc_connect(self, port): argument
203 def disconnect(self, port): argument
/external/libmicrohttpd/src/testcurl/
Dperf_get_concurrent.c163 do_gets (int port) in do_gets()
233 testInternalGet (int port, int poll_flag) in testInternalGet()
250 testMultithreadedGet (int port, int poll_flag) in testMultithreadedGet()
266 testMultithreadedPoolGet (int port, int poll_flag) in testMultithreadedPoolGet()
283 testExternalGet (int port) in testExternalGet()
337 int port = 1081; in main() local
/external/autotest/client/tests/kvm/scripts/
Dvirtio_console_guest.py267 def __init__(self, port, event, length): argument
332 def poll(self, port, expected, timeout=500): argument
353 def lseek(self, port, pos, how): argument
376 def blocking(self, port, mode=False): argument
427 def get_sigio_poll_return(self, port): argument
444 def set_pool_want_return(self, port, poll_value): argument
588 def send_loop_init(self, port, length): argument
607 def send(self, port, length=1, mode=True, is_static=False): argument
643 def recv(self, port, length=1, buffer=1024, mode=True): argument
671 def clean_port(self, port, buffer=1024): argument
/external/iptables/include/linux/netfilter/
Dnf_conntrack_tuple_common.h18 __be16 port; member
21 __be16 port; member
27 __be16 port; member
30 __be16 port; member
/external/kernel-headers/original/uapi/linux/netfilter/
Dnf_conntrack_tuple_common.h18 __be16 port; member
21 __be16 port; member
27 __be16 port; member
30 __be16 port; member

12345678910>>...46