Searched defs:timerID (Results 1 - 25 of 33) sorted by relevance

12

/external/webkit/WebKit/android/plugins/
H A DPluginTimer.h40 void (*proc)(NPP npp, uint32 timerID));
43 uint32 timerID() const { return m_timerID; } function in class:WebCore::PluginTimer
47 static PluginTimer* Find(PluginTimer* list, uint32 timerID);
72 void (*proc)(NPP npp, uint32 timerID));
73 void unschedule(NPP instance, uint32 timerID);
H A DPluginTimer.cpp35 void (*timerFunc)(NPP npp, uint32 timerID))
73 // may return null if timerID is not found
74 PluginTimer* PluginTimer::Find(PluginTimer* list, uint32 timerID) argument
78 if (curr->m_timerID == timerID) {
96 void (*proc)(NPP npp, uint32 timerID))
106 return timer->timerID();
109 void PluginTimerList::unschedule(NPP instance, uint32 timerID) argument
116 PluginTimer* timer = PluginTimer::Find(m_list, timerID);
34 PluginTimer(PluginTimer** list, NPP instance, bool repeat, void (*timerFunc)(NPP npp, uint32 timerID)) argument
95 schedule(NPP instance, uint32 interval, bool repeat, void (*proc)(NPP npp, uint32 timerID)) argument
/external/opencore/protocols/systems/3g-324m_pvterminal/h245/se/src/
H A Dsebase.cpp57 void SEBase::RequestTimer(int32 timerID, int32 timeoutInfo, int32 count, OsclTimerObserver *observer) argument
61 MySE->RequestTimer(timerID, timeoutInfo, count, observer);
65 void SEBase::CancelTimer(int32 timerID) argument
69 MySE->CancelTimer(timerID);
H A Dmt.cpp141 void MT::TimeoutOccurred(int32 timerID, int32 timeoutInfo) argument
143 Print("MT::TimeoutOccurred Error: T104 timer timed out for timerID(%d), timeoutInfo(%d)", timerID, timeoutInfo);
144 PendingMtSendMap::iterator iter = iPendingMtSend.find(timerID);
147 Print("MT::TimeoutOccurred Error: Failed to lookup pending MultiplexEntrySend for sequence number %d", timerID);
/external/opencore/protocols/systems/tools/general/common/src/
H A Dpvmf_file_data_source.cpp36 void PVMFFileDataSource::TimeoutOccurred(int32 timerID, int32 timeoutInfo) argument
38 OSCL_UNUSED_ARG(timerID);
H A Dpvmf_buffer_data_source.cpp88 void PVMFBufferDataSource::TimeoutOccurred(int32 timerID, int32 timeoutInfo) argument
90 OSCL_UNUSED_ARG(timerID);
/external/qemu/distrib/sdl-1.2.12/src/timer/win32/
H A DSDL_systimer.c113 static UINT timerID = 0; variable
133 timerID = timeSetEvent(TIMER_RESOLUTION,1,HandleAlarm,0,TIME_PERIODIC);
134 if ( ! timerID ) {
143 if ( timerID ) {
144 timeKillEvent(timerID);
/external/webkit/WebCore/platform/graphics/win/
H A DQTMovieWinTimer.cpp38 static UINT_PTR timerID; variable
54 } else if (message == WM_TIMER && wParam == timerID) {
114 timerID = SetTimer(timerWindowHandle, timerFiredMessage, intervalInMS, 0);
119 if (timerID) {
120 KillTimer(timerWindowHandle, timerID);
121 timerID = 0;
/external/webkit/WebCore/platform/wince/
H A DSharedTimerWince.cpp48 static UINT timerID = TimerIdNone; member in namespace:WebCore
61 if (timerID != TimerIdNone)
64 if (timerID = TimerIdManual) {
110 if (timerID == TimerIdAuto) {
112 timerID = TimerIdNone;
117 timerID = TimerIdAuto;
118 else if (timerID != TimerIdManual)
124 if (timerID == TimerIdAuto)
127 timerID = TimerIdNone;
/external/opencore/protocols/systems/3g-324m_pvterminal/h324/tsc/src/
H A Dtscsrpbuffer.cpp288 void TscSrpBuffer::TimeoutOccurred(int32 timerID, int32 timeoutInfo) argument
290 OSCL_UNUSED_ARG(timerID);
H A Dtscmain.cpp1254 void TSC_324m::TimeoutOccurred(int32 timerID, int32 timeoutInfo) argument
1260 if (timerID == PV_TSC_RTD_TIMER_ID)
1267 else if (timerID == PV_TSC_LEVEL_SETUP_TIMER_ID)
1293 else if (timerID == PV_TSC_TCS_RECEIVE_TIMER_ID)
1301 iTSCcomponent->TimeoutOccurred(timerID, timeoutInfo);
/external/qemu/distrib/sdl-1.2.12/src/timer/wince/
H A DSDL_systimer.c149 static UINT timerID = 0; variable
169 timerID = timeSetEvent(TIMER_RESOLUTION,1,HandleAlarm,0,TIME_PERIODIC);
170 if ( ! timerID ) {
179 if ( timerID ) {
180 timeKillEvent(timerID);
/external/webkit/WebCore/platform/win/
H A DSharedTimerWin.cpp65 static UINT timerID; member in namespace:WebCore
200 if (timerID) {
201 KillTimer(timerWindowHandle, timerID);
202 timerID = 0;
205 timerID = SetTimer(timerWindowHandle, sharedTimerID, intervalInMS, 0);
217 if (timerID) {
218 KillTimer(timerWindowHandle, timerID);
219 timerID = 0;
/external/opencore/oscl/oscl/osclproc/src/
H A Doscl_timer.h56 * @param timerID The ID given at timer request.
60 virtual void TimeoutOccurred(int32 timerID, int32 timeoutInfo) = 0;
149 * @param timerID used to identify the timer for cancellation. This value
159 void Request(int32 timerID, int32 timeoutInfo, int32 cycles, OsclTimerObserver *obs = 0, bool recurring = 0);
163 * @param timerID used to identify the timer to cancel.
168 void Cancel(int32 timerID, int32 timeoutInfo = -1);
263 void OsclTimer<Alloc>::Request(int32 timerID, int32 param, int32 cycles, OsclTimerObserver *obs, bool recurring) argument
268 entry->iTimerID = timerID;
297 void OsclTimer<Alloc>::Cancel(int32 timerID, int32 param) argument
304 entry->iTimerID = timerID;
[all...]
/external/opencore/protocols/systems/3g-324m_pvterminal/h245/se/include/
H A Dce.h223 void TimeoutOccurred(int32 timerID, int32 timeoutInfo) argument
226 OSCL_UNUSED_ARG(timerID);
H A Dmsd.h227 void TimeoutOccurred(int32 timerID, int32 timeoutInfo) argument
231 OSCL_UNUSED_ARG(timerID);
H A Dlcblc.h312 void TimeoutOccurred(int32 timerID, int32 timeoutInfo) argument
H A Dse.h348 void TimeoutOccurred(int32 timerID, int32 timeoutInfo);
349 void RequestTimer(int32 timerID, int32 timeoutInfo, int32 count, OsclTimerObserver *observer = 0) argument
351 MyTimer.Request(timerID, timeoutInfo, count, observer);
353 void CancelTimer(int32 timerID) argument
355 MyTimer.Cancel(timerID);
/external/webkit/WebCore/plugins/
H A Dnpapi.cpp181 void (*timerFunc)(NPP npp, uint32 timerID))
187 void NPN_UnscheduleTimer(NPP instance, uint32 timerID) argument
189 pluginViewForInstance(instance)->unscheduleTimer(instance, timerID);
180 NPN_ScheduleTimer(NPP instance, uint32 interval, NPBool repeat, void (*timerFunc)(NPP npp, uint32 timerID)) argument
/external/opencore/protocols/systems/3g-324m_pvterminal/h324/srp/src/
H A Dsrp.cpp106 iSrpCommandSave.timerID = iWNSRPTxWindow;
112 iWnsrpCommandSave[i].timerID = i;
1709 if (iSrpCommandSave.timerID == id)
1987 PVLOGGER_LOGMSG(PVLOGMSG_INST_HLDBG, iLogger, PVLOGMSG_STACK_TRACE, (0, "SRP::SrpT401Start - id %d, IsPrimaryTimerActive = %d", timer.timerID, timer.isTimerActive));
1992 timer.T401Timer.Request(timer.timerID, (int32)this, iT401TimerValue, this, true);
2015 PVLOGGER_LOGMSG(PVLOGMSG_INST_HLDBG, iLogger, PVLOGMSG_STACK_TRACE, (0x40000020, "SRP::SrpT401Stop - id %d, IsPrimaryTimerActive = %d", timer.timerID, timer.isTimerActive));
2020 timer.T401Timer.Cancel(timer.timerID);
2041 void SRP::TimeoutOccurred(int32 timerID, int32 param) argument
2044 PVLOGGER_LOGMSG(PVLOGMSG_INST_HLDBG, iLogger, PVLOGMSG_STACK_TRACE, (0x40000020, "SRP::TimeoutOccurred, id %d, wnsrp status %d", timerID, iCurWnsrpStatus));
2049 SrpStateChange(SrpStatusGet(), EV_TIMEOUT, (void *) &timerID);
2416 FindActiveWnsrpTimer(int32 timerID) argument
[all...]
/external/opencore/nodes/pvprotocolenginenode/protocol_common/src/
H A Dpvmf_protocol_engine_node_common.cpp377 OSCL_EXPORT_REF void ProtocolContainer::handleTimeout(const int32 timerID) argument
379 if (ignoreThisTimeout(timerID)) return;
380 handleTimeoutErr(timerID);
383 handleTimeoutInPause(timerID);
385 handleTimeoutInDownloadStreamingDone(timerID);
388 OSCL_EXPORT_REF bool ProtocolContainer::ignoreThisTimeout(const int32 timerID) argument
395 if (timerID != (int32)SERVER_INACTIVITY_TIMER_ID) return false;
416 bool ProtocolContainer::handleTimeoutErr(const int32 timerID) argument
422 if (timerID == SERVER_RESPONSE_TIMER_ID) timeoutErr = PROCESS_TIMEOUT_SERVER_NO_RESPONCE;
423 if (timerID
[all...]
/external/opencore/protocols/systems/3g-324m_pvterminal/h223/src/
H A Dlowerlayer.cpp294 void H223LowerLayer::TimeoutOccurred(int32 timerID, int32 timeoutInfo) argument
296 OSCL_UNUSED_ARG(timerID);
/external/opencore/engines/adapters/player/framemetadatautility/src/
H A Dpv_frame_metadata_utility.cpp1132 void PVFrameAndMetadataUtility::TimeoutOccurred(int32 timerID, int32 /*timeoutInfo*/) argument
1134 if (timerID == PVFMUTIL_TIMERID_PLAYERERRORTIMEOUT)
1188 else if (timerID == PVFMUTIL_TIMERID_FRAMEREADYTIMEOUT)
/external/opencore/nodes/pvprotocolenginenode/download_protocols/common/src/
H A Dpvmf_protocol_engine_node_download_common.cpp295 OSCL_EXPORT_REF bool DownloadContainer::ignoreThisTimeout(const int32 timerID) argument
297 if (timerID != (int32)WALL_CLOCK_TIMER_ID && timerID != BUFFER_STATUS_TIMER_ID)
299 return ProtocolContainer::ignoreThisTimeout(timerID);
303 if (timerID == (int32)WALL_CLOCK_TIMER_ID)
308 else if (timerID == BUFFER_STATUS_TIMER_ID)
/external/opencore/protocols/systems/3g-324m_pvterminal/h324/srp/include/
H A Dsrp.h262 void TimeoutOccurred(int32 timerID, int32 timeoutInfo);
360 timerID(0),
368 int32 timerID; member in class:SRP::SRPRespTimer
506 SRPRespTimer *FindActiveWnsrpTimer(int32 timerID);

Completed in 207 milliseconds

12