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

  /external/chromium_org/third_party/WebKit/public/web/
WebServiceWorkerContextProxy.h 47 virtual void dispatchActivateEvent(int eventID) = 0;
54 virtual void dispatchPushEvent(int eventID, const WebString& data) = 0;
WebServiceWorkerContextClient.h 108 virtual void didHandleActivateEvent(int eventID, WebServiceWorkerEventResult result) { }
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
condition_variable_event_win.cc 128 // Get the eventID for the event that will be triggered by next
130 const EventWakeUpType eventID =
133 ++(num_waiters_[eventID]);
141 events[1] = events_[eventID];
150 --(num_waiters_[eventID]);
155 (num_waiters_[eventID] == 0);
161 ResetEvent(events_[eventID]);
186 const EventWakeUpType eventID = eventID_;
187 const bool have_waiters = num_waiters_[eventID] > 0;
191 SetEvent(events_[eventID]);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
RespondWithObserver.h 25 static RespondWithObserver* create(ExecutionContext*, int eventID);
43 RespondWithObserver(ExecutionContext*, int eventID);
WaitUntilObserver.h 27 static WaitUntilObserver* create(ExecutionContext*, EventType, int eventID);
42 WaitUntilObserver(ExecutionContext*, EventType, int eventID);
RespondWithObserver.cpp 66 RespondWithObserver* RespondWithObserver::create(ExecutionContext* context, int eventID)
68 return new RespondWithObserver(context, eventID);
123 RespondWithObserver::RespondWithObserver(ExecutionContext* context, int eventID)
125 , m_eventID(eventID)
ServiceWorkerGlobalScopeClient.h 60 virtual void didHandleActivateEvent(int eventID, WebServiceWorkerEventResult) = 0;
WaitUntilObserver.cpp 64 WaitUntilObserver* WaitUntilObserver::create(ExecutionContext* context, EventType type, int eventID)
66 return new WaitUntilObserver(context, type, eventID);
87 WaitUntilObserver::WaitUntilObserver(ExecutionContext* context, EventType type, int eventID)
90 , m_eventID(eventID)
  /external/chromium_org/third_party/WebKit/Source/web/
ServiceWorkerGlobalScopeProxy.cpp 66 void ServiceWorkerGlobalScopeProxy::dispatchInstallEvent(int eventID)
69 WaitUntilObserver* observer = WaitUntilObserver::create(m_workerGlobalScope, WaitUntilObserver::Install, eventID);
75 void ServiceWorkerGlobalScopeProxy::dispatchActivateEvent(int eventID)
78 WaitUntilObserver* observer = WaitUntilObserver::create(m_workerGlobalScope, WaitUntilObserver::Activate, eventID);
84 void ServiceWorkerGlobalScopeProxy::dispatchFetchEvent(int eventID, const WebServiceWorkerRequest& webRequest)
87 RespondWithObserver* observer = RespondWithObserver::create(m_workerGlobalScope, eventID);
109 void ServiceWorkerGlobalScopeProxy::dispatchPushEvent(int eventID, const WebString& data)
115 void ServiceWorkerGlobalScopeProxy::dispatchSyncEvent(int eventID)
120 ServiceWorkerGlobalScopeClient::from(m_workerGlobalScope)->didHandleSyncEvent(eventID);
ServiceWorkerGlobalScopeClientImpl.cpp 67 void ServiceWorkerGlobalScopeClientImpl::didHandleActivateEvent(int eventID, WebServiceWorkerEventResult result)
69 m_client.didHandleActivateEvent(eventID, result);
ServiceWorkerGlobalScopeClientImpl.h 54 virtual void didHandleActivateEvent(int eventID, WebServiceWorkerEventResult) OVERRIDE;
  /external/webrtc/src/system_wrappers/source/
condition_variable_win.cc 144 // Get the eventID for the event that will be triggered by next
146 const EventWakeUpType eventID = (WAKEALL_0 == _eventID) ?
148 ++(_numWaiters[eventID]);
154 events[1] = _events[eventID];
163 --(_numWaiters[eventID]);
167 (_numWaiters[eventID] == 0);
174 ResetEvent(_events[eventID]);
214 const EventWakeUpType eventID = _eventID;
215 const bool haveWaiters = _numWaiters[eventID] > 0;
220 SetEvent(_events[eventID]);
    [all...]
  /frameworks/av/media/libstagefright/
TimedEventQueue.cpp 145 return event->eventID();
153 if (event->eventID() != *id) {
192 ALOGV("cancelling event %d", (*it).event->eventID());
234 event_id eventID = 0;
243 eventID = (*it).event->eventID();
288 event = removeEventFromQueue_l(eventID, &wakeLocked);
306 if ((*it).event->eventID() == id) {
AwesomePlayer.cpp 258 mQueue.cancelEvent(mVideoEvent->eventID());
260 mQueue.cancelEvent(mVideoLagEvent->eventID());
264 mQueue.cancelEvent(mAudioTearDownEvent->eventID());
269 mQueue.cancelEvent(mStreamDoneEvent->eventID());
271 mQueue.cancelEvent(mCheckAudioStatusEvent->eventID());
274 mQueue.cancelEvent(mBufferingEvent->eventID());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/appcache/
ApplicationCacheHost.h 67 enum EventID {
127 void notifyApplicationCache(EventID, int progressTotal, int progressDone, WebApplicationCacheHost::ErrorReason, const String& errorURL, int errorStatus, const String& errorMessage);
141 virtual void notifyEventListener(WebApplicationCacheHost::EventID) OVERRIDE FINAL;
149 EventID eventID;
156 DeferredEvent(EventID id, int progressTotal, int progressDone, WebApplicationCacheHost::ErrorReason errorReason, const String& errorURL, int errorStatus, const String& errorMessage)
157 : eventID(id)
173 void dispatchDOMEvent(EventID, int progressTotal, int progressDone, WebApplicationCacheHost::ErrorReason, const String& errorURL, int errorStatus, const String& errorMessage);
ApplicationCacheHost.cpp 180 void ApplicationCacheHost::notifyApplicationCache(EventID id, int progressTotal, int progressDone, WebApplicationCacheHost::ErrorReason errorReason, const String& errorURL, int errorStatus, const String& errorMessage)
222 dispatchDOMEvent(deferred.eventID, deferred.progressTotal, deferred.progressDone, deferred.errorReason, deferred.errorURL, deferred.errorStatus, deferred.errorMessage);
228 void ApplicationCacheHost::dispatchDOMEvent(EventID id, int progressTotal, int progressDone, WebApplicationCacheHost::ErrorReason errorReason, const String& errorURL, int errorStatus, const String& errorMessage)
278 void ApplicationCacheHost::notifyEventListener(WebApplicationCacheHost::EventID eventID)
280 notifyApplicationCache(static_cast<ApplicationCacheHost::EventID>(eventID), 0, 0, WebApplicationCacheHost::UnknownError, String(), 0, String());
  /frameworks/av/media/libstagefright/include/
TimedEventQueue.h 41 event_id eventID() {
  /external/sonivox/jet_tools/JetCreator/
JetPreview.py 75 def TriggerClip(self, eventID):
79 self.jet.TriggerClip(eventID)
80 logging.info("TriggerClip() eventID: %d" % eventID)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
sensorsapi.h     [all...]
  /prebuilts/tools/common/netbeans-visual/
org-netbeans-api-visual.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 1700 milliseconds