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

1234567891011>>

/external/curl/docs/examples/
H A Dresolve.c23 * Use CURLOPT_RESOLVE to feed custom IP addresses for given host name + port
34 struct curl_slist *host = NULL; local
41 host = curl_slist_append(NULL, "example.com:80:127.0.0.1");
45 curl_easy_setopt(curl, CURLOPT_RESOLVE, host);
53 curl_slist_free_all(host);
/external/tensorflow/tensorflow/stream_executor/host/
H A Dhost_platform_id.cc16 #include "tensorflow/stream_executor/host/host_platform_id.h"
20 namespace host { namespace in namespace:perftools::gputools
24 } // namespace host
H A Dhost_platform_id.h23 namespace host { namespace in namespace:perftools::gputools
25 // Opaque and unique identifier for the host platform.
32 } // namespace host
H A Dhost_timer.h25 namespace host { namespace in namespace:perftools::gputools
59 } // namespace host
/external/autotest/contrib/
H A Dprint_host_labels.py15 host = factory.create_host(sys.argv[1]) variable
16 labels = host.get_labels()
/external/ipsec-tools/src/racoon/
H A Dthrottle.h40 struct sockaddr_storage host; member in struct:throttle_entry
/external/jcommander/src/test/java/com/beust/jcommander/
H A DHostPort.java22 public String host; field in class:HostPort
27 return "[Host:" + host + " port:" + port + "]";
/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/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/autotest/frontend/client/src/autotest/afe/
H A DHostDataSource.java33 Host host = Host.fromJsonObject(row);
34 processHost(host);
35 hosts.add(host);
40 protected void processHost(JSONObject host) { argument
41 host.put(LOCKED_TEXT, AfeUtils.getLockedText(host));
43 JSONString jsonPlatform = host.get("platform").isString();
48 JSONArray labels = host.get("labels").isArray();
60 host.put(OTHER_LABELS, new JSONString(labelString.toString()));
63 new JSONArrayList<JSONString>(host
[all...]
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DSSLClientSessionCache.java37 * Gets data from a pre-existing session for a given server host and port.
39 * @param host from {@link javax.net.ssl.SSLSession#getPeerHost()}
42 * @throws NullPointerException if host is null
44 byte[] getSessionData(String host, int port); argument
/external/curl/lib/vauth/
H A Doauth2.c49 * host[in] - The host name(for OAUTHBEARER).
60 const char *host,
69 if(host == NULL && (port == 0 || port == 80))
72 oauth = aprintf("user=%s\1host=%s\1auth=Bearer %s\1\1", user, host,
75 oauth = aprintf("user=%s\1host=%s\1port=%ld\1auth=Bearer %s\1\1", user,
76 host, port, bearer);
58 Curl_auth_create_oauth_bearer_message(struct Curl_easy *data, const char *user, const char *host, const long port, const char *bearer, char **outptr, size_t *outlen) 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/libmicrohttpd/src/microspdy/
H A Dalstructures.h63 * called host as in HTTP
65 char *host; member in struct:SPDY_Request
/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

Completed in 683 milliseconds

1234567891011>>