Home
last modified time | relevance | path

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

/external/libnfc-nci/halimpl/pn54x/tml/
DphOsalNfc_Timer.c74 uint32_t dwTimerId = PH_OSALNFC_TIMER_ID_INVALID; in phOsalNfc_Timer_Create() local
82 dwTimerId = phUtilNfc_CheckForAvailableTimer(); in phOsalNfc_Timer_Create()
85 if( (PH_NFC_TIMER_ID_ZERO != dwTimerId) && (dwTimerId <= PH_NFC_MAX_TIMER) ) in phOsalNfc_Timer_Create()
87 pTimerHandle = (phOsalNfc_TimerHandle_t *)&apTimerInfo[dwTimerId-1]; in phOsalNfc_Timer_Create()
89 dwTimerId += PH_NFC_TIMER_BASE_ADDRESS; in phOsalNfc_Timer_Create()
90 se.sigev_value.sival_int = (int)dwTimerId; in phOsalNfc_Timer_Create()
94 dwTimerId = PH_NFC_TIMER_ID_INVALID; in phOsalNfc_Timer_Create()
101 pTimerHandle->TimerId = dwTimerId; in phOsalNfc_Timer_Create()
106 dwTimerId = PH_NFC_TIMER_ID_INVALID; in phOsalNfc_Timer_Create()
110 return dwTimerId; in phOsalNfc_Timer_Create()
[all …]
DphOsalNfc_Timer.h75 NFCSTATUS phOsalNfc_Timer_Start(uint32_t dwTimerId, uint32_t dwRegTimeCnt, pphOsalNfc_TimerCallbck_…
76 NFCSTATUS phOsalNfc_Timer_Stop(uint32_t dwTimerId);
77 NFCSTATUS phOsalNfc_Timer_Delete(uint32_t dwTimerId);
DphTmlNfc.c53 static void phTmlNfc_ReTxTimerCb(uint32_t dwTimerId, void *pContext);
147 gpphTmlNfc_Context->dwTimerId = phOsalNfc_Timer_Create(); in phTmlNfc_Init()
148 if (PH_OSALNFC_TIMER_ID_INVALID != gpphTmlNfc_Context->dwTimerId) in phTmlNfc_Init()
267 static void phTmlNfc_ReTxTimerCb(uint32_t dwTimerId, void *pContext) in phTmlNfc_ReTxTimerCb() argument
269 if ((gpphTmlNfc_Context->dwTimerId == dwTimerId) && in phTmlNfc_ReTxTimerCb()
307 wStatus = phOsalNfc_Timer_Start(gpphTmlNfc_Context->dwTimerId, in phTmlNfc_InitiateTimer()
382 uint32_t timerStatus = phOsalNfc_Timer_Stop(gpphTmlNfc_Context->dwTimerId); in phTmlNfc_TmlThread()
DphTmlNfc.h143 uint32_t dwTimerId; /* Timer used to retransmit nci packet */ member