Searched defs:host (Results 1 - 25 of 1032) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/extensions/
H A Dalert_apitest.cc21 extensions::ExtensionHost* host = local
24 ASSERT_TRUE(host);
25 host->host_contents()->GetMainFrame()->ExecuteJavaScript(
H A Dgpu_browsertest.cc23 extensions::ExtensionHost* host = local
25 ASSERT_TRUE(host->host_contents()->GetDelegate()->IsNeverVisible(
26 host->host_contents()));
/external/chromium_org/ppapi/host/
H A Derror_conversion.cc5 #include "ppapi/host/error_conversion.h"
12 namespace host { namespace in namespace:ppapi
74 } // namespace host
H A Derror_conversion.h9 #include "ppapi/host/ppapi_host_export.h"
12 namespace host { namespace in namespace:ppapi
18 } // namespace host
H A Dmessage_filter_host.h10 #include "ppapi/host/ppapi_host_export.h"
11 #include "ppapi/host/resource_host.h"
14 namespace host { namespace in namespace:ppapi
22 // thread. This class can be used as the host in those cases.
25 MessageFilterHost(PpapiHost* host,
35 } // namespace 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
H A Dresource_message_handler.h10 #include "ppapi/host/ppapi_host_export.h"
17 namespace host { namespace in namespace:ppapi
71 } // namespace host
H A Dinstance_message_filter.h9 #include "ppapi/host/ppapi_host_export.h"
16 namespace host { namespace in namespace:ppapi
22 explicit InstanceMessageFilter(PpapiHost* host);
30 PpapiHost* host() { return host_; } function in class:ppapi::host::InstanceMessageFilter
38 } // namespace host
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dprint-layout-test-times33 from webkitpy.common import host namespace
36 print_layout_test_times.main(host.Host(), sys.argv[1:])
H A Dprint-layout-test-types33 from webkitpy.common import host namespace
36 print_layout_test_types.main(host.Host(), sys.argv[1:])
H A Dupdate-w3c-deps14 host = SystemHost() variable
15 updater = DepsUpdater(host)
17 host.exit(updater.main())
19 host.print_("Interrupted, exiting")
20 host.exit(130)
/external/chromium_org/media/cdm/ppapi/external_clear_key/
H A Dcdm_video_decoder.cc24 ClearKeyCdmHost* host, const cdm::VideoDecoderConfig& config) {
27 video_decoder.reset(new FakeCdmVideoDecoder(host));
36 video_decoder.reset(new LibvpxCdmVideoDecoder(host));
46 video_decoder.reset(new FFmpegCdmVideoDecoder(host));
23 CreateVideoDecoder( ClearKeyCdmHost* host, const cdm::VideoDecoderConfig& config) argument
/external/chromium_org/remoting/webapp/unittests/
H A Dit2me_helpee_channel_unittest.js11 var host = null; variable
26 host = {
44 host,
65 'isHostInstalled() should return false if host is not installed',
83 QUnit.asyncTest('isHostInstalled() should return true if host is installed',
101 test('downloadHost() should trigger a host download',
134 sinon.stub(host, 'initialized').returns(true);
135 sinon.stub(host, 'connect')
137 sinon.stub(host, 'getAccessCode').returns('accessCode');
160 sinon.spy(host, 'disconnec
[all...]
/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)));
/external/chromium_org/components/nacl/browser/
H A Dnacl_browser_delegate.h20 namespace host { namespace in namespace:ppapi
56 virtual ppapi::host::HostFactory* CreatePpapiHostFactory(
/external/chromium_org/components/nacl/renderer/
H A Dnacl_helper.cc16 void NaClHelper::DidCreatePepperPlugin(content::RendererPpapiHost* host) { argument
17 // The Native Client plugin is a host for external plugins.
18 if (host->GetPluginName() == "Native Client")
19 host->SetToExternalPluginHost();
/external/chromium_org/content/renderer/
H A Dwebpublicsuffixlist_impl.cc15 const blink::WebString& host) {
17 host.utf8(),
20 return result ? result : host.length();
14 getPublicSuffixLength( const blink::WebString& host) argument
/external/chromium_org/net/tools/flip_server/
H A Dspdy_util.cc16 std::string EncodeURL(std::string uri, std::string host, std::string method) { argument
18 // TODO(mbelshe): if uri is fully qualified, need to strip protocol/host.
26 "http://" + host + uri, method + "_/", false);
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DDraggedIsolatedFileSystem.h48 static PassOwnPtrWillBeRawPtr<DraggedIsolatedFileSystem> create(DataObject& host, const String& filesystemId) argument
50 return adoptPtrWillBeNoop(new DraggedIsolatedFileSystem(host, filesystemId));
53 static DOMFileSystem* getDOMFileSystem(DataObject* host, ExecutionContext*);
61 DraggedIsolatedFileSystem(DataObject& host, const String& filesystemId);
/external/chromium_org/ui/aura/test/
H A Daura_test_utils.cc14 explicit WindowTreeHostTestApi(WindowTreeHost* host) : host_(host) {} argument
26 const gfx::Point& QueryLatestMousePositionRequestInHost(WindowTreeHost* host) { argument
27 WindowTreeHostTestApi host_test_api(host);
/external/ipsec-tools/src/racoon/
H A Dthrottle.h40 struct sockaddr_storage host; member in struct:throttle_entry
/external/libnl/src/
H A Dnl-util-addr.c17 char host[256]; local
26 err = nl_addr_resolve(a, host, sizeof(host));
31 printf("%s\n", host);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DHostResolver.java27 @Override public InetAddress[] getAllByName(String host) throws UnknownHostException {
28 if (host == null) throw new UnknownHostException("host == null");
29 return InetAddress.getAllByName(host);
33 InetAddress[] getAllByName(String host) throws UnknownHostException; argument
/external/apache-http/src/org/apache/http/conn/
H A DHttpHostConnectException.java50 private final HttpHost host; field in class:HttpHostConnectException
52 public HttpHostConnectException(final HttpHost host, final ConnectException cause) { argument
53 super("Connection to " + host + " refused");
54 this.host = host;
59 return this.host;
/external/apache-http/src/org/apache/http/conn/scheme/
H A DLayeredSocketFactory.java54 * Returns a socket connected to the given host that is layered over an
59 * @param host the host name/IP
60 * @param port the port on the host
67 * @throws UnknownHostException if the IP address of the host cannot be
72 String host,
70 createSocket( Socket socket, String host, int port, boolean autoClose ) argument

Completed in 2307 milliseconds

1234567891011>>