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

1 2 3 4 5 67 8 91011>>

  /external/webkit/Source/WebCore/platform/graphics/ca/win/
LayerChangesFlusher.cpp 49 void LayerChangesFlusher::flushPendingLayerChangesSoon(AbstractCACFLayerTreeHost* host)
51 if (!m_hostsWithChangesToFlush.add(host).second || m_hook)
57 void LayerChangesFlusher::cancelPendingFlush(AbstractCACFLayerTreeHost* host)
59 m_hostsWithChangesToFlush.remove(host);
  /external/webkit/Source/WebCore/rendering/svg/
SVGShadowTreeElements.cpp 56 inline SVGShadowTreeRootElement::SVGShadowTreeRootElement(Document* document, SVGUseElement* host)
59 setParent(host);
63 PassRefPtr<SVGShadowTreeRootElement> SVGShadowTreeRootElement::create(Document* document, SVGUseElement* host)
65 return adoptRef(new SVGShadowTreeRootElement(document, host));
  /external/webkit/Source/WebKit/gtk/webkit/
webkitsecurityoriginprivate.h 41 gchar* host; member in struct:_WebKitSecurityOriginPrivate
  /external/webkit/Source/WebKit/mac/Misc/
WebUserContentURLPattern.h 35 - (NSString *)host;
  /external/webkit/Source/WebKit2/Shared/
SecurityOriginData.h 47 // host, and port.
50 String host; member in struct:WebKit::SecurityOriginData
WebSecurityOrigin.h 47 static PassRefPtr<WebSecurityOrigin> create(const String& protocol, const String& host, int port)
49 RefPtr<WebCore::SecurityOrigin> securityOrigin = WebCore::SecurityOrigin::create(protocol, host, port);
56 const String host() const { return m_securityOrigin->host(); } function in class:WebKit::WebSecurityOrigin
  /hardware/ril/mock-ril/
Makefile 10 PROTOC=$(wildcard $(top)out/host/*/bin/aprotoc)
  /libcore/luni/src/main/java/java/net/
SocketPermission.java 27 public SocketPermission(String host, String action) { super(""); }
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);
  /libcore/luni/src/main/java/javax/net/ssl/
DefaultSSLSocketFactory.java 50 public Socket createSocket(Socket s, String host, int port, boolean autoClose)
56 public Socket createSocket(String host, int port) throws IOException, UnknownHostException {
61 public Socket createSocket(String host, int port, InetAddress localHost, int localPort)
67 public Socket createSocket(InetAddress host, int port) throws IOException {
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
FileClientSessionCache.java 46 * This cache creates one file per SSL session using "host.port" for
120 * Gets the file name for the given host and port.
122 private static String fileName(String host, int port) {
123 if (host == null) {
124 throw new NullPointerException("host");
126 return host + "." + port;
129 public synchronized byte[] getSessionData(String host, int port) {
136 String name = fileName(host, port);
161 logReadError(host, file, e);
170 logReadError(host, file, e)
183 String host = session.getPeerHost(); local
    [all...]
SSLSocketFactoryImpl.java 86 public Socket createSocket(Socket s, String host, int port,
112 public Socket createSocket(String host, int port)
117 return new SSLSocketImpl(host, port,
125 public Socket createSocket(String host, int port,
131 return new SSLSocketImpl(host, port, localHost, localPort,
139 public Socket createSocket(InetAddress host, int port)
144 return new SSLSocketImpl(host, port,
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLEngineTest.java 41 * SSLEngine object with null host and -1 port
53 * Test for <code>SSLEngine(String host, int port)</code> constructor
67 * Test for <code>SSLEngine(String host, int port)</code> constructor
70 String host = "new host"; local
72 SSLEngine e = new mySSLEngine(host, port);
73 assertEquals(e.getPeerHost(), host); local
93 String host = "new host"; local
97 SSLEngine e = new mySSLEngine(host, port)
121 String host = "new host"; local
154 String host = "new host"; local
185 String host = "new host"; local
201 String host = "new host"; local
226 String host = "new host"; local
254 String host = "new host"; local
316 String host = "new host"; local
333 String host = "new host"; local
374 String host = super.getPeerHost(); local
    [all...]
  /external/chromium/chrome/browser/chromeos/status/
input_method_menu_button.cc 22 // Returns PrefService object associated with |host|. Returns NULL if we are NOT
24 PrefService* GetPrefService(chromeos::StatusAreaHost* host) {
25 if (host->GetProfile()) {
26 return host->GetProfile()->GetPrefs();
67 InputMethodMenuButton::InputMethodMenuButton(StatusAreaHost* host)
68 : StatusAreaButton(host, this),
69 menu_(new MenuImpl(this, GetPrefService(host), host->GetScreenMode())) {
  /external/chromium/chrome/browser/ui/
crypto_module_password_dialog_nss.cc 33 const std::string& host,
52 const std::string& host,
57 host_(host),
137 const std::string& host,
142 (new SlotUnlocker(modules, reason, host, callback))->Start();
151 const std::string& host,
156 UnlockSlotsIfNecessary(modules, reason, host, callback);
  /packages/apps/Browser/src/com/android/browser/
Performance.java 60 String host; local
63 host = uri.getHost();
65 host = "browser";
67 host = host.replace('.', '_');
68 host += ".trace";
70 Debug.startMethodTracing(host, 20 * 1024 * 1024);
  /external/chromium/chrome/browser/search_engines/
search_host_to_urls_map.cc 41 host_to_urls_map_[url.host()].insert(template_url);
52 const std::string host(url.host());
53 DCHECK(host_to_urls_map_.find(host) != host_to_urls_map_.end());
55 TemplateURLSet& urls = host_to_urls_map_[host];
60 host_to_urls_map_.erase(host_to_urls_map_.find(host));
108 const std::string& host) const {
111 HostToURLsMap::const_iterator iter = host_to_urls_map_.find(host);
118 const std::string& host) const {
121 HostToURLsMap::const_iterator urls_for_host = host_to_urls_map_.find(host);
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8InjectedScriptHostCustom.cpp 74 InjectedScriptHost* host = V8InjectedScriptHost::toNative(args.Holder());
76 Node* node = host->inspectedNode(args[0]->ToInt32()->Value());
101 InjectedScriptHost* host = V8InjectedScriptHost::toNative(args.Holder());
104 host->inspectImpl(object.toInspectorValue(ScriptState::current()), hints.toInspectorValue(ScriptState::current()));
113 InjectedScriptHost* host = V8InjectedScriptHost::toNative(args.Holder()); local
114 return toV8(host->debuggerAgent()->scriptDebugServer().currentCallFrame());
127 InjectedScriptHost* host = V8InjectedScriptHost::toNative(args.Holder());
130 return v8::Number::New(host->databaseIdImpl(database));
141 InjectedScriptHost* host = V8InjectedScriptHost::toNative(args.Holder()); local
144 return v8::Number::New(host->storageIdImpl(storage))
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/net/
credentials.py 52 def __init__(self, host, git_prefix=None, executive=None, cwd=os.getcwd(),
54 self.host = host
96 self.host,
102 "Click \"Allow\" to continue..." % self.host)
109 log("Could not find a keychain entry for %s." % self.host)
134 self._keyring.set_password(self.host, username, password)
146 password = self._keyring.get_password(self.host, username)
149 username = User.prompt("%s login: " % self.host)
151 password = User.prompt_password("%s password for %s: " % (self.host, username)
    [all...]
  /external/kernel-headers/original/linux/mmc/
host.h 2 * linux/include/linux/mmc/host.h
8 * Host driver specific definitions.
68 void (*request)(struct mmc_host *host, struct mmc_request *req);
69 void (*set_ios)(struct mmc_host *host, struct mmc_ios *ios);
70 int (*get_ro)(struct mmc_host *host);
85 unsigned long caps; /* Host capabilities */
87 #define MMC_CAP_4_BIT_DATA (1 << 0) /* Can the host do 4 bit transfers */
89 /* host specific block data */
100 unsigned int mode; /* current card mode of host */
104 struct list_head cards; /* devices attached to this host */
    [all...]
  /external/webkit/Source/WebKit/win/
WebUserContentURLPattern.cpp 108 HRESULT WebUserContentURLPattern::host(BSTR* host) function in class:WebUserContentURLPattern
110 if (!host)
112 *host = BString(m_pattern.host()).release();
  /frameworks/base/core/java/android/net/
Proxy.java 69 * though if the proxy is undefined the host string
103 * @param ctx A Context used to get the settings for the proxy host.
105 * @return Proxy (java.net) object containing the host name. If the
106 * user did not set a hostname it returns the default host.
107 * A null value means that no host is to be used.
111 String host = ""; local
114 host = uri.getHost();
117 if (!isLocalHost(host)) {
127 if (!proxyProperties.isExcluded(host)) {
137 * Return the proxy host set by the user
181 String host = System.getProperty("http.proxyHost"); local
325 String host = null; local
    [all...]
  /sdk/eclipse/scripts/
create_test_symlinks.sh 19 HOST=`uname`
20 if [ "${HOST:0:6}" == "CYGWIN" ]; then
45 HOST=`uname`
46 if [ "$HOST" == "Linux" ]; then
48 ln -svf $BACK/out/host/linux-x86/framework/$LIB.jar "$DEST/"
50 ln -svf $BACK/out/host/linux-x86/framework/kxml2-2.3.0.jar "$DEST/"
52 elif [ "$HOST" == "Darwin" ]; then
54 ln -svf $BACK/out/host/darwin-x86/framework/$LIB.jar "$DEST/"
56 ln -svf $BACK/out/host/darwin-x86/framework/kxml2-2.3.0.jar "$DEST/"
58 elif [ "${HOST:0:6}" == "CYGWIN" ]; the
    [all...]
  /external/chromium/chrome/browser/
gpu_process_host_ui_shim.cc 51 GpuProcessHost* host = GpuProcessHost::FromID(host_id_); local
52 if (host)
53 host->Send(msg_.release());
263 RenderViewHost* host = RenderViewHost::FromID(renderer_id, render_view_id); local
264 if (host) {
265 RenderWidgetHostView* view = host->view();
302 RenderViewHost* host = RenderViewHost::FromID(params.renderer_id, local
304 if (!host)
306 RenderWidgetHostView* view = host->view();
317 RenderViewHost* host = RenderViewHost::FromID(params.renderer_id local
341 RenderViewHost* host = RenderViewHost::FromID(renderer_id, local
    [all...]
  /external/chromium/chrome/browser/ssl/
ssl_error_info.cc 42 // "closest match" to the host name in the request URL, or listing all
56 UTF8ToUTF16(request_url.host()),
58 UTF8ToUTF16(request_url.host()));
67 UTF8ToUTF16(request_url.host())));
76 UTF8ToUTF16(request_url.host()),
77 UTF8ToUTF16(request_url.host()));
89 UTF8ToUTF16(request_url.host()),
90 UTF8ToUTF16(request_url.host()));
102 UTF8ToUTF16(request_url.host()));
109 UTF8ToUTF16(request_url.host()),
    [all...]

Completed in 720 milliseconds

1 2 3 4 5 67 8 91011>>