Searched refs:host (Results 1 - 25 of 2743) sorted by relevance

1234567891011>>

/external/chromium_org/net/data/proxy_resolver_v8_tracing_unittest/
H A Dsimple.js1 function FindProxyForURL(url, host) {
2 return "PROXY " + host + ":99";
H A Derror.js1 function FindProxyForURL(url, host) {
2 if (host == 'throw-an-error') {
/external/chromium_org/net/data/proxy_resolver_v8_unittest/
H A Dresolve_host.js5 // This script passes the URL's host to dnsResolveEx().
6 function FindProxyForURL(url, host) {
7 dnsResolveEx(host);
H A Ddirect.js1 function FindProxyForURL(url, host) {
H A Dends_with_comment.js1 function FindProxyForURL(url, host) {
H A Dreturn_empty_string.js1 function FindProxyForURL(url, host) {
H A Dreturn_integer.js1 function FindProxyForURL(url, host) {
H A Dreturn_null.js1 function FindProxyForURL(url, host) {
H A Dreturn_unicode.js2 function FindProxyForURL(url, host) {
H A Dmissing_close_brace.js4 function FindProxyForURL(url, host) {
H A Dterminate.js5 function FindProxyForURL(url, host) {
6 if (host != 'hang')
7 return 'PROXY ' + host + ':88';
/external/chromium_org/ppapi/host/
H A Dinstance_message_filter.cc5 #include "ppapi/host/instance_message_filter.h"
7 #include "ppapi/host/ppapi_host.h"
10 namespace host { namespace in namespace:ppapi
12 InstanceMessageFilter::InstanceMessageFilter(PpapiHost* host) : host_(host) { argument
18 } // namespace host
/external/chromium-libpac/test/js-unittest/
H A Ddirect.js1 function FindProxyForURL(url, host) {
H A Dends_with_comment.js1 function FindProxyForURL(url, host) {
H A Dreturn_empty_string.js1 function FindProxyForURL(url, host) {
H A Dreturn_integer.js1 function FindProxyForURL(url, host) {
H A Dreturn_null.js1 function FindProxyForURL(url, host) {
H A Dreturn_unicode.js2 function FindProxyForURL(url, host) {
H A Dmissing_close_brace.js4 function FindProxyForURL(url, host) {
H A Dends_with_statement_no_semicolon.js2 function FindProxyForURL(url, host) { return "PROXY success:" + x; }
H A Dreturn_function.js1 function FindProxyForURL(url, host) {
H A Dreturn_object.js1 function FindProxyForURL(url, host) {
H A Dreturn_undefined.js1 function FindProxyForURL(url, host) {
H A Dsimple.js4 function FindProxyForURL(url, host) {
12 isInNet(host, "10.0.0.0", "255.0.0.0")) {
16 if (dnsDomainIs(host, "foo.bar.baz.com") || !isResolvable(host)) {
/external/chromium_org/chrome/renderer/pepper/
H A Dpepper_helper.cc10 #include "ppapi/host/ppapi_host.h"
17 void PepperHelper::DidCreatePepperPlugin(content::RendererPpapiHost* host) { argument
18 // TODO(brettw) figure out how to hook up the host factory. It needs some
20 host->GetPpapiHost()->AddHostFactoryFilter(
21 scoped_ptr<ppapi::host::HostFactory>(
22 new ChromeRendererPepperHostFactory(host)));
23 host->GetPpapiHost()->AddInstanceMessageFilter(
24 scoped_ptr<ppapi::host::InstanceMessageFilter>(
25 new PepperSharedMemoryMessageFilter(host)));

Completed in 813 milliseconds

1234567891011>>