Home
last modified time | relevance | path

Searched refs:app_inx (Results 1 – 2 of 2) sorted by relevance

/system/nfc/src/nfa/hci/
Dnfa_hci_utils.cc229 uint8_t app_inx = app_handle & NFA_HANDLE_MASK; in nfa_hciu_alloc_gate() local
235 (app_inx >= NFA_HCI_MAX_APP_CB) || in nfa_hciu_alloc_gate()
236 (nfa_hci_cb.p_app_cback[app_inx] == nullptr))) { in nfa_hciu_alloc_gate()
1058 uint8_t app_inx = app_handle & NFA_HANDLE_MASK; in nfa_hciu_send_to_app() local
1062 (app_inx < NFA_HCI_MAX_APP_CB)) { in nfa_hciu_send_to_app()
1063 if (nfa_hci_cb.p_app_cback[app_inx] != nullptr) { in nfa_hciu_send_to_app()
1064 nfa_hci_cb.p_app_cback[app_inx](event, p_evt); in nfa_hciu_send_to_app()
1086 uint8_t app_inx; in nfa_hciu_send_to_all_apps() local
1088 for (app_inx = 0; app_inx < NFA_HCI_MAX_APP_CB; app_inx++) { in nfa_hciu_send_to_all_apps()
1089 if (nfa_hci_cb.p_app_cback[app_inx] != nullptr) in nfa_hciu_send_to_all_apps()
[all …]
Dnfa_hci_act.cc572 uint8_t app_inx = p_evt_data->get_host_list.hci_handle & NFA_HANDLE_MASK; in nfa_hci_api_get_host_list() local
579 ((app_inx < NFA_HCI_MAX_APP_CB) && in nfa_hci_api_get_host_list()
580 (nfa_hci_cb.p_app_cback[app_inx] != nullptr))) { in nfa_hci_api_get_host_list()