HomeSort by relevance Sort by last modified time
    Searched refs:host (Results 226 - 250 of 1440) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/hw/
bt.c 60 link->host = req->host;
62 req->host->reject_reason = 0;
63 req->host->lmp_connection_complete(link);
  /external/quake/quake/src/WinQuake/
net_vcr.h 31 qsocket_t *VCR_Connect (const char *host);
  /external/webkit/Source/JavaScriptCore/wtf/url/api/
ParsedURL.h 45 String host() const;
  /external/webkit/Source/JavaScriptCore/wtf/url/src/
URLSegments.h 46 Host,
83 // Host: 7 7
96 URLComponent host; member in class:WTF::URLSegments
URLSegments.cpp 70 if (host.isValid()) {
71 if (type <= Host)
72 return host.begin();
73 current = host.end();
  /external/webkit/Source/WebKit/mac/Misc/
WebUserContentURLPattern.mm 74 - (NSString *)host
76 return _private->pattern.host();
  /external/webkit/Source/WebKit2/Shared/API/c/
WKSecurityOrigin.h 38 WK_EXPORT WKSecurityOriginRef WKSecurityOriginCreate(WKStringRef protocol, WKStringRef host, int port);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/win/
InjectedBundleWin.cpp 96 void InjectedBundle::setHostAllowsAnyHTTPSCertificate(const String& host)
99 ResourceHandle::setHostAllowsAnyHTTPSCertificate(host);
103 void InjectedBundle::setClientCertificate(const String& host, const String& certificateSystemStoreName, const WebCertificateInfo* certificateInfo)
134 ResourceHandle::setClientCertificate(host, WebCore::copyCertificateToData(realCert).get());
  /external/webkit/Tools/WebKitLauncher/
WebKitNightlyEnablerSparkle.m 46 static NSPanel *updateAlertPanel(id updateItem, id host)
48 NSString *hostName = objc_msgSend(host, @selector(name));
50 [NSString stringWithFormat:@"You are currently running %@ %@.", hostName, objc_msgSend(host, @selector(displayVersion))],
70 static id updateAlertInitForAlertPanel(id self, SEL _cmd, id updateItem, id host)
72 NSPanel *panel = updateAlertPanel(updateItem, host);
80 [host retain];
83 object_setInstanceVariable(self, "host", (void*)host);
135 methodToPatch = class_getInstanceMethod(objc_getRequiredClass("SUUpdateAlert"), @selector(initWithAppcastItem:host:));
  /frameworks/compile/libbcc/lib/ScriptCRT/
build_clcore.sh 12 clang -ccc-host-triple armv7-none-linux-gnueabi -I${scriptc_path} -I${clang_header_path} -c -std=c99 -O3 rs_cl.c -emit-llvm -o rs_cl.bc
17 clang -ccc-host-triple armv7-none-linux-gnueabi -I${scriptc_path} -I${clang_header_path} -c -std=c99 -O3 rs_core.c -emit-llvm -o rs_core.bc
  /libcore/luni/src/main/java/java/net/
InetSocketAddress.java 80 * hostname {@code host}. The hostname is tried to be resolved and cannot be
86 * @param host
89 public InetSocketAddress(String host, int port) {
90 this(host, port, true);
99 throw new IllegalArgumentException("host=" + hostname + ", port=" + port);
120 * @param host
126 * if the hostname {@code host} is {@code null} or the port is
129 public static InetSocketAddress createUnresolved(String host, int port) {
130 return new InetSocketAddress(host, port, false);
  /libcore/luni/src/main/java/javax/net/ssl/
SSLSocket.java 42 * Creates a TCP socket connection to the specified host at the specified
45 * @param host
46 * the host name to connect to.
52 * if the specified host is not known.
54 protected SSLSocket(String host, int port) throws IOException, UnknownHostException {
55 super(host, port);
78 * Creates a TCP socket connection to the specified host at the specified
81 * @param host
82 * the host name to connect to.
92 * if the specified host is not known
    [all...]
  /frameworks/base/services/java/com/android/server/
AppWidgetService.java 89 * When identifying a Host or Provider based on the calling process, use the uid field.
90 * When identifying a Host or Provider based on a package manager broadcast, use the
104 static class Host {
119 Host host; field in class:AppWidgetService.AppWidgetId
172 ArrayList<Host> mHosts = new ArrayList<Host>();
178 ArrayList<Host> mDeletedHosts = new ArrayList<Host>();
247 private void dumpHost(Host host, int index, PrintWriter pw)
329 Host host = lookupOrAddHostLocked(callingUid, packageName, hostId); local
359 Host host = lookupHostLocked(callingUid, hostId); local
374 Host host = mHosts.get(i); local
403 Host host = id.host; local
858 Host host = lookupOrAddHostLocked(callingUid, packageName, hostId); local
878 Host host = lookupHostLocked(getCallingUid(), hostId); local
946 Host host = new Host(); local
1263 Host host = mHosts.get(i); local
1338 Host host = new Host(); local
1622 Host host = mHosts.get(i); local
    [all...]
  /bionic/libc/kernel/common/linux/mmc/
host.h 70 void (*request)(struct mmc_host *host, struct mmc_request *req);
71 void (*set_ios)(struct mmc_host *host, struct mmc_ios *ios);
72 int (*get_ro)(struct mmc_host *host);
  /development/ndk/platforms/android-3/include/linux/mmc/
host.h 70 void (*request)(struct mmc_host *host, struct mmc_request *req);
71 void (*set_ios)(struct mmc_host *host, struct mmc_ios *ios);
72 int (*get_ro)(struct mmc_host *host);
  /external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/
SocketFactoryTest.java 85 public Socket createSocket(String host, int port) throws IOException, UnknownHostException {
90 public Socket createSocket(String host, int port, InetAddress localHost, int localPort)
96 public Socket createSocket(InetAddress host, int port) throws IOException {
  /external/apache-http/src/org/apache/http/conn/scheme/
SchemeRegistry.java 88 * Obtains the scheme for a host.
89 * Convenience method for <code>getScheme(host.getSchemeName())</pre>
91 * @param host the host for which to obtain the scheme
93 * @return the scheme for the given host, never <code>null</code>
98 public synchronized final Scheme getScheme(HttpHost host) {
99 if (host == null) {
100 throw new IllegalArgumentException("Host must not be null.");
102 return getScheme(host.getSchemeName());
  /external/apache-http/src/org/apache/http/conn/ssl/
AbstractVerifier.java 86 public final void verify(String host, SSLSocket ssl)
88 if(host == null) {
89 throw new NullPointerException("host to verify is null");
95 verify(host, x509);
98 public final boolean verify(String host, SSLSession session) {
102 verify(host, x509);
110 public final void verify(String host, X509Certificate cert)
114 verify(host, cns, subjectAlts);
117 public final void verify(final String host, final String[] cns,
139 String msg = "Certificate for <" + host + "> doesn't contain CN or DNS subjectAlt"
    [all...]
  /external/chromium/net/proxy/
proxy_bypass_rules.cc 34 // Note it is necessary to lower-case the host, since GURL uses capital
36 return MatchPattern(StringToLowerASCII(url.host()), hostname_pattern_);
64 const std::string& host = url.host(); local
65 if (host == "127.0.0.1" || host == "[::1]")
67 return host.find('.') == std::string::npos;
302 std::string host; local
304 if (ParseHostAndPort(raw, &host, &port)) {
305 if (IsIPAddress(host)) {
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
asynchttprequest.h 60 // The DNS name of the host to connect to.
61 const std::string& host() { return host_; } function in class:talk_base::AsyncHttpRequest
62 void set_host(const std::string& host) { host_ = host; }
64 // The port to connect to on the target host.
httprequest.h 60 // The DNS name of the host to connect to.
61 const std::string& host() { return host_; } function in class:talk_base::HttpRequest
62 void set_host(const std::string& host) { host_ = host; }
64 // The port to connect to on the target host.
  /external/webkit/Source/WebKit/win/
WebURLProtectionSpace.h 50 virtual HRESULT STDMETHODCALLTYPE host(
54 /* [in] */ BSTR host,
61 /* [in] */ BSTR host,
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceDialerReceiver.java 36 String host = intent.getData() != null ? intent.getData().getHost() : null; local
53 else if (Intents.SECRET_CODE_ACTION.equals(action) && "8351".equals(host)) {
59 else if (Intents.SECRET_CODE_ACTION.equals(action) && "8350".equals(host)) {
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/mmc/
host.h 70 void (*request)(struct mmc_host *host, struct mmc_request *req);
71 void (*set_ios)(struct mmc_host *host, struct mmc_ios *ios);
72 int (*get_ro)(struct mmc_host *host);
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/mmc/
host.h 70 void (*request)(struct mmc_host *host, struct mmc_request *req);
71 void (*set_ios)(struct mmc_host *host, struct mmc_ios *ios);
72 int (*get_ro)(struct mmc_host *host);

Completed in 1417 milliseconds

1 2 3 4 5 6 7 8 91011>>