HomeSort by relevance Sort by last modified time
    Searched refs:host_id (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /external/chromium_org/content/child/appcache/
appcache_backend_proxy.cc 11 void AppCacheBackendProxy::RegisterHost(int host_id) {
12 sender_->Send(new AppCacheHostMsg_RegisterHost(host_id));
15 void AppCacheBackendProxy::UnregisterHost(int host_id) {
16 sender_->Send(new AppCacheHostMsg_UnregisterHost(host_id));
19 void AppCacheBackendProxy::SetSpawningHostId(int host_id,
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_id
    [all...]
appcache_backend_proxy.h 23 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::AppCacheStatus GetStatus(int host_id) OVERRIDE;
42 virtual bool StartUpdate(int host_id) OVERRIDE;
43 virtual bool SwapCache(int host_id) OVERRIDE
    [all...]
appcache_dispatcher.h 35 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);
appcache_frontend_impl.h 14 virtual void OnCacheSelected(int host_id,
27 virtual void OnLogMessage(int host_id,
30 virtual void OnContentBlocked(int host_id, const GURL& manifest_url) OVERRIDE;
appcache_dispatcher.cc 35 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::AppCacheLogLevel>(log_level), message);
67 void AppCacheDispatcher::OnContentBlocked(int host_id,
69 frontend_->OnContentBlocked(host_id, manifest_url);
  /external/chromium_org/webkit/browser/appcache/
appcache_backend_impl.h 28 // 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, const GetStatusCallback& callback
    [all...]
appcache_backend_impl.cc 56 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);
    [all...]
  /external/chromium_org/ui/ozone/public/
gpu_platform_support_host.h 29 virtual void OnChannelEstablished(int host_id, IPC::Sender* sender) = 0;
32 virtual void OnChannelDestroyed(int host_id) = 0;
gpu_platform_support_host.cc 19 virtual void OnChannelEstablished(int host_id, IPC::Sender* sender) OVERRIDE {
21 virtual void OnChannelDestroyed(int host_id) OVERRIDE {}
  /external/chromium_org/content/browser/appcache/
appcache_dispatcher_host.h 41 void OnRegisterHost(int host_id);
42 void OnUnregisterHost(int host_id);
43 void OnSetSpawningHostId(int host_id, int spawning_host_id);
44 void OnSelectCache(int host_id, const GURL& document_url,
47 void OnSelectCacheForWorker(int host_id, int parent_process_id,
49 void OnSelectCacheForSharedWorker(int host_id, int64 appcache_id);
50 void OnMarkAsForeignEntry(int host_id, const GURL& document_url,
52 void OnGetStatus(int host_id, IPC::Message* reply_msg);
53 void OnStartUpdate(int host_id, IPC::Message* reply_msg);
54 void OnSwapCache(int host_id, IPC::Message* reply_msg)
    [all...]
appcache_dispatcher_host.cc 70 void AppCacheDispatcherHost::OnRegisterHost(int host_id) {
72 if (!backend_impl_.RegisterHost(host_id)) {
78 void AppCacheDispatcherHost::OnUnregisterHost(int host_id) {
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, int parent_process_id, int parent_host_id)
    [all...]
appcache_frontend_proxy.cc 16 int host_id, const appcache::AppCacheInfo& info) {
17 sender_->Send(new AppCacheMsg_CacheSelected(host_id, info));
45 void AppCacheFrontendProxy::OnLogMessage(int host_id,
48 sender_->Send(new AppCacheMsg_LogMessage(host_id, log_level, message));
51 void AppCacheFrontendProxy::OnContentBlocked(int host_id,
53 sender_->Send(new AppCacheMsg_ContentBlocked(host_id, manifest_url));
appcache_frontend_proxy.h 22 virtual void OnCacheSelected(int host_id,
34 virtual void OnLogMessage(int host_id, appcache::AppCacheLogLevel log_level,
36 virtual void OnContentBlocked(int host_id,
  /external/chromium_org/remoting/host/
pin_hash.h 14 std::string MakeHostPinHash(const std::string& host_id, const std::string& pin);
20 const std::string& host_id,
pin_hash.cc 14 std::string MakeHostPinHash(const std::string& host_id,
17 protocol::AuthenticationMethod::HMAC_SHA256, host_id, pin);
24 const std::string& host_id,
33 hash_parsed.hash_function, host_id, pin);
host_change_notification_listener.cc 25 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_ &&
  /external/chromium_org/webkit/common/appcache/
appcache_interfaces.h 153 int host_id, const appcache::AppCacheInfo& info) = 0;
164 virtual void OnContentBlocked(int host_id,
166 virtual void OnLogMessage(int host_id, AppCacheLogLevel log_level,
174 virtual void RegisterHost(int host_id) = 0;
175 virtual void UnregisterHost(int host_id) = 0;
176 virtual void SetSpawningHostId(int host_id, int spawning_host_id) = 0;
177 virtual void SelectCache(int host_id,
182 int host_id,
186 int host_id,
188 virtual void MarkAsForeignEntry(int host_id, const GURL& document_url
    [all...]
  /external/chromium_org/content/browser/gpu/
gpu_process_host_ui_shim.h 44 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);
gpu_process_host_ui_shim.cc 40 void SendOnIOThreadTask(int host_id, IPC::Message* msg) {
41 GpuProcessHost* host = GpuProcessHost::FromID(host_id);
50 ScopedSendOnIOThread(int host_id, IPC::Message* msg)
51 : host_id_(host_id),
89 void RouteToGpuProcessHostUIShimTask(int host_id, const IPC::Message& msg) {
90 GpuProcessHostUIShim* ui_shim = GpuProcessHostUIShim::FromID(host_id);
95 GpuProcessHostUIShim::GpuProcessHostUIShim(int host_id)
96 : host_id_(host_id) {
101 ->OnChannelEstablished(host_id, this);
106 GpuProcessHostUIShim* GpuProcessHostUIShim::Create(int host_id) {
    [all...]
  /external/chromium_org/components/signin/core/browser/
signin_client.h 70 virtual void SetSigninProcess(int host_id) = 0;
72 virtual bool IsSigninProcess(int host_id) const = 0;
test_signin_client.h 66 virtual void SetSigninProcess(int host_id) OVERRIDE;
68 virtual bool IsSigninProcess(int host_id) const OVERRIDE;
  /external/chromium_org/content/child/
shared_worker_devtools_agent.h 34 void OnAttach(const std::string& host_id);
35 void OnReattach(const std::string& host_id, const std::string& state);
  /external/chromium_org/content/renderer/service_worker/
embedded_worker_devtools_agent.h 33 void OnAttach(const std::string& host_id);
34 void OnReattach(const std::string& host_id, const std::string& state);
  /external/chromium_org/remoting/host/setup/
service_client.h 42 void RegisterHost(const std::string& host_id,
49 void UnregisterHost(const std::string& host_id,
service_client.cc 31 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_token, delegate)
    [all...]

Completed in 279 milliseconds

1 2 3 4 5