OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TimerId
(Results
1 - 4
of
4
) sorted by null
/external/libnfc-nxp/src/
phOsalNfc_Timer.h
74
* \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*/
131
* \param[in]
TimerId
valid timer ID obtained during timer creation.
142
* Application<<phOsalNfc [label="
TIMERID
"];
143
* Application=>phOsalNfc [label="phOsalNfc_Timer_Start(
TIMERID
, TIMEOUT, CB)", URL="\ref phOsalNfc_Timer_Start"];
149
void phOsalNfc_Timer_Start(uint32_t
TimerId
,
161
* \param[in]
TimerId
valid timer ID obtained suring timer creation.
167
* Application<<phOsalNfc [label="
TIMERID
"];
168
* Application=>phOsalNfc [label="phOsalNfc_Timer_Start(
TIMERID
, TIMEOUT, CB)",URL="\ref phOsalNfc_Timer_Start"]
[
all
...]
phLlcNfc_Timer.c
75
uint32_t
TimerId
,
85
uint32_t
TimerId
93
uint32_t
TimerId
,
180
uint32_t
timerid
= 0;
local
211
timerid
= ps_timer_info->timer_id[PH_LLCNFC_CONNECTION_TO_INDEX];
248
timerid
= ps_timer_info->timer_id[PH_LLCNFC_GUARDTIMER];
309
timerid
= ps_timer_info->timer_id[PH_LLCNFC_ACKTIMER];
326
PH_LLCNFC_DEBUG("OSAL START TIMER CALLED TIMER ID : 0x%02X\n",
timerid
);
327
phOsalNfc_Timer_Start (
timerid
, timer_resolution, Callback, NULL);
351
uint32_t
timerid
= 0
local
510
uint32_t
timerid
= 0;
local
[
all
...]
phFriNfc_Llcp.c
264
static void phFriNfc_Llcp_Timer_CB(uint32_t
TimerId
, void *pContext)
268
PHNFC_UNUSED_VARIABLE(
TimerId
);
[
all
...]
/external/libnfc-nxp/Linux_x86/
phOsalNfc_Timer.c
80
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;
107
uint32_t
timerid
= (uint32_t)(sv.sival_int);
local
109
if((
timerid
< MAX_NO_TIMERS)&&(timers[timerid].nIsStopped == 1)
172
uint32_t
timerid
;
local
[
all
...]
Completed in 238 milliseconds