Searched refs:host_id (Results 1 - 25 of 103) sorted by relevance

12345

/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<appcache::AppCacheResourceInfo>* resource_infos) argument
[all...]
H A Dappcache_backend_proxy.h23 virtual void RegisterHost(int host_id) OVERRIDE;
24 virtual void UnregisterHost(int host_id) OVERRIDE;
25 virtual void SetSpawningHostId(int host_id, int spawning_host_id) OVERRIDE;
26 virtual void SelectCache(int host_id,
31 int host_id,
35 int host_id,
38 int host_id,
41 virtual appcache::Status GetStatus(int host_id) OVERRIDE;
42 virtual bool StartUpdate(int host_id) OVERRIDE;
43 virtual bool SwapCache(int host_id) OVERRID
[all...]
H A Dappcache_dispatcher.h35 void OnCacheSelected(int host_id, const appcache::AppCacheInfo& info);
44 void OnLogMessage(int host_id, int log_level, const std::string& message);
45 void OnContentBlocked(int host_id, const GURL& manifest_url);
H A Dappcache_frontend_impl.h14 virtual void OnCacheSelected(int host_id,
26 virtual void OnLogMessage(int host_id,
29 virtual void OnContentBlocked(int host_id, const GURL& manifest_url) OVERRIDE;
H A Dappcache_dispatcher.cc35 int host_id, const appcache::AppCacheInfo& info) {
36 frontend_->OnCacheSelected(host_id, info);
62 int host_id, int log_level, const std::string& message) {
64 host_id, static_cast<appcache::LogLevel>(log_level), message);
67 void AppCacheDispatcher::OnContentBlocked(int host_id, argument
69 frontend_->OnContentBlocked(host_id, manifest_url);
34 OnCacheSelected( int host_id, const appcache::AppCacheInfo& info) argument
61 OnLogMessage( int host_id, int log_level, const std::string& message) argument
H A Dappcache_frontend_impl.cc22 void AppCacheFrontendImpl::OnCacheSelected(int host_id, argument
24 WebApplicationCacheHostImpl* host = GetHost(host_id);
74 void AppCacheFrontendImpl::OnLogMessage(int host_id, argument
77 WebApplicationCacheHostImpl* host = GetHost(host_id);
82 void AppCacheFrontendImpl::OnContentBlocked(int host_id, argument
84 WebApplicationCacheHostImpl* host = GetHost(host_id);
/external/chromium_org/webkit/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_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<appcache::AppCacheResourceInfo>* resource_infos) argument
150 TransferHostOut(int host_id) argument
[all...]
/external/chromium_org/content/browser/appcache/
H A Dappcache_dispatcher_host.h42 void OnRegisterHost(int host_id);
43 void OnUnregisterHost(int host_id);
44 void OnSetSpawningHostId(int host_id, int spawning_host_id);
45 void OnSelectCache(int host_id, const GURL& document_url,
48 void OnSelectCacheForWorker(int host_id, int parent_process_id,
50 void OnSelectCacheForSharedWorker(int host_id, int64 appcache_id);
51 void OnMarkAsForeignEntry(int host_id, const GURL& document_url,
53 void OnGetStatus(int host_id, IPC::Message* reply_msg);
54 void OnStartUpdate(int host_id, IPC::Message* reply_msg);
55 void OnSwapCache(int host_id, IP
[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, appcache::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<appcache::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_frontend_proxy.cc16 int host_id, const appcache::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 appcache::AppCacheInfo& info) argument
H A Dappcache_frontend_proxy.h22 virtual void OnCacheSelected(int host_id,
33 virtual void OnLogMessage(int host_id, appcache::LogLevel log_level,
35 virtual void OnContentBlocked(int host_id,
/external/chromium_org/remoting/host/
H A Dpin_hash.h14 std::string MakeHostPinHash(const std::string& host_id, const std::string& pin);
20 const std::string& host_id,
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.cc25 const std::string& host_id,
29 host_id_(host_id),
56 const std::string& host_id = local
60 if (host_id == host_id_ && from == directory_bot_jid_ &&
23 HostChangeNotificationListener( Listener* listener, const std::string& host_id, SignalStrategy* signal_strategy, const std::string& directory_bot_jid) argument
/external/chromium_org/webkit/common/appcache/
H A Dappcache_interfaces.h123 int host_id, const appcache::AppCacheInfo& info) = 0;
133 virtual void OnContentBlocked(int host_id,
135 virtual void OnLogMessage(int host_id, LogLevel log_level,
143 virtual void RegisterHost(int host_id) = 0;
144 virtual void UnregisterHost(int host_id) = 0;
145 virtual void SetSpawningHostId(int host_id, int spawning_host_id) = 0;
146 virtual void SelectCache(int host_id,
151 int host_id,
155 int host_id,
157 virtual void MarkAsForeignEntry(int host_id, cons
[all...]
/external/chromium_org/content/renderer/devtools/
H A Ddevtools_agent_filter.cc23 MessageImpl(const std::string& message, int host_id) argument
25 host_id(host_id) {
29 DevToolsAgent* agent = DevToolsAgent::FromHostId(host_id);
37 int host_id; member in class:content::__anon8445::MessageImpl
/external/chromium/chrome/browser/
H A Dgpu_process_host_ui_shim.h42 RouteToGpuProcessHostUIShimTask(int host_id, const IPC::Message& msg);
59 static GpuProcessHostUIShim* Create(int host_id);
64 static void Destroy(int host_id);
69 static GpuProcessHostUIShim* FromID(int host_id);
86 static void SendToGpuHost(int host_id, IPC::Message* msg);
90 explicit GpuProcessHostUIShim(int host_id);
H A Dgpu_process_host_ui_shim.cc44 SendOnIOThreadTask(int host_id, IPC::Message* msg) argument
45 : host_id_(host_id),
98 int host_id,
100 : host_id_(host_id),
113 GpuProcessHostUIShim::GpuProcessHostUIShim(int host_id) argument
114 : host_id_(host_id),
118 if (host_id == 0) {
129 GpuProcessHostUIShim* GpuProcessHostUIShim::Create(int host_id) { argument
130 DCHECK(!FromID(host_id));
131 return new GpuProcessHostUIShim(host_id);
97 RouteToGpuProcessHostUIShimTask( int host_id, const IPC::Message& msg) argument
135 Destroy(int host_id) argument
150 FromID(int host_id) argument
194 SendToGpuHost(int host_id, IPC::Message* msg) argument
[all...]
/external/chromium/chrome/common/remoting/
H A Dchromoting_host_info.h17 std::string host_id; member in struct:remoting::ChromotingHostInfo
/external/chromium_org/content/browser/gpu/
H A Dgpu_process_host_ui_shim.h44 void RouteToGpuProcessHostUIShimTask(int host_id, const IPC::Message& msg);
52 static GpuProcessHostUIShim* Create(int host_id);
57 static void Destroy(int host_id, const std::string& message);
62 CONTENT_EXPORT static GpuProcessHostUIShim* FromID(int host_id);
82 explicit GpuProcessHostUIShim(int host_id);
H A Dgpu_process_host_ui_shim.cc42 void SendOnIOThreadTask(int host_id, IPC::Message* msg) { argument
43 GpuProcessHost* host = GpuProcessHost::FromID(host_id);
52 ScopedSendOnIOThread(int host_id, IPC::Message* msg) argument
53 : host_id_(host_id),
91 void RouteToGpuProcessHostUIShimTask(int host_id, const IPC::Message& msg) { argument
92 GpuProcessHostUIShim* ui_shim = GpuProcessHostUIShim::FromID(host_id);
97 GpuProcessHostUIShim::GpuProcessHostUIShim(int host_id) argument
98 : host_id_(host_id) {
103 GpuProcessHostUIShim* GpuProcessHostUIShim::Create(int host_id) { argument
104 DCHECK(!FromID(host_id));
109 Destroy(int host_id, const std::string& message) argument
129 FromID(int host_id) argument
[all...]
/external/chromium_org/remoting/host/setup/
H A Dservice_client.h42 void RegisterHost(const std::string& host_id,
49 void UnregisterHost(const std::string& host_id,
H A Dservice_client.cc31 void RegisterHost(const std::string& host_id,
38 void UnregisterHost(const std::string& host_id,
70 const std::string& host_id,
79 post_body.SetString("data.hostId", host_id);
95 const std::string& host_id,
101 host_id,
179 const std::string& host_id,
185 return core_->RegisterHost(host_id, host_name, public_key, host_client_id,
190 const std::string& host_id,
193 return core_->UnregisterHost(host_id, oauth_access_toke
69 RegisterHost( const std::string& host_id, const std::string& host_name, const std::string& public_key, const std::string& host_client_id, const std::string& oauth_access_token, Delegate* delegate) argument
94 UnregisterHost( const std::string& host_id, const std::string& oauth_access_token, Delegate* delegate) argument
178 RegisterHost( const std::string& host_id, const std::string& host_name, const std::string& public_key, const std::string& host_client_id, const std::string& oauth_access_token, Delegate* delegate) argument
189 UnregisterHost( const std::string& host_id, const std::string& oauth_access_token, Delegate* delegate) argument
[all...]
/external/chromium_org/content/worker/
H A Dworker_webapplicationcachehost_impl.cc17 backend()->SelectCacheForSharedWorker(host_id(),

Completed in 395 milliseconds

12345