Home
last modified time | relevance | path

Searched refs:timer_id (Results 1 - 5 of 5) sorted by relevance

/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/include/
H A Dhi_hwtimer.h112 hi_timer_id timer_id; member
130 hi_u32 hi_hwtimer_init_new(hi_timer_id timer_id);
132 hi_u32 hi_hwtimer_stop(hi_timer_id timer_id);
133 hi_u32 hi_hwtimer_destroy_new(hi_timer_id timer_id);
134 hi_u32 hi_hwtimer_get_cur_val(hi_timer_id timer_id, hi_u32 *val);
135 hi_u32 hi_hwtimer_get_load(hi_timer_id timer_id, hi_u32 *load);
138 hi_u32 hi_hwrtc_init(hi_rtc_id timer_id);
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/frw/
H A Dfrw_timer.c64 *(hi_u32 *)event->auc_event_data = timeout->timer_id; in frw_timer_timeout_event()
83 hi_u32 timer_id; in frw_timer_timeout_proc() local
86 timer_id = *(hi_u32 *)event->auc_event_data; in frw_timer_timeout_proc()
103 if ((timeout_element->timer_id == timer_id) && in frw_timer_timeout_proc()
163 timeout->timer_id = g_timer_id++; /* timer id用于标识定时器的唯一性 */ in frw_timer_create_timer()
164 oal_timer_init(&timeout->timer, timeoutval, frw_timer_timeout_proc_event, (unsigned long)timeout->timer_id); in frw_timer_create_timer()
205 *(hi_u32 *)event->auc_event_data = timeout->timer_id; in frw_timer_timeout_proc_event()
H A Dfrw_timer.h61 hi_u32 timer_id; /* 定时器唯一标识 */ member
/device/soc/hisilicon/hi3861v100/hi3861_adapter/kal/cmsis/
H A Dcmsis_liteos2.c739 osStatus_t osTimerStart(osTimerId_t timer_id, uint32_t ticks) in osTimerStart() argument
744 if ((0 == ticks) || (NULL == timer_id)) { in osTimerStart()
748 pstSwtmr = (SWTMR_CTRL_S *)timer_id; in osTimerStart()
761 const char *osTimerGetName(osTimerId_t timer_id) in osTimerGetName() argument
763 UNUSED(timer_id); in osTimerGetName()
768 osStatus_t osTimerStop(osTimerId_t timer_id) in osTimerStop() argument
771 SWTMR_CTRL_S *pstSwtmr = (SWTMR_CTRL_S *)timer_id; in osTimerStop()
792 uint32_t osTimerIsRunning(osTimerId_t timer_id) in osTimerIsRunning() argument
794 if ((OS_INT_ACTIVE) || (NULL == timer_id)) { in osTimerIsRunning()
798 return (OS_SWTMR_STATUS_TICKING == ((SWTMR_CTRL_S *)timer_id) in osTimerIsRunning()
802 osTimerDelete(osTimerId_t timer_id) osTimerDelete() argument
[all...]
H A Dcmsis_os2.h853 * @param timer_id Indicates the timer ID, which is obtained using osTimerNew.
858 const char *osTimerGetName (osTimerId_t timer_id);
863 * @param timer_id Indicates the timer ID, which is obtained using osTimerNew.
869 osStatus_t osTimerStart (osTimerId_t timer_id, uint32_t ticks);
874 * @param timer_id Indicates the timer ID, which is obtained using osTimerNew.
879 osStatus_t osTimerStop (osTimerId_t timer_id);
884 * @param timer_id Indicates the timer ID, which is obtained using osTimerNew.
889 uint32_t osTimerIsRunning (osTimerId_t timer_id);
894 * @param timer_id Indicates the timer ID, which is obtained using osTimerNew.
899 osStatus_t osTimerDelete (osTimerId_t timer_id);
[all...]

Completed in 5 milliseconds