/libcore/support/src/test/java/libcore/javax/net/ssl/ |
FakeSSLSession.java | 25 final String host; field in class:FakeSSLSession 27 public FakeSSLSession(String host) { 28 this.host = host; 44 return host.getBytes(); 72 return host;
|
/ndk/build/core/ |
build-local.mk | 70 # On Windows, defining host-dir-parent is a bit more tricky because the 81 host-dir-parent = $(patsubst %/,%,$(strip \ 87 host-dir-parent = $(patsubst %/,%,$(dir $1)) 106 $(eval __find_project_parent := $(call host-dir-parent,$(__find_project_path)))\ 215 # Do not define this variable for other host platforms
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/ |
CertificateRequestor.java | 32 public static final String EXTRA_HOST = "CertificateRequestor.host"; 45 String host = i.getStringExtra(EXTRA_HOST); local 52 host, port,
|
/packages/apps/Launcher3/src/com/android/launcher3/compat/ |
AppWidgetManagerCompatVL.java | 90 AppWidgetHost host, int requestCode) { 92 host.startAppWidgetConfigureActivityForResult(activity, widgetId, 0, requestCode, null);
|
/packages/apps/Messaging/src/android/support/v7/mms/ |
Utils.java | 151 * Redact the URL for non-VERBOSE logging. Replace url with only the host part and the length 166 String host = ""; local 170 host = url.getHost(); 174 // Print "http://host[length]" 176 sb.append(protocol).append("://").append(host)
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
EmailAddress.java | 67 * @param host A string representing the host following the '@' symbol 69 public EmailAddress(final String user, final String host) { 70 this(user, host, false); 77 * @param host A string representing the host following the '@' symbol 80 public EmailAddress(final String user, final String host, final boolean i18n) { 83 setHost(host); 97 (atIndex == (emailString.length() - 1))) { // last character, no host 102 host = emailString.substring(atIndex + 1) 270 protected String host = null; field in class:EmailAddress [all...] |
YouTubeUtil.java | 49 final String host = uri.getHost(); local 50 if (YOUTUBE_HOST_1.equalsIgnoreCase(host) 51 || YOUTUBE_HOST_2.equalsIgnoreCase(host) 52 || YOUTUBE_HOST_3.equalsIgnoreCase(host) 53 || YOUTUBE_HOST_4.equalsIgnoreCase(host) 54 || YOUTUBE_HOST_5.equalsIgnoreCase(host)) {
|
/development/ide/emacs/ |
android-common.el | 92 (defun android-host () 135 (defun android-find-host-bin (binary) 136 "Return the full path to the host BINARY. 137 Binaries don't depend on the device, just on the host type. 138 Try first to locate BINARY in the out/host tree. Fallback using 141 (let ((path (concat (android-find-build-tree-root) "out/host/" 142 (android-host) "/bin/" binary))) 151 (android-find-host-bin "adb")) 158 (concat (android-find-host-bin "fastboot") " -p " (android-product)))
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
TabHostTest.java | 203 TabHost host = new TabHost(activity); local 204 assertThat(host.getTabWidget(), instanceOf(TabWidget.class));
|
/cts/tests/tests/net/src/android/net/cts/ |
SSLCertificateSocketFactoryTest.java | 56 String host = "www.google.com"; local 77 mFactory.createSocket(socket, host, port, true); 83 socket = mFactory.createSocket(host, port); 92 // a host and port that are expected to be available but have
|
/developers/samples/android/connectivity/wifidirect/DirectP2P/Application/src/main/java/com/example/android/wifidirectp2p/ |
FileTransferService.java | 49 String host = intent.getExtras().getString(EXTRAS_GROUP_OWNER_ADDRESS); local 56 socket.connect((new InetSocketAddress(host, port)), SOCKET_TIMEOUT);
|
/development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/ |
FileTransferService.java | 49 String host = intent.getExtras().getString(EXTRAS_GROUP_OWNER_ADDRESS); local 56 socket.connect((new InetSocketAddress(host, port)), SOCKET_TIMEOUT);
|
/external/apache-http/src/org/apache/http/auth/ |
AuthScope.java | 38 * 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, int port, [all...] |
/external/guava/guava/src/com/google/common/net/ |
HostAndPort.java | 34 * 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) { 81 this.host = host; 94 return host; 122 * Build a HostAndPort instance from separate host and port values. 127 * @param host the host string to parse. Must not contain a port number 169 String host; local 224 String host = hostPortString.substring(1, closeBracketIndex); local [all...] |
/external/ipsec-tools/src/libipsec/ |
ipsec_dump_policy.c | 400 char host[NI_MAXHOST]; local 406 if (getnameinfo(sa, (socklen_t)sysdep_sa_len(sa), host, sizeof(host), 411 snprintf(buf, len, "%s[%s]", host, serv); 413 snprintf(buf, len, "%s", host);
|
/external/libvncserver/x11vnc/ |
avahi.c | 40 void avahi_advertise(char *name, char *host, uint16_t port); 54 static int try_avahi_helper(char *name, char *host, uint16_t port) { 59 if (!name || !host || !port) {} 140 if (!name || !host || !port) {} 150 void avahi_advertise(char *name, char *host, uint16_t port) { 153 t = getenv("X11VNC_AVAHI_HOST"); if (t) host = t; 156 if (!try_avahi_helper(name, host, port)) { 190 const char *host; member in struct:__anon13571 196 char *host; member in struct:__anon13572 214 registered[i].host = NULL [all...] |
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/ |
PortCommandHandlerTest.java | 41 private static final InetAddress HOST = inetAddress("192.22.250.44");
52 session.setClientDataHost(HOST);
61 PortCommandHandler.HOST_KEY, HOST,
77 InetAddress host = PortCommandHandler.parseHost(PARAMETERS);
local 78 assertEquals("InetAddress", HOST, host);
|
/external/nist-sip/java/gov/nist/core/ |
HostNameParser.java | 43 * Parser for host names. 163 lexer.getBuffer() + ": Illegal Host name ", 171 public Host host() throws ParseException { method in class:HostNameParser 173 dbg_enter("host"); 201 lexer.getBuffer() + ": Missing host name", 204 return new Host(hostname); 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); local 265 Host host = this.host(); local [all...] |
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
DefaultRouter.java | 119 // The outbound proxy is optional. If specified it should be host:port/transport. 123 "Invalid default route specification - need host:port/transport"); 132 * a host, the host and port information are extracted from it and made the 310 String host = sipUri.getMAddrParam() != null ? sipUri.getMAddrParam() local 314 .resolveAddress(new HopImpl(host, port, transport));
|
/external/openssh/ |
ssh-keysign.c | 68 valid_request(struct passwd *pw, char *host, struct sshkey **ret, 131 /* client host name, handle trailing dot */ 134 debug2("%s: check expect chost %s got %s", __func__, host, p); 135 if (strlen(host) != len - 1) 139 else if (strncasecmp(host, p, len - 1) != 0) 176 char *host, *fp; local 221 fatal("could not open any host key"); 259 if ((host = get_local_name(fd)) == NULL) 264 if (valid_request(pw, host, &key, data, dlen) < 0) 266 free(host); [all...] |
/external/valgrind/tests/ |
s390x_features.c | 32 // z9 -- Host needs to be a z9 (and nothing else) 33 // z9: -- Host needs to be a z9 or any later model 34 // :z9 -- Host needs to be a model up to and including z9 35 // z900:z9 -- Host needs to be at least a z900 and at most a z9. 205 model_info *host, *from, *to, *p; local 240 /* Host provides facility. If no CPU was specified, we're done. */ 243 host = get_host(); 244 if (host == NULL) return 1; // unknown model 246 // printf("host = %s (%s)\n", host->cpuinfo_name, host->real_name) [all...] |
/frameworks/av/media/libmedia/ |
IHDCP.cpp | 73 virtual status_t initAsync(const char *host, unsigned port) { 76 data.writeCString(host); 218 const char *host = data.readCString(); local 221 reply->writeInt32(initAsync(host, port));
|
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
KeyguardMessageArea.java | 164 AnnounceRunnable(View host, CharSequence textToAnnounce) { 165 mHost = new WeakReference<View>(host); 171 final View host = mHost.get(); local 172 if (host != null) { 173 host.announceForAccessibility(mTextToAnnounce);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
KeyguardUserSwitcherScrim.java | 48 public KeyguardUserSwitcherScrim(View host) { 49 host.addOnLayoutChangeListener(this); 50 mDarkColor = host.getContext().getColor(
|
/libcore/benchmarks/src/benchmarks/regression/ |
SSLSocketBenchmark.java | 43 final InetAddress host; field in class:SSLSocketBenchmark.WebSite 50 this.host = InetAddress.getByName(url.getHost()); 63 + "Host: " + host + portString + "\r\n" 82 Socket s = sf.createSocket(webSite.host, webSite.port);
|