/external/valgrind/coregrind/ |
pub_core_transtab.h | 49 Addr host; member in struct:__anon20542
|
/libcore/luni/src/main/java/libcore/net/url/ |
FileHandler.java | 69 String host = url.getHost(); local 70 if (host == null || host.isEmpty() || host.equalsIgnoreCase("localhost")) { 75 URL ftpURL = new URL("ftp", host, url.getFile());
|
/external/apache-harmony/jdwp/ |
Android_debug_config.mk | 26 # Host settings 43 # 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$(1),) [all...] |
/build/core/clang/ |
HOST_x86_64.mk | 57 define convert-to-host-clang-flags 65 $(call convert-to-host-clang-flags,$(HOST_GLOBAL_CFLAGS)) \ 69 $(call convert-to-host-clang-flags,$(HOST_GLOBAL_CONLYFLAGS)) \ 73 $(call convert-to-host-clang-flags,$(HOST_GLOBAL_CPPFLAGS)) \ 77 $(call convert-to-host-clang-flags,$(HOST_GLOBAL_LDFLAGS)) \
|
/external/apache-http/src/org/apache/http/cookie/ |
CookieOrigin.java | 50 private final String host; field in class:CookieOrigin 55 public CookieOrigin(final String host, int port, final String path, boolean secure) { 57 if (host == null) { 59 "Host of origin may not be null"); 61 if (host.trim().length() == 0) { 63 "Host of origin may not be blank"); 72 this.host = host.toLowerCase(Locale.ENGLISH); 83 return this.host; 105 buffer.append(this.host); [all...] |
/external/guava/guava/src/com/google/common/net/ |
HostSpecifier.java | 28 * A syntactically valid host specifier, suitable for use in a URI. 32 * <p>Because this class is intended to represent host specifiers which can 39 * to a real or accessible host. Only syntactic and pattern-based checks are 80 final String host = parsedHost.getHostText(); local 88 addr = InetAddresses.forString(host); 100 final InternetDomainName domain = InternetDomainName.from(host); 107 "Domain name does not have a recognized public suffix: " + host); 128 new ParseException("Invalid host specifier: " + specifier, 0); 168 * Returns a string representation of the host specifier suitable for 169 * inclusion in a URI. If the host specifier is a domain name, th [all...] |
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/ |
HttpsTransportSE.java | 19 private final String host; field in class:HttpsTransportSE 24 public HttpsTransportSE(String host, int port, String file, int timeout) { 25 super(HttpsTransportSE.PROTOCOL + "://" + host + ":" + port + file); 27 + host + ":" + port + file); 28 this.host = host; 41 serviceConnection = new HttpsServiceConnectionSE(host, port, file, timeout);
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_network.c | 115 struct hostent *host = NULL; local 118 host = gethostbyname(hostname); 119 if (!host) 122 memcpy((char *)&sa.sin_addr,host->h_addr_list[0],host->h_length); 123 sa.sin_family= host->h_addrtype; 126 s = socket(host->h_addrtype, SOCK_STREAM, IPPROTO_TCP);
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
CallIdentifier.java | 53 * host field 55 protected String host; field in class:CallIdentifier 66 * @param host is the host. 68 public CallIdentifier(String localId, String host) { 70 this.host = host; 93 if (host != null) { 94 buffer.append(AT).append(host); 114 if (this.host == that.host [all...] |
/external/openssh/ |
auth-rhosts.c | 61 char buf[RBUFLN];/* Must not be larger than host, user, dummy below. */ 86 char *host, *user, *cp; local 111 /* Host name only. */ 115 /* Got both host and user name. */ 125 host = hostbuf; 129 /* Process negated host names, or positive netgroups. */ 130 if (host[0] == '-') { 132 host++; 133 } else if (host[0] == '+') 134 host++ [all...] |
/external/vogar/src/vogar/ |
SshTarget.java | 30 * Runs actions on a remote host using SSH. 34 private final String host; field in class:SshTarget 42 host = hostAndPort.substring(0, colon); 45 host = hostAndPort; 48 deviceFilesystem = new DeviceFilesystem(log, "ssh", "-p", Integer.toString(port), host, "-C"); 56 return Arrays.asList("ssh", "-p", Integer.toString(port), host, "-C"); 64 .args("ssh", "-p", Integer.toString(port), host, "-C", "rm", "-r", file.getPath()) 73 String line = new Command(log, "ssh", "-p", Integer.toString(port), host, "-C", "id") 86 new Command(log, "ssh", "-p", Integer.toString(port), host, 87 "-L", port + ":" + host + ":" + port, "-N").start() [all...] |
/libcore/luni/src/main/java/java/net/ |
ProxySelectorImpl.java | 95 String host = System.getProperty(hostKey); local 96 if (host == null || host.isEmpty()) { 101 return new Proxy(type, InetSocketAddress.createUnresolved(host, port)); 117 * and matches {@code host}. 119 private boolean isNonProxyHost(String host, String nonProxyHosts) { 120 if (host == null || nonProxyHosts == null) { 139 // check whether the host is the nonProxyHosts. 141 return host.matches(pattern);
|
Authenticator.java | 36 private String host; field in class:Authenticator 161 * host name of the connection that requests authentication. 181 thisAuthenticator.host = rHost; 195 * Returns the host name of the connection that requests authentication or 198 * @return name of the requesting host or {@code null}. 201 return host; 211 * host name of the connection that requests authentication. 236 thisAuthenticator.host = rHost;
|
/bionic/tests/ |
netdb_test.cpp | 33 // It's okay for the host argument to be NULL, as long as service isn't. 42 // It's okay for the service argument to be NULL, as long as host isn't. 145 char host[NI_MAXHOST]; local 150 host, sizeof(host), NULL, 0, 0)); 151 ASSERT_STREQ(host, "localhost"); 163 char host[NI_MAXHOST]; local 168 host, sizeof(host), NULL, 0, 0)); 169 VerifyLocalhostName(host); [all...] |
/external/conscrypt/src/main/java/org/conscrypt/ |
ClientSessionContext.java | 24 * 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(); local 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) { 71 if (host == null) 105 String host = session.getPeerHost(); local 126 final String host; field in class:ClientSessionContext.HostAndPort [all...] |
/external/fio/engines/ |
libhdfs.c | 29 char host[256]; member in struct:hdfsio_data 156 hd->fs = hdfsConnect(hd->host, hd->port); 186 /* separate host and port from filename */ 188 sscanf(td->o.filename, "%s%d", hd->host, &(hd->port)); 196 hd->fs = hdfsConnect(hd->host, hd->port);
|
/external/jetty/src/java/org/eclipse/jetty/websocket/ |
WebSocketServletConnectionD00.java | 49 String host = request.getHeader("Host"); local 74 response.addHeader("Sec-WebSocket-Location",(request.isSecure()?"wss://":"ws://") + host + uri); 86 response.addHeader("WebSocket-Location",(request.isSecure()?"wss://":"ws://") + host + uri);
|
/external/linux-tools-perf/src/tools/perf/util/ |
machine.h | 16 /* Native host kernel uses -1 as pid index in machine */ 54 struct machine host; member in struct:machines
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/ |
PortParser.java | 27 * Utility class for parsing host and port values from command arguments.
35 * Parse the host address and port number of an extended address. This encoded format is used by
41 * @param parameter - the single parameter String containing the encoded host and port number
53 throw new CommandSyntaxException("Error parsing host and port number [" + parameter + "]");
58 InetAddress host;
local 60 host = InetAddress.getByName(tokens[2]);
63 throw new CommandSyntaxException("Error parsing host [" + tokens[2] + "]", e);
66 return new HostAndPort(host, port);
74 * of a 32-bit internet host address and a 16-bit TCP port address. This address
79 * where h1 is the high order 8 bits of the internet host address, and p1 is the [all...] |
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/ |
PortCommandHandler.java | 36 * <li>{@link #HOST_KEY} ("host") - the client data host (InetAddress) submitted on the invocation (from parameters 1-4)
46 public static final String HOST_KEY = "host";
63 InetAddress host = parseHost(command.getParameters());
local 65 LOG.debug("host=" + host + " port=" + port);
66 session.setClientDataHost(host);
68 invocationRecord.set(HOST_KEY, host);
77 * of a 32-bit internet host address and a 16-bit TCP port address. This address
82 * where h1 is the high order 8 bits of the internet host address, and p1 is the [all...] |
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/ |
PasvCommandHandlerTest.java | 68 InetAddress host = InetAddress.getByName("196.168.44.55");
local 69 String result = PasvCommandHandler.convertHostAndPortToStringOfBytes(host, PORT);
|
/external/nist-sip/java/gov/nist/core/ |
HostPort.java | 47 // host / ipv4/ ipv6/ 48 /** host field 50 protected Host host; field in class:HostPort 61 host = null; 76 host.encode(buffer); 92 return port == that.port && host.equals(that.host); 95 /** get the Host field 96 * @return host fiel [all...] |
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
HopImpl.java | 54 protected String host; field in class:HopImpl 65 return host + ":" + port + "/" + transport; 69 * Create new hop given host, port and transport. 75 host = hostName; 79 if(host.indexOf(":") >= 0) 80 if(host.indexOf("[") < 0) 81 host = "[" + host + "]"; 90 * @param hop is a hop string in the form of host:port/Transport 104 this.host = hop.substring(0,colon) [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
WebPlatformUrlTestData.java | 41 String host = ""; field in class:WebPlatformUrlTestData 63 host = value;
|
/frameworks/base/core/java/android/net/ |
PacProxySelector.java | 114 String host = hostPort[0]; local 116 return new Proxy(type, InetSocketAddress.createUnresolved(host, port));
|