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

  /external/chromium_org/content/child/service_worker/
service_worker_message_filter.cc 23 int handle_id) {
24 if (handle_id == kInvalidServiceWorkerHandleId)
27 new ServiceWorkerHostMsg_DecrementServiceWorkerRefCount(handle_id));
32 int handle_id) {
33 if (handle_id == kInvalidServiceWorkerRegistrationHandleId)
36 new ServiceWorkerHostMsg_DecrementRegistrationRefCount(handle_id));
87 attrs.installing.handle_id);
89 attrs.waiting.handle_id);
91 attrs.active.handle_id);
92 SendRegistrationObjectDestroyed(thread_safe_sender_.get(), info.handle_id);
    [all...]
service_worker_registration_handle_reference.cc 35 DCHECK_NE(kInvalidServiceWorkerRegistrationHandleId, info_.handle_id);
40 new ServiceWorkerHostMsg_IncrementRegistrationRefCount(info_.handle_id));
46 new ServiceWorkerHostMsg_DecrementRegistrationRefCount(info_.handle_id));
service_worker_handle_reference.cc 34 info_.handle_id != kInvalidServiceWorkerHandleId) {
37 info_.handle_id));
42 if (info_.handle_id != kInvalidServiceWorkerHandleId) {
45 info_.handle_id));
service_worker_provider_context.cc 82 DCHECK_NE(kInvalidServiceWorkerRegistrationHandleId, info.handle_id);
102 int handle_id,
105 if (handle_id == controller_handle_id())
107 else if (handle_id == active_handle_id())
109 else if (handle_id == waiting_handle_id())
111 else if (handle_id == installing_handle_id())
164 return installing_ ? installing_->info().handle_id
170 return waiting_ ? waiting_->info().handle_id
176 return active_ ? active_->info().handle_id
182 return controller_ ? controller_->info().handle_id
    [all...]
service_worker_registration_handle_reference.h 34 int handle_id() const { return info_.handle_id; } function in class:content::ServiceWorkerRegistrationHandleReference
service_worker_dispatcher.cc 229 if (info.handle_id == kInvalidServiceWorkerHandleId)
233 service_workers_.find(info.handle_id);
258 registrations_.find(info.handle_id);
275 if (info.handle_id == kInvalidServiceWorkerRegistrationHandleId)
298 if (attrs.installing.handle_id != kInvalidServiceWorkerHandleId)
299 worker_to_provider_[attrs.installing.handle_id] = provider->second;
300 if (attrs.waiting.handle_id != kInvalidServiceWorkerHandleId)
301 worker_to_provider_[attrs.waiting.handle_id] = provider->second;
302 if (attrs.active.handle_id != kInvalidServiceWorkerHandleId)
303 worker_to_provider_[attrs.active.handle_id] = provider->second
    [all...]
service_worker_handle_reference.h 37 int handle_id() const { return info_.handle_id; } function in class:content::ServiceWorkerHandleReference
web_service_worker_impl.cc 32 dispatcher->AddServiceWorker(handle_ref_->handle_id(), this);
36 if (handle_ref_->handle_id() == kInvalidServiceWorkerHandleId)
41 dispatcher->RemoveServiceWorker(handle_ref_->handle_id());
87 handle_ref_->handle_id(),
web_service_worker_registration_impl.cc 28 handle_ref_->handle_id());
32 dispatcher->AddServiceWorkerRegistration(handle_ref_->handle_id(), this);
39 dispatcher->RemoveServiceWorkerRegistration(handle_ref_->handle_id());
service_worker_dispatcher.h 183 int handle_id,
217 // Keeps map from handle_id to ServiceWorker object.
218 void AddServiceWorker(int handle_id, WebServiceWorkerImpl* worker);
219 void RemoveServiceWorker(int handle_id);
service_worker_provider_context.h 45 void OnServiceWorkerStateChanged(int handle_id,
  /external/chromium_org/content/common/service_worker/
service_worker_types.cc 52 : handle_id(kInvalidServiceWorkerHandleId),
56 : handle_id(kInvalidServiceWorkerRegistrationHandleId) {}
service_worker_types.h 123 int handle_id; member in struct:content::ServiceWorkerObjectInfo
131 int handle_id; member in struct:content::ServiceWorkerRegistrationObjectInfo
service_worker_messages.h 73 IPC_STRUCT_TRAITS_MEMBER(handle_id)
80 IPC_STRUCT_TRAITS_MEMBER(handle_id)
118 int /* handle_id */,
135 int /* handle_id */)
137 int /* handle_id */)
295 int /* handle_id */,
  /external/chromium_org/content/browser/service_worker/
service_worker_dispatcher_host.h 105 void OnPostMessage(int handle_id,
108 void OnIncrementServiceWorkerRefCount(int handle_id);
109 void OnDecrementServiceWorkerRefCount(int handle_id);
112 void OnPostMessageToWorker(int handle_id,
115 void OnServiceWorkerObjectDestroyed(int handle_id);
service_worker_dispatcher_host.cc 202 int handle_id = handle->handle_id(); local
203 handles_.AddWithID(handle.release(), handle_id);
208 int handle_id = handle->handle_id(); local
209 registration_handles_.AddWithID(handle.release(), handle_id);
372 int handle_id,
380 ServiceWorkerHandle* handle = handles_.Lookup(handle_id);
617 int handle_id) {
620 ServiceWorkerHandle* handle = handles_.Lookup(handle_id);
    [all...]
service_worker_handle_unittest.cc 109 VerifyStateChangedMessage(handle->handle_id(),
116 VerifyStateChangedMessage(handle->handle_id(),
service_worker_handle.h 74 int handle_id() const { return handle_id_; } function in class:content::ServiceWorkerHandle
service_worker_registration_handle.h 45 int handle_id() const { return handle_id_; } function in class:content::ServiceWorkerRegistrationHandle
service_worker_handle.cc 111 info.handle_id = handle_id_;
service_worker_registration_handle.cc 43 info.handle_id = handle_id_;
  /external/chromium_org/content/renderer/
speech_recognition_dispatcher.h 59 const blink::WebSpeechRecognitionHandle& GetHandleFromID(int handle_id);
  /external/chromium_org/media/tools/constrained_network_server/
traffic_control_test.py 160 handle_id = traffic_control._GetFilterHandleId(config['interface'],
162 self.assertNotEqual(handle_id, None)
traffic_control.py 259 handle_id = _GetFilterHandleId(interface, port)
261 'parent', '1:0', 'handle', handle_id, 'prio', '1', 'u32']
  /external/chromium_org/third_party/libusb/src/libusb/
hotplug.c 208 static int handle_id = 1; local
244 new_callback->handle = handle_id++;

Completed in 463 milliseconds