Lines Matching defs:timer_id
749 osStatus_t osTimerStart(osTimerId_t timer_id, uint32_t ticks)
756 if ((ticks == 0) || (timer_id == NULL)) {
761 pstSwtmr = (SWTMR_CTRL_S *)timer_id;
774 const char *osTimerGetName(osTimerId_t timer_id)
776 UNUSED(timer_id);
780 osStatus_t osTimerStop(osTimerId_t timer_id)
783 SWTMR_CTRL_S *pstSwtmr = (SWTMR_CTRL_S *)timer_id;
803 uint32_t osTimerIsRunning(osTimerId_t timer_id)
808 if (timer_id == NULL) {
812 return (OS_SWTMR_STATUS_TICKING == ((SWTMR_CTRL_S *)timer_id)->ucState);
815 osStatus_t osTimerDelete(osTimerId_t timer_id)
818 SWTMR_CTRL_S *pstSwtmr = (SWTMR_CTRL_S *)timer_id;