Searched defs:host_id (Results 1 - 25 of 50) sorted by relevance

12

/external/chromium_org/remoting/host/
H A Dpin_hash.cc14 std::string MakeHostPinHash(const std::string& host_id, argument
17 protocol::AuthenticationMethod::HMAC_SHA256, host_id, pin);
24 const std::string& host_id,
33 hash_parsed.hash_function, host_id, pin);
23 VerifyHostPinHash(const std::string& hash, const std::string& host_id, const std::string& pin) argument
H A Dhost_change_notification_listener.cc24 const std::string& host_id,
28 host_id_(host_id),
55 const std::string& host_id = local
59 if (host_id == host_id_ && from == directory_bot_jid_ &&
22 HostChangeNotificationListener( Listener* listener, const std::string& host_id, SignalStrategy* signal_strategy, const std::string& directory_bot_jid) argument
H A Dhost_status_sender.cc40 const std::string& host_id,
44 : host_id_(host_id),
39 HostStatusSender( const std::string& host_id, SignalStrategy* signal_strategy, scoped_refptr<RsaKeyPair> key_pair, const std::string& directory_bot_jid) argument
H A Dverify_config_window_win.cc22 const std::string& host_id, const std::string& host_secret_hash)
24 host_id_(host_id),
21 VerifyConfigWindowWin(const std::string& email, const std::string& host_id, const std::string& host_secret_hash) argument
/external/chromium_org/chrome/test/remoting/
H A Dme2me_browsertest.cc128 std::string host_id = ExecuteScriptAndExtractString( local
130 std::string node_id = "delete-client-" + host_id;
/external/chromium_org/content/browser/appcache/
H A Dappcache_backend_impl.h28 // value indicates an invalid host_id and that no action was taken
30 bool RegisterHost(int host_id);
31 bool UnregisterHost(int host_id);
32 bool SetSpawningHostId(int host_id, int spawning_host_id);
33 bool SelectCache(int host_id,
38 int host_id, std::vector<AppCacheResourceInfo>* resource_infos);
39 bool SelectCacheForWorker(int host_id, int parent_process_id,
41 bool SelectCacheForSharedWorker(int host_id, int64 appcache_id);
42 bool MarkAsForeignEntry(int host_id, const GURL& document_url,
44 bool GetStatusWithCallback(int host_id, cons
52 GetHost(int host_id) argument
[all...]
H A Dappcache_frontend_proxy.cc16 int host_id, const AppCacheInfo& info) {
17 sender_->Send(new AppCacheMsg_CacheSelected(host_id, info));
45 void AppCacheFrontendProxy::OnLogMessage(int host_id, argument
48 sender_->Send(new AppCacheMsg_LogMessage(host_id, log_level, message));
51 void AppCacheFrontendProxy::OnContentBlocked(int host_id, argument
53 sender_->Send(new AppCacheMsg_ContentBlocked(host_id, manifest_url));
15 OnCacheSelected( int host_id, const AppCacheInfo& info) argument
H A Dappcache_group_unittest.cc26 int host_id, const content::AppCacheInfo& info) OVERRIDE {
27 last_host_id_ = host_id;
49 virtual void OnLogMessage(int host_id, content::AppCacheLogLevel log_level,
53 virtual void OnContentBlocked(int host_id,
85 TestAppCacheHost(int host_id, AppCacheFrontend* frontend, argument
87 : AppCacheHost(host_id, frontend, service),
191 EXPECT_EQ(frontend.last_host_id_, host1.host_id());
196 EXPECT_EQ(frontend.last_host_id_, host2.host_id());
209 EXPECT_EQ(frontend.last_host_id_, host2.host_id());
H A Dappcache_interceptor.cc36 int host_id,
38 if (!service || (host_id == kAppCacheNoHostId))
47 AppCacheHost* host = backend->GetHost(host_id);
32 SetExtraRequestInfo( net::URLRequest* request, AppCacheServiceImpl* service, int process_id, int host_id, ResourceType resource_type) argument
H A Dappcache_backend_impl.cc56 int host_id,
58 AppCacheHost* host = GetHost(host_id);
66 int host_id,
70 AppCacheHost* host = GetHost(host_id);
80 int host_id, int parent_process_id, int parent_host_id) {
81 AppCacheHost* host = GetHost(host_id);
90 int host_id, int64 appcache_id) {
91 AppCacheHost* host = GetHost(host_id);
100 int host_id,
103 AppCacheHost* host = GetHost(host_id);
55 SetSpawningHostId( int host_id, int spawning_host_id) argument
65 SelectCache( int host_id, const GURL& document_url, const int64 cache_document_was_loaded_from, const GURL& manifest_url) argument
79 SelectCacheForWorker( int host_id, int parent_process_id, int parent_host_id) argument
89 SelectCacheForSharedWorker( int host_id, int64 appcache_id) argument
99 MarkAsForeignEntry( int host_id, const GURL& document_url, int64 cache_document_was_loaded_from) argument
111 GetStatusWithCallback( int host_id, const GetStatusCallback& callback, void* callback_param) argument
121 StartUpdateWithCallback( int host_id, const StartUpdateCallback& callback, void* callback_param) argument
131 SwapCacheWithCallback( int host_id, const SwapCacheCallback& callback, void* callback_param) argument
141 GetResourceList( int host_id, std::vector<AppCacheResourceInfo>* resource_infos) argument
150 TransferHostOut(int host_id) argument
[all...]
H A Dappcache_dispatcher_host.cc70 void AppCacheDispatcherHost::OnRegisterHost(int host_id) { argument
72 if (!backend_impl_.RegisterHost(host_id)) {
78 void AppCacheDispatcherHost::OnUnregisterHost(int host_id) { argument
80 if (!backend_impl_.UnregisterHost(host_id)) {
87 int host_id, int spawning_host_id) {
89 if (!backend_impl_.SetSpawningHostId(host_id, spawning_host_id))
95 int host_id, const GURL& document_url,
99 if (!backend_impl_.SelectCache(host_id,
106 frontend_proxy_.OnCacheSelected(host_id, AppCacheInfo());
111 int host_id, in
86 OnSetSpawningHostId( int host_id, int spawning_host_id) argument
94 OnSelectCache( int host_id, const GURL& document_url, int64 cache_document_was_loaded_from, const GURL& opt_manifest_url) argument
110 OnSelectCacheForWorker( int host_id, int parent_process_id, int parent_host_id) argument
122 OnSelectCacheForSharedWorker( int host_id, int64 appcache_id) argument
132 OnMarkAsForeignEntry( int host_id, const GURL& document_url, int64 cache_document_was_loaded_from) argument
143 OnGetResourceList( int host_id, std::vector<AppCacheResourceInfo>* params) argument
149 OnGetStatus(int host_id, IPC::Message* reply_msg) argument
168 OnStartUpdate(int host_id, IPC::Message* reply_msg) argument
188 OnSwapCache(int host_id, IPC::Message* reply_msg) argument
[all...]
H A Dappcache_host.h69 AppCacheHost(int host_id, AppCacheFrontend* frontend,
160 int host_id() const { return host_id_; } function in class:content::AppCacheHost
175 void CompleteTransfer(int host_id, AppCacheFrontend* frontend);
/external/chromium_org/content/renderer/service_worker/
H A Dembedded_worker_devtools_agent.cc46 void EmbeddedWorkerDevToolsAgent::OnAttach(const std::string& host_id) { argument
47 webworker_->attachDevTools(WebString::fromUTF8(host_id));
50 void EmbeddedWorkerDevToolsAgent::OnReattach(const std::string& host_id, argument
52 webworker_->reattachDevTools(WebString::fromUTF8(host_id),
/external/chromium_org/content/child/
H A Dshared_worker_devtools_agent.cc57 void SharedWorkerDevToolsAgent::OnAttach(const std::string& host_id) { argument
58 webworker_->attachDevTools(WebString::fromUTF8(host_id));
61 void SharedWorkerDevToolsAgent::OnReattach(const std::string& host_id, argument
63 webworker_->reattachDevTools(WebString::fromUTF8(host_id),
/external/chromium_org/content/browser/gpu/
H A Dshader_disk_cache.h36 void set_host_id(int host_id) { host_id_ = host_id; } argument
H A Dgpu_process_host.h97 static GpuProcessHost* FromID(int host_id);
98 int host_id() const { return host_id_; } function in class:content::GpuProcessHost
150 GpuProcessHost(int host_id, GpuProcessKind kind);
H A Dgpu_process_host_ui_shim.cc46 void SendOnIOThreadTask(int host_id, IPC::Message* msg) { argument
47 GpuProcessHost* host = GpuProcessHost::FromID(host_id);
56 ScopedSendOnIOThread(int host_id, IPC::Message* msg) argument
57 : host_id_(host_id),
95 void RouteToGpuProcessHostUIShimTask(int host_id, const IPC::Message& msg) { argument
96 GpuProcessHostUIShim* ui_shim = GpuProcessHostUIShim::FromID(host_id);
101 GpuProcessHostUIShim::GpuProcessHostUIShim(int host_id) argument
102 : host_id_(host_id) {
107 ->OnChannelEstablished(host_id, this);
112 GpuProcessHostUIShim* GpuProcessHostUIShim::Create(int host_id) { argument
118 Destroy(int host_id, const std::string& message) argument
144 FromID(int host_id) argument
[all...]
/external/chromium_org/content/child/appcache/
H A Dappcache_backend_proxy.cc11 void AppCacheBackendProxy::RegisterHost(int host_id) { argument
12 sender_->Send(new AppCacheHostMsg_RegisterHost(host_id));
15 void AppCacheBackendProxy::UnregisterHost(int host_id) { argument
16 sender_->Send(new AppCacheHostMsg_UnregisterHost(host_id));
19 void AppCacheBackendProxy::SetSpawningHostId(int host_id, argument
22 host_id, spawning_host_id));
26 int host_id,
31 host_id, document_url,
37 int host_id, int parent_process_id, int parent_host_id) {
39 host_id, parent_process_i
25 SelectCache( int host_id, const GURL& document_url, const int64 cache_document_was_loaded_from, const GURL& manifest_url) argument
36 SelectCacheForWorker( int host_id, int parent_process_id, int parent_host_id) argument
43 SelectCacheForSharedWorker( int host_id, int64 appcache_id) argument
49 MarkAsForeignEntry( int host_id, const GURL& document_url, int64 cache_document_was_loaded_from) argument
57 GetStatus(int host_id) argument
63 StartUpdate(int host_id) argument
69 SwapCache(int host_id) argument
75 GetResourceList( int host_id, std::vector<AppCacheResourceInfo>* resource_infos) argument
[all...]
H A Dappcache_dispatcher.cc35 int host_id, const AppCacheInfo& info) {
36 frontend_->OnCacheSelected(host_id, info);
62 int host_id, int log_level, const std::string& message) {
64 host_id, static_cast<AppCacheLogLevel>(log_level), message);
67 void AppCacheDispatcher::OnContentBlocked(int host_id, argument
69 frontend_->OnContentBlocked(host_id, manifest_url);
34 OnCacheSelected( int host_id, const AppCacheInfo& info) argument
61 OnLogMessage( int host_id, int log_level, const std::string& message) argument
H A Dappcache_frontend_impl.cc21 void AppCacheFrontendImpl::OnCacheSelected(int host_id, argument
23 WebApplicationCacheHostImpl* host = GetHost(host_id);
75 void AppCacheFrontendImpl::OnLogMessage(int host_id, argument
78 WebApplicationCacheHostImpl* host = GetHost(host_id);
83 void AppCacheFrontendImpl::OnContentBlocked(int host_id, argument
85 WebApplicationCacheHostImpl* host = GetHost(host_id);
H A Dweb_application_cache_host_impl.h29 int host_id() const { return host_id_; } function in class:content::WebApplicationCacheHostImpl
/external/chromium_org/ui/ozone/platform/dri/
H A Dgpu_platform_support_host_gbm.cc49 void GpuPlatformSupportHostGbm::OnChannelEstablished(int host_id, argument
53 "host_id",
54 host_id);
55 host_id_ = host_id;
64 handlers_[i]->OnChannelEstablished(host_id, sender);
70 void GpuPlatformSupportHostGbm::OnChannelDestroyed(int host_id) { argument
73 "host_id",
74 host_id);
75 if (host_id_ == host_id) {
84 handlers_[i]->OnChannelDestroyed(host_id);
[all...]
/external/chromium_org/content/browser/frame_host/
H A Dcross_process_frame_connector.cc69 int host_id,
76 params.producing_host_id = host_id;
67 ChildFrameCompositorFrameSwapped( uint32 output_surface_id, int host_id, int route_id, scoped_ptr<cc::CompositorFrame> frame) argument
/external/chromium_org/chrome/browser/printing/
H A Dprinting_message_filter.cc398 int host_id = render_process_id_; local
401 &host_id) ||
404 host_id = content::ChildProcessHost::kInvalidUniqueID;
407 printer_query = queue_->CreatePrinterQuery(host_id, routing_id);
/external/chromium_org/content/renderer/
H A Dchild_frame_compositing_helper.cc207 int host_id,
220 last_host_id_ != host_id) {
240 last_host_id_ = host_id;
203 OnCompositorFrameSwapped( scoped_ptr<cc::CompositorFrame> frame, int route_id, uint32 output_surface_id, int host_id, base::SharedMemoryHandle handle) argument

Completed in 8950 milliseconds

12