HomeSort by relevance Sort by last modified time
    Searched defs:host (Results 126 - 150 of 1118) sorted by null

1 2 3 4 56 7 8 91011>>

  /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
222 fatal("could not open any host key");
260 if ((host = get_local_name(fd)) == NULL)
265 if (valid_request(pw, host, &key, data, dlen) < 0)
267 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...]
  /external/webrtc/webrtc/base/
httprequest.h 44 // The DNS name of the host to connect to.
45 const std::string& host() { return host_; } function in class:rtc::HttpRequest
46 void set_host(const std::string& host) { host_ = host; }
48 // The port to connect to on the target host.
  /external/webrtc/webrtc/p2p/client/
httpportallocator.cc 157 // Choose the next host to try.
158 std::string host = relay_hosts_[attempts_ % relay_hosts_.size()]; local
160 LOG(LS_INFO) << "HTTPPortAllocator: sending to relay host " << host;
165 SendSessionRequest(host, rtc::HTTP_SECURE_PORT);
  /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/SystemUI/src/com/android/keyguard/
KeyguardMessageArea.java 158 AnnounceRunnable(View host, CharSequence textToAnnounce) {
159 mHost = new WeakReference<View>(host);
165 final View host = mHost.get(); local
166 if (host != null) {
167 host.announceForAccessibility(mTextToAnnounce);
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/external/
TileServicesTest.java 57 QSTileHost host = new QSTileHost(mContext, null, local
59 mTileService = new TestTileServices(host, Looper.getMainLooper());
126 public TestTileServices(QSTileHost host, Looper looper) {
127 super(host, looper);
  /frameworks/base/services/core/java/com/android/server/pm/
IntentFilterVerificationState.java 99 String host = mHosts.valueAt(i); local
101 if (host.startsWith("*.")) {
102 host = host.substring(2);
104 sb.append(host);
  /frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/media/
PlaybackBannerControlGlueTest.java 80 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl(); local
82 mGlue.setHost(host);
83 assertSame(mGlue, host.mGlue);
84 assertSame(host, mGlue.getHost());
85 assertTrue(host.mPlaybackRowPresenter instanceof PlaybackControlsRowPresenter);
86 assertTrue(host.mRow instanceof PlaybackControlsRow);
105 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl(); local
107 mGlue.setHost(host);
108 assertSame(mGlue, host.mGlue);
109 assertSame(host, mGlue.getHost())
126 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl(); local
154 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl(); local
    [all...]
PlaybackTransportControlGlueTest.java 80 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl(); local
82 mGlue.setHost(host);
83 assertSame(mGlue, host.mGlue);
84 assertSame(host, mGlue.getHost());
85 assertTrue(host.mPlaybackRowPresenter instanceof PlaybackTransportRowPresenter);
86 assertTrue(host.mRow instanceof PlaybackControlsRow);
105 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl(); local
107 mGlue.setHost(host);
108 assertSame(mGlue, host.mGlue);
109 assertSame(host, mGlue.getHost())
126 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl(); local
154 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl(); local
    [all...]
  /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"
83 Socket s = sf.createSocket(webSite.host, webSite.port);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
InetSocketAddressTest.java 47 new HostPortPair("strange host", 65535) };
50 legalHostPortPairs[i].host, legalHostPortPairs[i].port);
53 assertEquals(isa.getHostName(), legalHostPortPairs[i].host);
63 new HostPortPair("host", -1), new HostPortPair("host", 65536) };
67 illegalHostPortPairs[i].host,
69 fail("should throw IllegalArgumentException, host = "
70 + illegalHostPortPairs[i].host + ",port = "
82 String host; field in class:InetSocketAddressTest.HostPortPair
86 public HostPortPair(String host, int port)
    [all...]
  /libcore/ojluni/src/main/java/java/net/
CookieManager.java 307 // Domain Defaults to the effective request-host. (Note that because
308 // there is no dot at the beginning of effective request-host,
311 String host = uri.getHost(); local
312 if (host != null && !host.contains("."))
313 host += ".local";
314 cookie.setDomain(host);
InetSocketAddress.java 210 * is called with the host name as its argument to check the permissiom
217 * @param hostname the Host name
222 * permission to resolve the host name is
229 String host = null; local
233 host = hostname;
235 holder = new InetSocketAddressHolder(host, addr, checkPort(port));
254 * @param host the Host name
264 public static InetSocketAddress createUnresolved(String host, int port) {
265 return new InetSocketAddress(checkPort(port), checkHost(host));
    [all...]
  /libcore/ojluni/src/main/java/sun/net/spi/
DefaultProxySelector.java 63 * - subsequent elements are prefixes for Host & Port properties
132 String host = uri.getHost(); local
134 if (host == null) {
153 host = auth;
157 if (protocol == null || host == null) {
158 throw new IllegalArgumentException("protocol = "+protocol+" host = "+host);
181 final String urlhost = host.toLowerCase();
206 phost = NetProperties.get(props[i][j]+"Host");
220 // If a Proxy Host is defined for that protoco
    [all...]
  /libcore/ojluni/src/main/java/sun/net/www/
URLConnection.java 244 public synchronized static void setProxiedHost(String host) {
245 proxiedHosts.put(host.toLowerCase(), null);
248 public synchronized static boolean isProxiedHost(String host) {
249 return proxiedHosts.containsKey(host.toLowerCase());
  /libcore/ojluni/src/main/java/sun/security/x509/
URIName.java 44 * address as the host.
47 * (e.g., "http" is equivalent to "HTTP"). The host part is also not
50 * MUST compare the scheme and host without regard to case, but assume
63 * of an IP-based protocol to a specified host on the Internet use a
66 * //<user>:<password>@<host>:<port>/<url-path>
85 private String host; field in class:URIName
115 host = uri.getHost();
116 // RFC 3280 says that the host should be non-null, but we allow it to
120 if (host != null) {
121 if (host.charAt(0) == '[')
165 String host = uri.getSchemeSpecificPart(); local
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/
CameraPreview.java 55 public CameraPreview(final CameraPreviewHost host) {
56 Assert.isNotNull(host);
57 Assert.isNotNull(host.getView());
58 mHost = host;
  /packages/apps/Launcher3/src/com/android/launcher3/accessibility/
OverviewScreenAccessibilityDelegate.java 54 public boolean performAccessibilityAction(View host, int action, Bundle args) {
55 if (host != null) {
57 int index = mWorkspace.indexOfChild(host);
60 movePage(mWorkspace.indexOfChild(host) + 1, host); local
63 movePage(mWorkspace.indexOfChild(host) - 1, host); local
68 return super.performAccessibilityAction(host, action, args);
83 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) {
84 super.onInitializeAccessibilityNodeInfo(host, info)
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
CameraPreview.java 47 public CameraPreview(final CameraPreviewHost host) {
48 Assert.notNull(host);
49 Assert.notNull(host.getView());
50 mHost = host;
  /packages/services/BuiltInPrintService/src/com/android/bips/discovery/
DiscoveredPrinter.java 114 /** Return a friendly description string including host and (if present) location */
116 String host = path.getHost().replaceAll(":[0-9]+", ""); local
119 description = context.getString(R.string.printer_description, host, location);
121 description = host;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/
bootparam_prot.h 33 char host; member in struct:ip_addr_t
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
bootparam_prot.h 33 char host; member in struct:ip_addr_t
  /build/make/core/
definitions.mk 80 # Target and host installed module's dependencies on shared libraries.
96 HOST_DISPLAY := host
97 HOST_CROSS_DISPLAY := host cross
501 define def-host-aux-target
502 $(eval _idf_val_:=$(if $(strip $(LOCAL_IS_HOST_MODULE)),HOST,$(if $(strip $(LOCAL_IS_AUX_MODULE)),AUX,))) \
508 ## { HOST, HOST_CROSS, AUX, TARGET }
514 # => HOST;
518 $(eval _idf_pfx_:=$(if $(strip $(1)),$(if $(_idf_pfx_),$(_idf_pfx_),$(if $(strip $(2)),HOST_CROSS,HOST)),TARGET)) \
533 # $(3): { HOST, HOST_CROSS, AUX, <empty (TARGET)>, <other non-empty (HOST)> }
    [all...]

Completed in 2037 milliseconds

1 2 3 4 56 7 8 91011>>