/external/nist-sip/java/gov/nist/core/net/ |
D | NetworkLayer.java | 57 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()
|
D | DefaultNetworkLayer.java | 69 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()
|
D | SslNetworkLayer.java | 88 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/chromium-trace/catapult/telemetry/third_party/pyserial/serial/ |
D | serialposix.py | 36 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/jcommander/src/test/java/com/beust/jcommander/ |
D | PositiveIntegerTest.java | 13 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/conscrypt/src/compat/java/org/conscrypt/ |
D | BaseOpenSSLSocketAdapterFactory.java | 49 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/autotest/client/site_tests/usbpd_GFU/ |
D | usbpd_GFU.py | 65 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/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/ |
D | SSLEngineTest.java | 55 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/conscrypt/src/main/java/org/conscrypt/ |
D | OpenSSLSocketFactoryImpl.java | 67 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()
|
D | ClientSessionContext.java | 52 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/autotest/server/cros/servo/ |
D | pd_console.py | 106 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/guava/guava/src/com/google/common/net/ |
D | HostAndPort.java | 75 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/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ |
D | SocketFactoryTest.java | 86 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()
|
D | ServerSocketFactoryTest.java | 81 public ServerSocket createServerSocket(int port) throws IOException, UnknownHostException { in createServerSocket() 86 public ServerSocket createServerSocket(int port, int backlog) in createServerSocket() 92 …public ServerSocket createServerSocket(int port, int backlog, InetAddress ifAddress) throws IOExce… in createServerSocket()
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
D | DelegatingSSLSocketFactory.java | 45 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()
|
D | DelegatingSocketFactory.java | 43 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/jmdns/src/javax/jmdns/ |
D | ServiceInfo.java | 79 …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/libchrome/base/mac/ |
D | scoped_mach_port.cc | 14 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/jacoco/org.jacoco.core.test/src/org/jacoco/core/tools/ |
D | ExecDumpClientTest.java | 109 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/libevent/ |
D | event_iocp.c | 65 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/nist-sip/java/gov/nist/javax/sip/ |
D | ListeningPointImpl.java | 64 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/autotest/server/hosts/ |
D | rpc_server_tracker.py | 44 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/clang/tools/scan-view/bin/ |
D | scan-view | 37 def start_browser(port, options): argument 62 def run(port, options, root): argument 82 def port_is_open(port): argument
|
/external/iptables/include/linux/netfilter/ |
D | nf_conntrack_tuple_common.h | 18 __be16 port; member 21 __be16 port; member 27 __be16 port; member 30 __be16 port; member
|
/external/kernel-headers/original/uapi/linux/netfilter/ |
D | nf_conntrack_tuple_common.h | 18 __be16 port; member 21 __be16 port; member 27 __be16 port; member 30 __be16 port; member
|