Searched defs:TimerId (Results 1 - 4 of 4) sorted by relevance

/external/libnfc-nxp/src/
H A DphOsalNfc_Timer.h74 * \param[in] TimerId Timer Id for which callback is called.
77 typedef void (*ppCallBck_t)(uint32_t TimerId, void *pContext);
89 uint32_t TimerId;/**< Timer ID*/ member in struct:phOsalNfc_TimerMsg
131 * \param[in] TimerId valid timer ID obtained during timer creation.
149 void phOsalNfc_Timer_Start(uint32_t TimerId,
161 * \param[in] TimerId valid timer ID obtained suring timer creation.
174 void phOsalNfc_Timer_Stop(uint32_t TimerId);
185 * \param[in] TimerId timer identieir to delete the timer.
187 void phOsalNfc_Timer_Delete(uint32_t TimerId);
H A DphLlcNfc_Timer.c75 uint32_t TimerId,
85 uint32_t TimerId
93 uint32_t TimerId,
598 uint32_t TimerId,
615 if ((NULL != gpphLlcNfc_Ctxt) && (TimerId ==
788 uint32_t TimerId
798 uint32_t TimerId,
811 if ((NULL != gpphLlcNfc_Ctxt) && (TimerId ==
597 phLlcNfc_GuardTimeoutCb( uint32_t TimerId, void *pContext ) argument
797 phLlcNfc_ConnectionTimeoutCb( uint32_t TimerId, void *pContext ) argument
H A DphFriNfc_Llcp.c277 static void phFriNfc_Llcp_Timer_CB(uint32_t TimerId, void *pContext) argument
281 PHNFC_UNUSED_VARIABLE(TimerId);
/external/libnfc-nxp/Linux_x86/
H A DphOsalNfc_Timer.c80 timer_msg->pCallBck(timer_msg->TimerId, timer_msg->pContext);
82 if ((timer_msg->TimerId >= MAX_NO_TIMERS) || (timer_msg->TimerId < 0))
84 printf("Bad TimerId=%d, should be <= to %d\n", timer_msg->TimerId, MAX_NO_TIMERS);
88 if(timers[timer_msg->TimerId].ptr != NULL)
90 phOsalNfc_FreeMemory(timers[timer_msg->TimerId].ptr);
91 timers[timer_msg->TimerId].ptr = NULL;
111 //printf("phOsalNfc_Timer_Expired : Expired but already stopped TimerId=%d\n", timerid);
138 timer_msg->TimerId
209 phOsalNfc_Timer_Start(uint32_t TimerId, uint32_t RegTimeCnt, ppCallBck_t Application_callback, void *pContext) argument
246 phOsalNfc_Timer_Stop(uint32_t TimerId) argument
267 phOsalNfc_Timer_Delete(uint32_t TimerId) argument
[all...]

Completed in 323 milliseconds