Searched defs:host (Results 1 - 25 of 435) sorted by relevance

1234567891011>>

/external/ipsec-tools/src/racoon/
H A Dthrottle.h40 struct sockaddr_storage host; member in struct:throttle_entry
/external/libnl/src/
H A Dnl-util-addr.c17 char host[256]; local
26 err = nl_addr_resolve(a, host, sizeof(host));
31 printf("%s\n", host);
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
H A DHostAndPort.java21 * A data-only (transfer) object representing a host (InetAddress) and port number
24 * This class contains two public properties: host (java.net.InetAddress) and port (int).
30 public InetAddress host; field in class:HostAndPort
34 * Construct a new instance with the specified host and port
35 * @param host - the InetAddress host
38 public HostAndPort(InetAddress host, int port) { argument
39 this.host = host;
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/core/util/
H A DHostAndPort.java21 * A data-only (transfer) object representing a host (InetAddress) and port number
24 * This class contains two public properties: host (java.net.InetAddress) and port (int).
30 public InetAddress host; field in class:HostAndPort
34 * Construct a new instance with the specified host and port
35 * @param host - the InetAddress host
38 public HostAndPort(InetAddress host, int port) { argument
39 this.host = host;
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/core/util/
H A DHostAndPort.java21 * A data-only (transfer) object representing a host (InetAddress) and port number
24 * This class contains two public properties: host (java.net.InetAddress) and port (int).
30 public InetAddress host; field in class:HostAndPort
34 * Construct a new instance with the specified host and port
35 * @param host - the InetAddress host
38 public HostAndPort(InetAddress host, int port) { argument
39 this.host = host;
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/core/util/
H A DHostAndPort.java21 * A data-only (transfer) object representing a host (InetAddress) and port number
24 * This class contains two public properties: host (java.net.InetAddress) and port (int).
30 public InetAddress host; field in class:HostAndPort
34 * Construct a new instance with the specified host and port
35 * @param host - the InetAddress host
38 public HostAndPort(InetAddress host, int port) { argument
39 this.host = host;
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/core/util/
H A DHostAndPort.java21 * A data-only (transfer) object representing a host (InetAddress) and port number
24 * This class contains two public properties: host (java.net.InetAddress) and port (int).
30 public InetAddress host; field in class:HostAndPort
34 * Construct a new instance with the specified host and port
35 * @param host - the InetAddress host
38 public HostAndPort(InetAddress host, int port) { argument
39 this.host = host;
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/core/util/
H A DHostAndPort.java21 * A data-only (transfer) object representing a host (InetAddress) and port number
24 * This class contains two public properties: host (java.net.InetAddress) and port (int).
30 public InetAddress host; field in class:HostAndPort
34 * Construct a new instance with the specified host and port
35 * @param host - the InetAddress host
38 public HostAndPort(InetAddress host, int port) { argument
39 this.host = host;
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
H A DDoubleInetAddressNetwork.java22 * A network that always resolves two IP addresses per host. Use this when testing route selection
26 @Override public InetAddress[] resolveInetAddresses(String host) throws UnknownHostException { argument
27 InetAddress[] allInetAddresses = Network.DEFAULT.resolveInetAddresses(host);
H A DSingleInetAddressNetwork.java22 * A network that resolves only one IP address per host. Use this when testing
23 * route selection fallbacks to prevent the host machine's various IP addresses
27 @Override public InetAddress[] resolveInetAddresses(String host) throws UnknownHostException { argument
28 InetAddress[] allInetAddresses = Network.DEFAULT.resolveInetAddresses(host);
/external/apache-http/android/src/android/net/http/
H A DRequestFeeder.java28 Request getRequest(HttpHost host); argument
31 * @return true if a request for this host is available
33 boolean haveRequest(HttpHost host); argument
/external/apache-http/src/org/apache/http/conn/
H A DHttpHostConnectException.java50 private final HttpHost host; field in class:HttpHostConnectException
52 public HttpHostConnectException(final HttpHost host, final ConnectException cause) { argument
53 super("Connection to " + host + " refused");
54 this.host = host;
59 return this.host;
/external/clang/
H A Dclang-host-build.mk34 define transform-host-clang-td-to-out
40 -I $(LLVM_ROOT_PATH)/host/include \
/external/conscrypt/src/main/java/org/conscrypt/
H A DSSLClientSessionCache.java35 * Gets data from a pre-existing session for a given server host and port.
37 * @param host from {@link javax.net.ssl.SSLSession#getPeerHost()}
40 * @throws NullPointerException if host is null
42 public byte[] getSessionData(String host, int port); argument
/external/jmonkeyengine/engine/src/networking/com/jme3/network/
H A DNetworkClient.java52 public void connectToServer( String host, int port, int remoteUdpPort ) throws IOException; argument
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
H A DKeepAliveHttpsTransportSE.java27 private final String host; field in class:KeepAliveHttpsTransportSE
33 public KeepAliveHttpsTransportSE(String host, int port, String file, int timeout) { argument
34 super(host, port, file, timeout);
35 this.host = host;
51 serviceConnection = new HttpsServiceConnectionSEIgnoringConnectionClose(host, port,
/external/lldb/test/pexpect-2.4/examples/
H A Dssh_tunnel.py3 """This starts an SSH tunnel to a given host. If the SSH process ever dies then
21 tunnel_command = 'ssh -C -N -f -L 25:127.0.0.1:25 -L 143:127.0.0.1:143 -L 110:127.0.0.1:110 %(user)@%(host)'
22 host = raw_input('Hostname: ') variable
68 #tunnel_command = 'ssh -C -n -L 25:%(host)s:25 -L 110:%(host)s:110 %(user)s@%(host)s -f nothing.sh'
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/socket/
H A DDefaultSocketFactory.java32 * Create a new Socket instance for the specified host and port.
33 * @param host - the IP address of the host endpoint to which the socket is connect
40 public Socket createSocket(InetAddress host, int port) throws IOException { argument
41 return new Socket(host, port);
H A DSocketFactory.java33 * Create a new Socket instance for the specified host and port.
34 * @param host - the IP address of the host endpoint to which the socket is connect
39 public Socket createSocket(InetAddress host, int port) throws IOException; argument
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/socket/
H A DDefaultSocketFactory.java32 * Create a new Socket instance for the specified host and port.
33 * @param host - the IP address of the host endpoint to which the socket is connect
40 public Socket createSocket(InetAddress host, int port) throws IOException { argument
41 return new Socket(host, port);
H A DSocketFactory.java33 * Create a new Socket instance for the specified host and port.
34 * @param host - the IP address of the host endpoint to which the socket is connect
39 public Socket createSocket(InetAddress host, int port) throws IOException; argument
/external/mockftpserver/tags/1.0/src/main/java/org/mockftpserver/core/socket/
H A DDefaultSocketFactory.java32 * Create a new Socket instance for the specified host and port.
33 * @param host - the IP address of the host endpoint to which the socket is connect
40 public Socket createSocket(InetAddress host, int port) throws IOException { argument
41 return new Socket(host, port);
H A DSocketFactory.java33 * Create a new Socket instance for the specified host and port.
34 * @param host - the IP address of the host endpoint to which the socket is connect
39 public Socket createSocket(InetAddress host, int port) throws IOException; argument
/external/mockftpserver/tags/1.1/src/main/java/org/mockftpserver/core/socket/
H A DDefaultSocketFactory.java32 * Create a new Socket instance for the specified host and port.
33 * @param host - the IP address of the host endpoint to which the socket is connect
40 public Socket createSocket(InetAddress host, int port) throws IOException { argument
41 return new Socket(host, port);
H A DSocketFactory.java33 * Create a new Socket instance for the specified host and port.
34 * @param host - the IP address of the host endpoint to which the socket is connect
39 public Socket createSocket(InetAddress host, int port) throws IOException; argument

Completed in 667 milliseconds

1234567891011>>