Searched defs:host (Results 126 - 150 of 435) sorted by relevance

1234567891011>>

/external/valgrind/coregrind/
H A Dpub_core_transtab.h49 Addr host; member in struct:__anon16233
/external/apache-harmony/jdwp/
H A DAndroid_debug_config.mk43 # The lists of ABIs supported on host and target.
76 # Define a JDWP host rule
80 # $(3) extra dependency rule (ex: run-jdwp-tests-host-all64)
81 define define-jdwp-host-rule
85 $(hide) echo "Running JDWP $(1)-bit host tests"
92 # Declare all JDWP host rules
95 define declare-jdwp-host-rule
96 # Declare standalone host rule for the given ABI.
97 $(eval $(call define-jdwp-host-rule,$(1),run-jdwp-tests-host
[all...]
/external/apache-http/src/org/apache/http/client/utils/
H A DURIUtils.java60 * @param host
80 final String host,
87 if (host != null) {
92 buffer.append(host);
116 * A convenience method for creating a new {@link URI} whose scheme, host
117 * and port are taken from the target host, but whose path, query and
124 * Contains the scheme, host and port to use.
78 createURI( final String scheme, final String host, int port, final String path, final String query, final String fragment) argument
/external/apache-http/src/org/apache/http/conn/
H A DMultihomePlainSocketFactory.java92 * given host name resolves to. If connection to all addresses fail, the
96 * @param host Host name to connect to
105 public Socket connectSocket(Socket sock, String host, int port, argument
110 if (host == null) {
111 throw new IllegalArgumentException("Target host may not be null.");
133 InetAddress[] inetadrs = InetAddress.getAllByName(host);
/external/apache-http/src/org/apache/http/conn/scheme/
H A DSchemeRegistry.java93 * Obtains the scheme for a host.
94 * Convenience method for <code>getScheme(host.getSchemeName())</pre>
96 * @param host the host for which to obtain the scheme
98 * @return the scheme for the given host, never <code>null</code>
103 public synchronized final Scheme getScheme(HttpHost host) { argument
104 if (host == null) {
107 return getScheme(host.getSchemeName());
H A DPlainSocketFactory.java89 public Socket connectSocket(Socket sock, String host, int port, argument
94 if (host == null) {
95 throw new IllegalArgumentException("Target host may not be null.");
119 remoteAddress = new InetSocketAddress(this.nameResolver.resolve(host), port);
121 remoteAddress = new InetSocketAddress(host, port);
/external/chromium-libpac/src/
H A Dproxy_resolver_js_bindings.cc36 // Handler for "dnsResolve(host)".
37 virtual bool DnsResolve(const std::string& host, argument
39 return DnsResolveImpl(host, first_ip_address);
42 // Handler for "dnsResolveEx(host)".
43 virtual bool DnsResolveEx(const std::string& host, argument
45 return DnsResolveExImpl(host, ip_address_list);
63 bool DnsResolveImpl(const std::string& host, argument
65 struct hostent* he = gethostbyname(host.c_str());
74 bool DnsResolveExImpl(const std::string& host, argument
76 struct hostent* he = gethostbyname(host
[all...]
/external/conscrypt/src/main/java/org/conscrypt/
H A DClientSessionContext.java24 * Caches client sessions. Indexes by host and port. Users are typically
25 * looking to reuse any session for a given host and port.
30 * Sessions indexed by host and port. Protect from concurrent
52 String host = session.getPeerHost();
54 if (host == null) {
57 HostAndPort hostAndPortKey = new HostAndPort(host, port);
64 * Finds a cached session for the given host name and port.
66 * @param host of server
70 public SSLSession getSession(String host, int port) { argument
71 if (host
126 final String host; field in class:ClientSessionContext.HostAndPort
129 HostAndPort(String host, int port) argument
[all...]
H A DOpenSSLContextImpl.java121 public SSLEngine engineCreateSSLEngine(String host, int port) { argument
127 return new OpenSSLEngineImpl(host, port, p);
/external/jmonkeyengine/engine/src/networking/com/jme3/network/
H A DNetwork.java118 * Creates a Client that communicates with the specified host and port
121 public static Client connectToServer( String host, int hostPort ) throws IOException argument
123 return connectToServer( DEFAULT_GAME_NAME, DEFAULT_VERSION, host, hostPort, hostPort );
127 * Creates a Client that communicates with the specified host and separate TCP and UDP ports
130 public static Client connectToServer( String host, int hostPort, int remoteUdpPort ) throws IOException argument
132 return connectToServer( DEFAULT_GAME_NAME, DEFAULT_VERSION, host, hostPort, remoteUdpPort );
136 * Creates a Client that communicates with the specified host and port
140 String host, int hostPort ) throws IOException
142 return connectToServer( gameName, version, host, hostPort, hostPort );
146 * Creates a Client that communicates with the specified host an
139 connectToServer( String gameName, int version, String host, int hostPort ) argument
161 connectToServer( String gameName, int version, String host, int hostPort, int remoteUdpPort ) argument
179 connectToServer( String host, int port, int remoteUdpPort ) argument
[all...]
/external/nist-sip/java/gov/nist/core/
H A DHostNameParser.java43 * Parser for host names.
171 public Host host() throws ParseException { method in class:HostNameParser
173 dbg_enter("host");
201 lexer.getBuffer() + ": Missing host name",
207 dbg_leave("host");
218 * @return true if the host part of <tt>uriHeader</tt> could be an IPv6
223 // approximately detect the end the host part.
240 String host = uriHeader.substring(0, hostEnd);
242 int firstColonIndex = host.indexOf(Lexer.COLON);
247 int secondColonIndex = host
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DCallIdentifier.java53 * host field
55 protected String host; field in class:CallIdentifier
66 * @param host is the host.
68 public CallIdentifier(String localId, String host) { argument
70 this.host = host;
93 if (host != null) {
94 buffer.append(AT).append(host);
114 if (this.host
180 setHost(String host) argument
[all...]
H A DWarning.java96 * Gets agent host of WarningHeader
97 * @return agent host of WarningHeader
126 * Sets host of WarningHeader
127 * @param host String to set
128 * @throws ParseException if host is not accepted by implementation
130 public void setAgent(String host) throws ParseException { argument
131 if (host == null)
132 throw new NullPointerException("the host parameter in the Warning header is null");
134 this.agent = host;
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPChargingVectorHeader.java49 * icid-gen-addr = "icid-generated-at" EQUAL host
57 * gen-value = token / host / quoted-string
58 * host = hostname / IPv4address / Ipv6reference
93 * <p>TODO: gen-value can be token / host / quoted-string</p>
128 * @param host -- set the icid host value.
130 * @throws ParseException -- if bad host value.
132 public void setICIDGeneratedAt(String host) throws ParseException; argument
/external/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/
H A DOkApacheClient.java116 HttpHost host = (HttpHost) value;
118 if (host != null) {
119 proxy = new Proxy(HTTP, new InetSocketAddress(host.getHostName(), host.getPort()));
163 @Override public HttpResponse execute(HttpHost host, HttpRequest request) throws IOException { argument
164 return execute(host, request, (HttpContext) null);
167 @Override public HttpResponse execute(HttpHost host, HttpRequest request, HttpContext context) argument
184 @Override public <T> T execute(HttpHost host, HttpRequest request, argument
186 return execute(host, request, handler, null);
189 @Override public <T> T execute(HttpHost host, HttpReques argument
[all...]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DFallbackTestClientSocketFactory.java43 @Override public SSLSocket createSocket(Socket s, String host, int port, boolean autoClose) argument
45 SSLSocket socket = super.createSocket(s, host, port, autoClose);
54 @Override public SSLSocket createSocket(String host,int port) throws IOException { argument
55 SSLSocket socket = super.createSocket(host, port);
59 @Override public SSLSocket createSocket(String host,int port, InetAddress localHost, argument
61 SSLSocket socket = super.createSocket(host, port, localHost, localPort);
65 @Override public SSLSocket createSocket(InetAddress host,int port) throws IOException { argument
66 SSLSocket socket = super.createSocket(host, port);
/external/openssh/
H A Daudit-linux.c74 audit_connection_from(const char *host, int port) argument
H A Dsshlogin.c7 * easily use something like login -p -h host -f user, because there are
70 * The host the user logged in from will be returned in buf.
128 const char *host, struct sockaddr *addr, socklen_t addrlen)
135 li = login_alloc_entry(pid, user, host, tty);
144 const char *host, struct sockaddr *addr, socklen_t addrlen)
148 li = login_alloc_entry(pid, user, host, ttyname);
127 record_login(pid_t pid, const char *tty, const char *user, uid_t uid, const char *host, struct sockaddr *addr, socklen_t addrlen) argument
143 record_utmp_only(pid_t pid, const char *ttyname, const char *user, const char *host, struct sockaddr *addr, socklen_t addrlen) argument
/external/apache-http/android/src/android/net/http/
H A DHttpsConnection.java137 HttpsConnection(Context context, HttpHost host, HttpHost proxy, argument
139 super(context, host, requestFeeder);
205 // to add 'host' header unless we want proxy to answer us with a
210 || headerName.equals("host")) {
286 // if we do not have a proxy, we simply connect to the host
H A DIdleCache.java64 HttpHost host, Connection connection) {
69 HttpLog.v("IdleCache size " + mCount + " host " + host);
77 entry.mHost = host;
94 synchronized Connection getConnection(HttpHost host) { argument
101 if (eHost != null && eHost.equals(host)) {
63 cacheConnection( HttpHost host, Connection connection) argument
/external/apache-http/src/org/apache/http/auth/
H A DAuthScope.java38 * The class represents an authentication scope consisting of a host name,
55 * The <tt>null</tt> value represents any host. In the future versions of
76 * Default scope matching any host, port, realm and authentication scheme.
88 /** The host the credentials apply to. */
89 private final String host; field in class:AuthScope
95 * <tt>host</tt>, <tt>port</tt>, <tt>realm</tt>, and
98 * @param host the host the credentials apply to. May be set
100 * any host.
111 public AuthScope(final String host, in argument
134 AuthScope(final String host, int port, final String realm) argument
149 AuthScope(final String host, int port) argument
[all...]
/external/apache-http/src/org/apache/http/client/params/
H A DClientParamBean.java86 public void setVirtualHost (final HttpHost host) { argument
87 params.setParameter(ClientPNames.VIRTUAL_HOST, host);
94 public void setDefaultHost (final HttpHost host) { argument
95 params.setParameter(ClientPNames.DEFAULT_HOST, host);
/external/guava/guava/src/com/google/common/net/
H A DHostAndPort.java34 * An immutable representation of a host and port.
59 * host field (if desired) is the caller's responsibility.
72 private final String host; field in class:HostAndPort
77 /** True if the parsed host has colons, but no surrounding brackets. */
80 private HostAndPort(String host, int port, boolean hasBracketlessColons) { argument
81 this.host = host;
94 return host;
122 * Build a HostAndPort instance from separate host and port values.
127 * @param host th
133 fromParts(String host, int port) argument
151 fromHost(String host) argument
[all...]
/external/javassist/src/main/javassist/tools/web/
H A DViewer.java30 * <ul><code>% java javassist.tools.web.Viewer <i>host port</i> Main arg1, ...</code></ul>
34 * a server http://<i>host</i>:<i>port</i>.
66 "Usage: java javassist.tools.web.Viewer <host> <port> class [args ...]");
72 * @param host server name
75 public Viewer(String host, int p) { argument
76 server = host;
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DTestChatClient.java60 public TestChatClient(String host) throws IOException { argument
61 super("jME3 Test Chat Client - to:" + host);
91 host, TestChatServer.PORT, TestChatServer.UDP_PORT);
104 // Grab a host string from the user
105 String s = getString(null, "Host Info", "Enter chat host:", "localhost");

Completed in 7928 milliseconds

1234567891011>>