Home
last modified time | relevance | path

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

/system/nfc/src/nfa/wlc/
Dnfa_wlc_main.cc123 uint16_t act_idx; in nfa_wlc_handle_event() local
130 act_idx = (p_msg->event & 0x00FF); in nfa_wlc_handle_event()
131 if (act_idx < (NFA_WLC_ACTION_TBL_SIZE)) { in nfa_wlc_handle_event()
132 return (*nfa_wlc_action_tbl[act_idx])((tNFA_WLC_MSG*)p_msg); in nfa_wlc_handle_event()
/system/nfc/src/nfa/ce/
Dnfa_ce_main.cc170 uint16_t act_idx; in nfa_ce_hdl_event() local
178 act_idx = (p_msg->event & 0x00FF); in nfa_ce_hdl_event()
179 if (act_idx < NFA_CE_ACTION_TBL_SIZE) { in nfa_ce_hdl_event()
180 freebuf = (*nfa_ce_action_tbl[act_idx])((tNFA_CE_MSG*)p_msg); in nfa_ce_hdl_event()
/system/nfc/src/nfa/rw/
Dnfa_rw_main.cc230 uint16_t act_idx; in nfa_rw_handle_event() local
237 act_idx = (p_msg->event & 0x00FF); in nfa_rw_handle_event()
238 if (act_idx < (NFA_RW_MAX_EVT & 0xFF)) { in nfa_rw_handle_event()
239 return (*nfa_rw_action_tbl[act_idx])((tNFA_RW_MSG*)p_msg); in nfa_rw_handle_event()
/system/core/libprocessgroup/
Dtask_profiles.cpp885 for (Json::Value::ArrayIndex act_idx = 0; act_idx < actions.size(); ++act_idx) { in Load() local
886 const Json::Value& action_val = actions[act_idx]; in Load()