Home
last modified time | relevance | path

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

/system/nfc/src/nfa/rw/
Dnfa_rw_main.cc177 uint16_t act_idx; in nfa_rw_handle_event() local
184 act_idx = (p_msg->event & 0x00FF); in nfa_rw_handle_event()
185 if (act_idx < (NFA_RW_MAX_EVT & 0xFF)) { in nfa_rw_handle_event()
186 return (*nfa_rw_action_tbl[act_idx])((tNFA_RW_MSG*)p_msg); in nfa_rw_handle_event()
/system/nfc/src/nfa/ce/
Dnfa_ce_main.cc173 uint16_t act_idx; in nfa_ce_hdl_event() local
181 act_idx = (p_msg->event & 0x00FF); in nfa_ce_hdl_event()
182 if (act_idx < NFA_CE_ACTION_TBL_SIZE) { in nfa_ce_hdl_event()
183 freebuf = (*nfa_ce_action_tbl[act_idx])((tNFA_CE_MSG*)p_msg); in nfa_ce_hdl_event()
/system/core/libprocessgroup/
Dtask_profiles.cpp409 for (Json::Value::ArrayIndex act_idx = 0; act_idx < actions.size(); ++act_idx) { in Load() local
410 const Json::Value& action_val = actions[act_idx]; in Load()