Home
last modified time | relevance | path

Searched refs:iWatchdogTimer (Results 1 – 4 of 4) sorted by relevance

/external/opencore/nodes/pvprotocolenginenode/protocol_common/src/
Dpvmf_protocol_engine_node_common.cpp816iWatchdogTimer = OSCL_NEW(OsclTimer<PVMFProtocolEngineNodeAllocator>, ("ProtEngineNodeWatchdogTime… in construct()
817 if (!iWatchdogTimer) return false; in construct()
818 iWatchdogTimer->SetObserver(aObserver); in construct()
819 iWatchdogTimer->SetFrequency(PVPROTOCOLENGINENODE_TIMER_FREQUENCY); in construct()
828 if (iWatchdogTimer) in ~PVMFProtocolEngineNodeTimer()
830 OSCL_DELETE(iWatchdogTimer); in ~PVMFProtocolEngineNodeTimer()
831 iWatchdogTimer = NULL; in ~PVMFProtocolEngineNodeTimer()
880 iWatchdogTimer->Cancel(aTimerID); in cancel()
888 iWatchdogTimer->Cancel(iTimerVec[i].iTimerID); in clear()
898 iWatchdogTimer->Cancel(iTimerVec[i].iTimerID); in clearExcept()
[all …]
Dpvmf_protocol_engine_node_common.h1717 PVMFProtocolEngineNodeTimer() : iWatchdogTimer(NULL) in PVMFProtocolEngineNodeTimer()
1727 OsclTimer<PVMFProtocolEngineNodeAllocator> *iWatchdogTimer;
/external/opencore/protocols/rtsp_client_engine/src/
Dpvrtsp_client_engine_node.cpp130 iWatchdogTimer(NULL), in PVRTSPEngineNode()
175iWatchdogTimer = OSCL_NEW(OsclTimer<PVRTSPEngineNodeAllocator>, ("PVRTSPEngineNodeWatchDog")); in PVRTSPEngineNode()
176 OsclError::LeaveIfNull(iWatchdogTimer); in PVRTSPEngineNode()
201 iWatchdogTimer->SetObserver(this); in PVRTSPEngineNode()
202 iWatchdogTimer->SetFrequency(1); in PVRTSPEngineNode()
215 if (iWatchdogTimer) in ~PVRTSPEngineNode()
217 OSCL_DELETE(iWatchdogTimer); in ~PVRTSPEngineNode()
218 iWatchdogTimer = NULL; in ~PVRTSPEngineNode()
1333 iWatchdogTimer->Request(REQ_TIMER_KEEPALIVE_ID, 0, TIMEOUT_KEEPALIVE); in DispatchCommand()
1355 iWatchdogTimer->Request(REQ_TIMER_KEEPALIVE_ID, 0, TIMEOUT_KEEPALIVE); in DispatchCommand()
[all …]
/external/opencore/protocols/rtsp_client_engine/inc/
Dpvrtsp_client_engine_node.h839 OsclTimer<PVRTSPEngineNodeAllocator> *iWatchdogTimer; variable