Home
last modified time | relevance | path

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

12345678910>>...27

/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/webkit/Source/gyp/
Dconfigure54 def _gyp_file_for_port(self, port): argument
60 def inputs(self, port): argument
67 def _output_for_port(self, port): argument
74 def output(self, port): argument
77 def should_generate(self, port): argument
87 def generate(self, port): argument
107 def format_for_port(port): argument
120 def projects_to_generate(port): argument
/external/grub/netboot/
Dlinux-asm-io.h127 #define outb(val,port) \ argument
132 #define inb(port) \ argument
137 #define outb_p(val,port) \ argument
142 #define inb_p(port) \ argument
147 #define outw(val,port) \ argument
152 #define inw(port) \ argument
157 #define outw_p(val,port) \ argument
162 #define inw_p(port) \ argument
167 #define outl(val,port) \ argument
172 #define inl(port) \ argument
[all …]
/external/smack/src/org/jivesoftware/smack/proxy/
DDirectSocketFactory.java43 public Socket createSocket(String host, int port) in createSocket()
52 public Socket createSocket(String host ,int port, InetAddress localHost, in createSocket()
59 public Socket createSocket(InetAddress host, int port) in createSocket()
67 public Socket createSocket( InetAddress address, int port, in createSocket()
DSocks4ProxySocketFactory.java43 public Socket createSocket(String host, int port) in createSocket()
50 public Socket createSocket(String host ,int port, InetAddress localHost, in createSocket()
57 public Socket createSocket(InetAddress host, int port) in createSocket()
63 public Socket createSocket( InetAddress address, int port, in createSocket()
71 private Socket socks4ProxifiedSocket(String host, int port) in socks4ProxifiedSocket()
DHTTPProxySocketFactory.java50 public Socket createSocket(String host, int port) in createSocket()
56 public Socket createSocket(String host ,int port, InetAddress localHost, in createSocket()
63 public Socket createSocket(InetAddress host, int port) in createSocket()
70 public Socket createSocket( InetAddress address, int port, in createSocket()
77 private Socket httpProxifiedSocket(String host, int port) in httpProxifiedSocket()
DSocks5ProxySocketFactory.java43 public Socket createSocket(String host, int port) in createSocket()
49 public Socket createSocket(String host ,int port, InetAddress localHost, in createSocket()
58 public Socket createSocket(InetAddress host, int port) in createSocket()
66 public Socket createSocket( InetAddress address, int port, in createSocket()
75 private Socket socks5ProxifiedSocket(String host, int port) in socks5ProxifiedSocket()
/external/kernel-headers/original/asm-arm/
Dide.h29 #define __ide_mm_insw(port,addr,len) readsw(port,addr,len) argument
30 #define __ide_mm_insl(port,addr,len) readsl(port,addr,len) argument
31 #define __ide_mm_outsw(port,addr,len) writesw(port,addr,len) argument
32 #define __ide_mm_outsl(port,addr,len) writesl(port,addr,len) argument
/external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/
DSocketFactoryTest.java85 public Socket createSocket(String host, int port) throws IOException, UnknownHostException { in createSocket()
90 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) in createSocket()
96 public Socket createSocket(InetAddress host, int port) throws IOException { in createSocket()
101 … public Socket createSocket(InetAddress address, int port, InetAddress localAddress, int localPort) in createSocket()
DServerSocketFactoryTest.java80 public ServerSocket createServerSocket(int port) throws IOException, UnknownHostException { in createServerSocket()
85 public ServerSocket createServerSocket(int port, int backlog) in createServerSocket()
91 …public ServerSocket createServerSocket(int port, int backlog, InetAddress ifAddress) throws IOExce… in createServerSocket()
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
DSSLEngineTest.java56 int port = 1010; in test02() local
59 assertEquals(e.getPeerPort(), port); in test02() local
71 int port = 8080; in test03() local
74 assertEquals(e.getPeerPort(), port); in test03() local
94 int port = 8080; in testWrap01() local
122 int port = 8080; in testWrap02() local
155 int port = 8080; in testWrap03() local
186 int port = 8080; in testWrap04() local
202 int port = 8080; in testWrap05() local
227 int port = 8080; in testUnwrap01() local
[all …]
/external/guava/guava/src/com/google/common/net/
DHostAndPort.java71 private final int port; field in HostAndPort
76 private HostAndPort(String host, int port, boolean hasBracketlessColons) { in HostAndPort()
129 public static HostAndPort fromParts(String host, int port) { in fromParts()
173 int port = NO_PORT; in fromString() local
262 private static boolean isValidPort(int port) { in isValidPort()
/external/clang/tools/scan-view/
Dscan-view33 def start_browser(port, options): argument
56 def run(port, options, root): argument
68 def port_is_open(port): argument
/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/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/iptables/include/net/netfilter/
Dnf_conntrack_tuple.h38 __be16 port; member
41 __be16 port; member
47 __be16 port; member
50 __be16 port; member
79 __be16 port; member
82 __be16 port; member
88 __be16 port; member
91 __be16 port; member
/external/webkit/Source/WebCore/bindings/js/
DJSMessageChannelCustom.cpp40 if (MessagePort* port = m_impl->port1()) in markChildren() local
43 if (MessagePort* port = m_impl->port2()) in markChildren() local
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowIntentFilterAuthorityEntry.java10 private int port; field in ShadowIntentFilterAuthorityEntry
12 public void __constructor__(String host, String port) { in __constructor__()
/external/quake/quake/src/WinQuake/
Dvregset.cpp32 void loutportb (int port, int val) in loutportb()
45 int port, temp0, temp1, temp2; in VideoRegisterSet() local
/external/arduino/hardware/arduino/cores/arduino/
Dwiring_digital.c33 uint8_t port = digitalPinToPort(pin); in pinMode() local
128 uint8_t port = digitalPinToPort(pin); in digitalWrite() local
156 uint8_t port = digitalPinToPort(pin); in digitalRead() local
/external/apache-http/src/org/apache/http/impl/cookie/
DRFC2965PortAttributeHandler.java91 private static boolean portMatch(int port, int[] ports) { in portMatch()
131 int port = origin.getPort(); in validate() local
154 int port = origin.getPort(); in match() local
/external/jmonkeyengine/engine/src/networking/com/jme3/network/
DNetworkClient.java52 public void connectToServer( String host, int port, int remoteUdpPort ) throws IOException; in connectToServer()
65 …public void connectToServer( InetAddress address, int port, int remoteUdpPort ) throws IOException; in connectToServer()
/external/javassist/src/main/javassist/
DURLClassPath.java30 protected int port; field in URLClassPath
59 public URLClassPath(String host, int port, in URLClassPath()
129 public static byte[] fetchClass(String host, int port, in fetchClass()
161 private static URLConnection fetchClass0(String host, int port, in fetchClass0()

12345678910>>...27