/sdk/apps/NotificationStudio/libs/ |
android-support-v4.jar | |
/external/apache-http/src/org/apache/http/impl/client/ |
DefaultRequestDirector.java | 391 // Use virtual host if set 460 // If we have a direct route to the target host 569 * @param target the target host for the request. 592 // If the URI was malformed, make it obvious where there's no host component 594 String host = null; local 600 host = uri.getHost(); 603 throw new IllegalStateException( "Target host must not be null, or set in parameters." 604 + " scheme=" + scheme + ", host=" + host + ", path=" + path); 881 String host = target.getHostName(); local [all...] |
/external/jetty/src/java/org/eclipse/jetty/client/ |
AbstractHttpConnection.java | 195 String host = _destination.getAddress().getHost(); local 200 absoluteURI.append(host);
|
/external/libvncserver/libvncserver/ |
websockets.c | 240 char *path = NULL, *host = NULL, *origin = NULL, *protocol = NULL; local 305 } else if ((strncasecmp("host: ", line, min(llen,6))) == 0) { 306 host = line+6; 308 /* rfbLog("Got host: %s\n", host); */ 342 if (!(path && host && (origin || sec_ws_origin))) { 394 host, path, prefix, protocol, trailer);
|
/external/linux-tools-perf/src/tools/perf/ |
builtin-trace.c | 430 struct machine host; member in struct:trace 509 machine__init(&trace->host, "", HOST_KERNEL_ID); 510 machine__create_kernel_maps(&trace->host); 515 &trace->host); 518 &trace->host); 707 thread = machine__findnew_thread(&trace->host, sample->pid, 759 thread = machine__findnew_thread(&trace->host, sample->pid, 816 struct thread *thread = machine__findnew_thread(&trace->host, 997 trace__process_event(trace, &trace->host, event); 1129 for (nd = rb_first(&trace->host.threads); nd; nd = rb_next(nd)) [all...] |
/external/nist-sip/java/gov/nist/javax/sip/ |
SipProviderImpl.java | 754 // set the host to the via parameter. Else set it to the 755 // Via host. 756 String host = via.getReceived(); local 758 if (host == null) 759 host = via.getHost(); 774 if (host.indexOf(":") > 0) 775 if (host.indexOf("[") < 0) 776 host = "[" + host + "]"; 779 new HopImpl(host, port, transport)) [all...] |
/external/nist-sip/java/gov/nist/javax/sip/address/ |
SipUri.java | 164 // For two URIs to be equal, the user, password, host, and port 266 * getUser@host 267 * @return user@host portion of the uri (null if none exists). 276 String host = authority.getHost().encode(); local 283 return s.append(host).toString(); 287 * getUser@host 288 * @return user@host portion of the uri (null if none exists). 295 String host = authority.getHost().encode(); local 305 return s.append(host).append(COLON).append(port).toString(); 307 return s.append(host).toString() 605 Host host = new Host(); local [all...] |
/external/openssh/ |
channels.h | 87 char *host; member in struct:channel_connect 125 /* path for unix domain sockets, or host name for forwards */
|
scp.c | 122 int do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout); 123 int do_cmd2(char *host, char *remuser, char *cmd, int fdin, int fdout); 225 * given host. This returns < 0 if execution fails, and >= 0 otherwise. This 230 do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout) 236 "Executing: program %s host %s, user %s, command %s\n", 237 ssh_program, host, 261 /* Fork a child to execute the command on the remote host using ssh. */ 278 addargs(&args, "%s", host); 304 do_cmd2(char *host, char *remuser, char *cmd, int fdin, int fdout) 311 "Executing: 2nd program %s host %s, user %s, command %s\n" 575 char *bp, *host, *src, *suser, *thost, *tuser, *arg; local 695 char *bp, *host, *src, *suser; local [all...] |
servconf.h | 27 #define MAX_HOSTCERTS 256 /* Max # host certificates. */ 64 char *host_key_files[MAX_HOSTKEYS]; /* Files containing host keys. */ 65 int num_host_key_files; /* Number of files for host keys. */ 66 char *host_cert_files[MAX_HOSTCERTS]; /* Files containing host certs. */ 67 int num_host_cert_files; /* Number of files for host certs. */ 68 char *host_key_agent; /* ssh-agent socket for host keys. */ 197 const char *host; /* possibly resolved hostname */ member in struct:connection_info
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/ |
DefaultRequestDirector.java | 415 // Use virtual host if set 483 // If we have a direct route to the target host 608 * @param target the target host for the request. 631 ("Target host must not be null, or set in parameters."); 897 String host = target.getHostName(); local [all...] |
/external/valgrind/coregrind/ |
vgdb.c | 514 const HChar *user, *host; local 522 host = getenv("HOST"); 523 if (host == NULL) host = getenv("HOSTNAME"); 524 if (host == NULL) host = "???"; 525 if (strchr(host, '/')) host = "???"; 527 len = strlen(vgdb_prefix) + strlen(user) + strlen(host) + 40 [all...] |
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/ |
ConnectionUtil.java | 728 String host = hostList[i]; local 729 Process p = Runtime.getRuntime().exec("ping -c 10 -w 100 " + host); 736 Log.e(LOG_TAG, "Ping test Failed: Unknown Host");
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/ |
HandshakeCompletedEventTest.java | 205 private String host = "localhost"; field in class:HandshakeCompletedEventTest
|
SSLSessionTest.java | 465 String host = "localhost"; field in class:SSLSessionTest
|
/libcore/luni/src/main/java/java/net/ |
URLClassLoader.java | 68 //private URLClassLoader host; 459 String host = url.getHost(); local 461 if (host != null) { 462 hostLength = host.length(); 467 buf.append("//").append(host); 501 // Do not create a UNC path, i.e. \\host 625 String host = u.getHost(); local 626 if (host != null && host.length() > 0) { 627 path = "//" + host + path 639 String host = u.getHost(); local [all...] |
/libcore/luni/src/test/java/libcore/java/net/ |
SocketTest.java | 90 InetAddress host = InetAddress.getLocalHost(); local 94 InetSocketAddress listenAddr = new InetSocketAddress(host, 0); 104 InetSocketAddress addr = new InetSocketAddress(host, ssc.socket().getLocalPort());
|
/ndk/sources/host-tools/make-3.81/w32/ |
Makefile | 17 # Makefile.am to create libw32.a for mingw32 host. 181 host = i686-pc-linux-gnu macro
|
/packages/apps/Browser/src/com/android/browser/preferences/ |
WebsiteSettingsFragment.java | 286 // Create a map from host to origin. This is used to add metadata 310 String host = Uri.parse(entry.getKey()).getHost(); local 312 if (hosts.containsKey(host)) { 313 hostSites = (Set<Site>)hosts.get(host); 316 hosts.put(host, hostSites); 321 // Check the bookmark DB. If we have data for a host used by any of 334 String host = Uri.parse(url).getHost(); local 335 if (hosts.containsKey(host)) { 342 Set matchingSites = (Set) hosts.get(host);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
imaplib.py | 103 Instantiate with: IMAP4([host[, port]]) 105 host - host's name (default: localhost); 151 def __init__(self, host = '', port = IMAP4_PORT): 163 self.open(host, port) 221 def open(self, host = '', port = IMAP4_PORT): 222 """Setup connection to remote server on "host:port" 227 self.host = host 229 self.sock = socket.create_connection((host, port) 1437 host = args[0] variable [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
imaplib.py | 103 Instantiate with: IMAP4([host[, port]]) 105 host - host's name (default: localhost); 151 def __init__(self, host = '', port = IMAP4_PORT): 163 self.open(host, port) 221 def open(self, host = '', port = IMAP4_PORT): 222 """Setup connection to remote server on "host:port" 227 self.host = host 229 self.sock = socket.create_connection((host, port) 1437 host = args[0] variable [all...] |
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.1/ |
httpclient-4.2.1.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.ecf.provider.filetransfer.httpclient_4.0.0.v20100529-0735.jar | |
/packages/apps/Settings/src/com/android/settings/applications/ |
ManageApplications.java | 607 final Activity host = getActivity(); local 608 if (host != null) { 609 host.invalidateOptionsMenu(); [all...] |
/sdk/testapps/jarCheckTests3/lib2/libs/ |
android-support-v13.jar | |