Lines Matching refs:dwIndex
139 uint32_t dwIndex; in phOsalNfc_Timer_Start() local
142 dwIndex = dwTimerId - PH_NFC_TIMER_BASE_ADDRESS - 0x01; in phOsalNfc_Timer_Start()
143 pTimerHandle = (phOsalNfc_TimerHandle_t *)&apTimerInfo[dwIndex]; in phOsalNfc_Timer_Start()
146 if( (dwIndex < PH_NFC_MAX_TIMER) && (0x00 != pTimerHandle->TimerId) && in phOsalNfc_Timer_Start()
197 uint32_t dwIndex; in phOsalNfc_Timer_Stop() local
199 dwIndex = dwTimerId - PH_NFC_TIMER_BASE_ADDRESS - 0x01; in phOsalNfc_Timer_Stop()
200 pTimerHandle = (phOsalNfc_TimerHandle_t *)&apTimerInfo[dwIndex]; in phOsalNfc_Timer_Stop()
203 if( (dwIndex < PH_NFC_MAX_TIMER) && (0x00 != pTimerHandle->TimerId) && in phOsalNfc_Timer_Stop()
249 uint32_t dwIndex; in phOsalNfc_Timer_Delete() local
251 dwIndex = dwTimerId - PH_NFC_TIMER_BASE_ADDRESS - 0x01; in phOsalNfc_Timer_Delete()
252 pTimerHandle = (phOsalNfc_TimerHandle_t *)&apTimerInfo[dwIndex]; in phOsalNfc_Timer_Delete()
256 if( (dwIndex < PH_NFC_MAX_TIMER) && (0x00 != pTimerHandle->TimerId) in phOsalNfc_Timer_Delete()
291 uint32_t dwIndex; in phOsalNfc_Timer_Cleanup() local
293 for(dwIndex = 0; dwIndex < PH_NFC_MAX_TIMER; dwIndex++) in phOsalNfc_Timer_Cleanup()
295 pTimerHandle = (phOsalNfc_TimerHandle_t *)&apTimerInfo[dwIndex]; in phOsalNfc_Timer_Cleanup()
306 NXPLOG_TML_E("timer %d delete error!", dwIndex); in phOsalNfc_Timer_Cleanup()
331 uint32_t dwIndex; in phOsalNfc_DeferredCall() local
336 dwIndex = (uintptr_t)pParams - PH_NFC_TIMER_BASE_ADDRESS - 0x01; in phOsalNfc_DeferredCall()
337 pTimerHandle = (phOsalNfc_TimerHandle_t *)&apTimerInfo[dwIndex]; in phOsalNfc_DeferredCall()
383 uint32_t dwIndex; in phOsalNfc_Timer_Expired() local
387 dwIndex = ((uint32_t)(sv.sival_int)) - PH_NFC_TIMER_BASE_ADDRESS - 0x01; in phOsalNfc_Timer_Expired()
388 pTimerHandle = (phOsalNfc_TimerHandle_t *)&apTimerInfo[dwIndex]; in phOsalNfc_Timer_Expired()
421 uint32_t dwIndex = 0x00; in phUtilNfc_CheckForAvailableTimer() local
426 for(dwIndex = 0x00; in phUtilNfc_CheckForAvailableTimer()
427 ( (dwIndex < PH_NFC_MAX_TIMER) && (0x00 == dwRetval) ); dwIndex++) in phUtilNfc_CheckForAvailableTimer()
429 if(!(apTimerInfo[dwIndex].TimerId)) in phUtilNfc_CheckForAvailableTimer()
431 dwRetval = (dwIndex + 0x01); in phUtilNfc_CheckForAvailableTimer()
453 uint32_t dwIndex; in phOsalNfc_CheckTimerPresence() local
456 for(dwIndex = 0x00; ( (dwIndex < PH_NFC_MAX_TIMER) && in phOsalNfc_CheckTimerPresence()
457 (wRegisterStatus != NFCSTATUS_SUCCESS) ); dwIndex++) in phOsalNfc_CheckTimerPresence()
460 if( ((&apTimerInfo[dwIndex]) == in phOsalNfc_CheckTimerPresence()
462 (apTimerInfo[dwIndex].TimerId) ) in phOsalNfc_CheckTimerPresence()