/system/nfc/src/nfa/p2p/ |
D | nfa_p2p_act.cc | 59 uint8_t xx; in nfa_p2p_allocate_conn_cb() local 61 for (xx = 0; xx < LLCP_MAX_DATA_LINK; xx++) { in nfa_p2p_allocate_conn_cb() 62 if (nfa_p2p_cb.conn_cb[xx].flags == 0) { in nfa_p2p_allocate_conn_cb() 63 nfa_p2p_cb.conn_cb[xx].flags |= NFA_P2P_CONN_FLAG_IN_USE; in nfa_p2p_allocate_conn_cb() 64 nfa_p2p_cb.conn_cb[xx].local_sap = local_sap; in nfa_p2p_allocate_conn_cb() 66 return (xx); in nfa_p2p_allocate_conn_cb() 85 static void nfa_p2p_deallocate_conn_cb(uint8_t xx) { in nfa_p2p_deallocate_conn_cb() argument 86 if (xx < LLCP_MAX_DATA_LINK) { in nfa_p2p_deallocate_conn_cb() 87 nfa_p2p_cb.conn_cb[xx].flags = 0; in nfa_p2p_deallocate_conn_cb() 89 LOG(ERROR) << StringPrintf("Invalid index (%d)", xx); in nfa_p2p_deallocate_conn_cb() [all …]
|
D | nfa_p2p_api.cc | 167 tNFA_HANDLE xx; in NFA_P2pDeregister() local 171 xx = handle & NFA_HANDLE_MASK; in NFA_P2pDeregister() 173 if ((xx >= NFA_P2P_NUM_SAP) || (nfa_p2p_cb.sap_cb[xx].p_cback == nullptr)) { in NFA_P2pDeregister() 207 tNFA_HANDLE xx; in NFA_P2pAcceptConn() local 212 xx = handle & NFA_HANDLE_MASK; in NFA_P2pAcceptConn() 214 if (!(xx & NFA_P2P_HANDLE_FLAG_CONN)) { in NFA_P2pAcceptConn() 218 xx &= ~NFA_P2P_HANDLE_FLAG_CONN; in NFA_P2pAcceptConn() 221 if ((xx >= LLCP_MAX_DATA_LINK) || (nfa_p2p_cb.conn_cb[xx].flags == 0)) { in NFA_P2pAcceptConn() 260 tNFA_HANDLE xx; in NFA_P2pRejectConn() local 264 xx = handle & NFA_HANDLE_MASK; in NFA_P2pRejectConn() [all …]
|
/system/nfc/src/nfc/nfc/ |
D | nfc_utils.cc | 48 int xx, max = NCI_MAX_CONN_CBS; in nfc_alloc_conn_cb() local 52 for (xx = 0; xx < max; xx++) { in nfc_alloc_conn_cb() 53 if (nfc_cb.conn_cb[xx].conn_id == NFC_ILLEGAL_CONN_ID) { in nfc_alloc_conn_cb() 54 nfc_cb.conn_cb[xx].conn_id = in nfc_alloc_conn_cb() 56 p_conn_cb = &nfc_cb.conn_cb[xx]; in nfc_alloc_conn_cb() 97 int xx; in nfc_find_conn_cb_by_handle() local 100 for (xx = 0; xx < NCI_MAX_CONN_CBS; xx++) { in nfc_find_conn_cb_by_handle() 101 if (nfc_cb.conn_cb[xx].id == id) { in nfc_find_conn_cb_by_handle() 102 p_conn_cb = &nfc_cb.conn_cb[xx]; in nfc_find_conn_cb_by_handle() 123 int xx; in nfc_find_conn_cb_by_conn_id() local [all …]
|
D | nfc_main.cc | 198 uint8_t num_interfaces = 0, xx; in nfc_enabled() local 229 for (xx = 0; xx < num_interfaces; xx++) { in nfc_enabled() 286 for (xx = 0; xx < num_interfaces; xx++) { in nfc_enabled() 768 int xx; in NFC_Init() local 774 for (xx = 0; xx < NCI_MAX_CONN_CBS; xx++) { in NFC_Init() 775 nfc_cb.conn_cb[xx].conn_id = NFC_ILLEGAL_CONN_ID; in NFC_Init() 868 uint8_t xx, yy, num_intf, intf_mask; in NFC_DiscoveryMap() local 878 for (xx = 0; xx < NFC_NFCC_MAX_NUM_VS_INTERFACE + NCI_INTERFACE_MAX; xx++) { in NFC_DiscoveryMap() 879 memset(&max_maps[xx], 0x00, sizeof(tNFC_DISCOVER_MAPS)); in NFC_DiscoveryMap() 882 for (xx = 0; xx < num_disc_maps; xx++) { in NFC_DiscoveryMap() [all …]
|
/system/nfc/src/nfa/hci/ |
D | nfa_hci_utils.cc | 54 int xx = 0; in nfa_hciu_find_pipe_by_pid() local 57 for (; xx < NFA_HCI_MAX_PIPE_CB; xx++, pp++) { in nfa_hciu_find_pipe_by_pid() 76 int xx = 0; in nfa_hciu_find_gate_by_gid() local 78 for (; xx < NFA_HCI_MAX_GATE_CB; xx++, pg++) { in nfa_hciu_find_gate_by_gid() 96 int xx = 0; in nfa_hciu_find_gate_by_owner() local 98 for (; xx < NFA_HCI_MAX_GATE_CB; xx++, pg++) { in nfa_hciu_find_gate_by_owner() 118 int xx = 0; in nfa_hciu_find_gate_with_nopipes_by_owner() local 120 for (; xx < NFA_HCI_MAX_GATE_CB; xx++, pg++) { in nfa_hciu_find_gate_with_nopipes_by_owner() 137 int xx = 0; in nfa_hciu_count_pipes_on_gate() local 141 for (; xx < NFA_HCI_MAX_PIPE_CB; xx++) { in nfa_hciu_count_pipes_on_gate() [all …]
|
D | nfa_hci_main.cc | 211 uint8_t xx, yy, zz; in nfa_hci_is_valid_cfg() local 220 for (xx = 0; xx < NFA_HCI_MAX_APP_CB; xx++) { in nfa_hci_is_valid_cfg() 222 if (strlen(&nfa_hci_cb.cfg.reg_app_names[xx][0]) > NFA_MAX_HCI_APP_NAME_LEN) in nfa_hci_is_valid_cfg() 226 if ((nfa_hci_cb.cfg.b_send_conn_evts[xx] != true) && in nfa_hci_is_valid_cfg() 227 (nfa_hci_cb.cfg.b_send_conn_evts[xx] != false)) in nfa_hci_is_valid_cfg() 230 if (nfa_hci_cb.cfg.reg_app_names[xx][0] != 0) { in nfa_hci_is_valid_cfg() 233 for (yy = xx + 1; yy < NFA_HCI_MAX_APP_CB; yy++) { in nfa_hci_is_valid_cfg() 235 (!strncmp(&nfa_hci_cb.cfg.reg_app_names[xx][0], in nfa_hci_is_valid_cfg() 237 strlen(nfa_hci_cb.cfg.reg_app_names[xx])))) { in nfa_hci_is_valid_cfg() 241 &nfa_hci_cb.cfg.reg_app_names[xx][0], xx); in nfa_hci_is_valid_cfg() [all …]
|
D | nfa_hci_api.cc | 156 int xx; in NFA_HciDeregister() local 171 for (xx = 0; xx < NFA_HCI_MAX_APP_CB; xx++) { in NFA_HciDeregister() 172 if ((nfa_hci_cb.cfg.reg_app_names[xx][0] != 0) && in NFA_HciDeregister() 173 (!strncmp(p_app_name, &nfa_hci_cb.cfg.reg_app_names[xx][0], in NFA_HciDeregister() 178 if (xx == NFA_HCI_MAX_APP_CB) { in NFA_HciDeregister() 825 int xx; in NFA_HciDebug() local 835 for (xx = 0; xx < NFA_HCI_MAX_APP_CB; xx++) { in NFA_HciDebug() 836 if (nfa_hci_cb.cfg.reg_app_names[xx][0] != 0) { in NFA_HciDebug() 838 << StringPrintf(" Host Inx: %u Name: %s", xx, in NFA_HciDebug() 839 &nfa_hci_cb.cfg.reg_app_names[xx][0]); in NFA_HciDebug() [all …]
|
D | nfa_hci_act.cc | 232 int xx, yy; in nfa_hci_api_register() local 237 for (xx = 0; xx < NFA_HCI_MAX_APP_CB; xx++) { in nfa_hci_api_register() 238 if ((nfa_hci_cb.cfg.reg_app_names[xx][0] != 0) && in nfa_hci_api_register() 239 !strncmp(p_app_name, &nfa_hci_cb.cfg.reg_app_names[xx][0], in nfa_hci_api_register() 242 "nfa_hci_api_register (%s) Reusing: %u", p_app_name, xx); in nfa_hci_api_register() 247 if (xx != NFA_HCI_MAX_APP_CB) { in nfa_hci_api_register() 248 nfa_hci_cb.app_in_use = (tNFA_HANDLE)(xx | NFA_HANDLE_GROUP_HCI); in nfa_hci_api_register() 260 for (xx = 0; xx < NFA_HCI_MAX_APP_CB; xx++) { in nfa_hci_api_register() 261 if (nfa_hci_cb.cfg.reg_app_names[xx][0] == 0) { in nfa_hci_api_register() 262 memset(&nfa_hci_cb.cfg.reg_app_names[xx][0], 0, in nfa_hci_api_register() [all …]
|
/system/nfc/src/nfa/ee/ |
D | nfa_ee_act.cc | 124 int xx, yy = 0; in nfa_ee_trace_aid() local 134 for (xx = 0; xx < len; xx++) { in nfa_ee_trace_aid() 153 int xx; in nfa_ee_update_route_size() local 159 for (xx = 0; xx < NFA_EE_NUM_TECH; xx++) { in nfa_ee_update_route_size() 161 if (p_cb->tech_switch_on & nfa_ee_tech_mask_list[xx]) in nfa_ee_update_route_size() 163 if (p_cb->tech_switch_off & nfa_ee_tech_mask_list[xx]) in nfa_ee_update_route_size() 165 if (p_cb->tech_battery_off & nfa_ee_tech_mask_list[xx]) in nfa_ee_update_route_size() 169 if (p_cb->tech_screen_lock & nfa_ee_tech_mask_list[xx]) in nfa_ee_update_route_size() 171 if (p_cb->tech_screen_off & nfa_ee_tech_mask_list[xx]) in nfa_ee_update_route_size() 173 if (p_cb->tech_screen_off_lock & nfa_ee_tech_mask_list[xx]) in nfa_ee_update_route_size() [all …]
|
D | nfa_ee_main.cc | 99 int xx; in nfa_ee_init() local 105 for (xx = 0; xx < NFA_EE_MAX_EE_SUPPORTED; xx++) { in nfa_ee_init() 106 nfa_ee_cb.ecb[xx].nfcee_id = NFA_EE_INVALID; in nfa_ee_init() 107 nfa_ee_cb.ecb[xx].ee_status = NFC_NFCEE_STATUS_INACTIVE; in nfa_ee_init() 223 uint32_t xx; in nfa_ee_proc_nfcc_power_mode() local 233 for (xx = 0; xx < NFA_EE_MAX_EE_SUPPORTED; xx++, p_cb++) { in nfa_ee_proc_nfcc_power_mode() 235 if (xx >= nfa_ee_cb.cur_ee) p_cb->nfcee_id = NFA_EE_INVALID; in nfa_ee_proc_nfcc_power_mode() 284 uint32_t xx; in nfa_ee_proc_hci_info_cback() local 293 for (xx = 0; xx < NFA_EE_MAX_EE_SUPPORTED; xx++, p_cb++) { in nfa_ee_proc_hci_info_cback() 407 uint32_t xx; in nfa_ee_find_ecb() local [all …]
|
D | nfa_ee_api.cc | 97 int xx, ret = nfa_ee_cb.cur_ee; in NFA_EeGetInfo() local 119 for (xx = 0; (xx < ret) && (num_ret < max_ret); xx++, p_cb++) { in NFA_EeGetInfo() 121 << StringPrintf("xx:%d max_ret:%d, num_ret:%d ee_status:0x%x", xx, in NFA_EeGetInfo() 196 int xx; in NFA_EeDeregister() local 198 for (xx = 0; xx < NFA_EE_MAX_CBACKS; xx++) { in NFA_EeDeregister() 199 if (nfa_ee_cb.p_ee_cback[xx] == p_cback) { in NFA_EeDeregister() 200 index = xx; in NFA_EeDeregister() 241 uint32_t xx; in NFA_EeModeSet() local 245 for (xx = 0; xx < nfa_ee_cb.cur_ee; xx++, p_cb++) { in NFA_EeModeSet()
|
/system/nfc/src/nfc/tags/ |
D | tags_int.cc | 108 int xx; in t1t_cmd_to_rsp_info() local 110 for (xx = 0, p = &t1t_cmd_rsp_infos[0]; xx < T1T_MAX_NUM_OPCODES; xx++, p++) { in t1t_cmd_to_rsp_info() 112 if ((xx < T1T_STATIC_OPCODES) || (rw_cb.tcb.t1t.hr[0] != T1T_STATIC_HR0)) in t1t_cmd_to_rsp_info() 132 int xx; in t1t_tag_init_data() local 134 for (xx = 0, p = &t1t_init_content[0]; xx < T1T_MAX_TAG_MODELS; xx++, p++) { in t1t_tag_init_data() 157 int xx; in t2t_tag_init_data() local 159 for (xx = 0, p = &t2t_init_content[0]; xx < T2T_MAX_TAG_MODELS; xx++, p++) { in t2t_tag_init_data() 183 int xx; in t2t_cmd_to_rsp_info() local 185 for (xx = 0, p = &t2t_cmd_rsp_infos[0]; xx < T2T_MAX_NUM_OPCODES; xx++, p++) { in t2t_cmd_to_rsp_info()
|
D | rw_t5t.cc | 68 uint16_t length = p_resp->len, xx; in rw_t5t_sm_detect_ndef() local 334 for (xx = 0; xx < length; xx++) { in rw_t5t_sm_detect_ndef() 337 if (*(p + xx) == I93_ICODE_TLV_TYPE_NDEF) { in rw_t5t_sm_detect_ndef() 339 p_i93->tlv_type = *(p + xx); in rw_t5t_sm_detect_ndef() 340 p_i93->ndef_tlv_start_offset = p_i93->rw_offset + xx; in rw_t5t_sm_detect_ndef() 344 } else if (*(p + xx) == I93_ICODE_TLV_TYPE_TERM) { in rw_t5t_sm_detect_ndef() 350 p_i93->tlv_type = *(p + xx); in rw_t5t_sm_detect_ndef() 356 if (*(p + xx) == 0xFF) { in rw_t5t_sm_detect_ndef() 360 p_i93->tlv_length = *(p + xx); in rw_t5t_sm_detect_ndef() 372 p_i93->tlv_length = *(p + xx); in rw_t5t_sm_detect_ndef() [all …]
|
D | ce_t4t.cc | 382 uint8_t xx; in ce_t4t_process_select_app_cmd() local 417 for (xx = 0; xx < CE_T4T_MAX_REG_AID; xx++) { in ce_t4t_process_select_app_cmd() 418 if ((ce_cb.mem.t4t.reg_aid[xx].aid_len > 0) && in ce_t4t_process_select_app_cmd() 419 (ce_cb.mem.t4t.reg_aid[xx].aid_len == data_len) && in ce_t4t_process_select_app_cmd() 420 (!(memcmp(ce_cb.mem.t4t.reg_aid[xx].aid, p_cmd, data_len)))) { in ce_t4t_process_select_app_cmd() 421 ce_cb.mem.t4t.selected_aid_idx = xx; in ce_t4t_process_select_app_cmd() 901 uint8_t xx; in CE_T4tRegisterAID() local 938 for (xx = 0; xx < CE_T4T_MAX_REG_AID; xx++) { in CE_T4tRegisterAID() 939 if ((p_t4t->reg_aid[xx].aid_len == aid_len) && in CE_T4tRegisterAID() 940 (!(memcmp(p_t4t->reg_aid[xx].aid, p_aid, aid_len)))) { in CE_T4tRegisterAID() [all …]
|
D | rw_t2t_ndef.cc | 244 uint8_t xx; in rw_t2t_ntf_tlv_detect_complete() local 290 for (xx = 0; xx < p_t2t->num_mem_tlvs; xx++) { in rw_t2t_ntf_tlv_detect_complete() 404 uint8_t xx; in rw_t2t_handle_tlv_detect_rsp() local 632 xx = 0; in rw_t2t_handle_tlv_detect_rsp() 637 while (xx < count) { in rw_t2t_handle_tlv_detect_rsp() 640 p_t2t->lockbyte[p_t2t->num_lockbytes].byte_index = xx; in rw_t2t_handle_tlv_detect_rsp() 642 xx++; in rw_t2t_handle_tlv_detect_rsp() 855 uint8_t xx; in rw_t2t_extract_default_locks_info() local 895 for (xx = 0; xx < num_dynamic_lock_bytes; xx++) { in rw_t2t_extract_default_locks_info() 896 p_t2t->lockbyte[xx].tlv_index = p_t2t->num_lock_tlvs; in rw_t2t_extract_default_locks_info() [all …]
|
D | rw_i93.cc | 1814 uint16_t length = p_resp->len, xx, block, first_block, last_block, num_blocks; in rw_i93_sm_detect_ndef() local 1987 for (xx = 0; xx < length; xx++) { in rw_i93_sm_detect_ndef() 1990 if (*(p + xx) == I93_ICODE_TLV_TYPE_NULL) { in rw_i93_sm_detect_ndef() 1992 } else if ((*(p + xx) == I93_ICODE_TLV_TYPE_NDEF) || in rw_i93_sm_detect_ndef() 1993 (*(p + xx) == I93_ICODE_TLV_TYPE_PROP)) { in rw_i93_sm_detect_ndef() 1995 p_i93->tlv_type = *(p + xx); in rw_i93_sm_detect_ndef() 1996 p_i93->ndef_tlv_start_offset = p_i93->rw_offset + xx; in rw_i93_sm_detect_ndef() 1999 } else if (*(p + xx) == I93_ICODE_TLV_TYPE_TERM) { in rw_i93_sm_detect_ndef() 2005 "%s - Invalid type: 0x%02x", __func__, *(p + xx)); in rw_i93_sm_detect_ndef() 2012 if (*(p + xx) == 0xFF) { in rw_i93_sm_detect_ndef() [all …]
|
/system/nfc/src/nfa/dm/ |
D | nfa_dm_discover.cc | 397 uint8_t params[250], *p, xx; in nfa_dm_set_rf_listen_mode_raw_config() local 503 for (xx = 0; xx < NFA_LF_MAX_SC_NFCID2; xx++) { in nfa_dm_set_rf_listen_mode_raw_config() 504 if ((p_cfg->lf_t3t_flags & (0x0001 << xx)) != 0x0000) { in nfa_dm_set_rf_listen_mode_raw_config() 505 UINT8_TO_STREAM(p, NFC_PMID_LF_T3T_ID1 + xx); in nfa_dm_set_rf_listen_mode_raw_config() 507 ARRAY_TO_STREAM(p, p_cfg->lf_t3t_identifier[xx], in nfa_dm_set_rf_listen_mode_raw_config() 882 uint8_t num_params, xx; in nfa_dm_start_rf_discover() local 902 for (xx = 0; xx < NFA_DM_DISC_NUM_ENTRIES; xx++) { in nfa_dm_start_rf_discover() 903 if (nfa_dm_cb.disc_cb.entry[xx].in_use) { in nfa_dm_start_rf_discover() 904 poll_mask = (nfa_dm_cb.disc_cb.entry[xx].requested_disc_mask & in nfa_dm_start_rf_discover() 919 if (nfa_dm_cb.disc_cb.entry[xx].host_id == in nfa_dm_start_rf_discover() [all …]
|
D | nfa_dm_main.cc | 218 uint8_t xx = 0, updated_len = 0, *p_cur_len; in nfa_dm_check_set_config() local 233 while (tlv_list_len - xx >= 2) /* at least type and len */ in nfa_dm_check_set_config() 236 type = *(p_tlv_list + xx); in nfa_dm_check_set_config() 237 len = *(p_tlv_list + xx + 1); in nfa_dm_check_set_config() 238 p_value = p_tlv_list + xx + 2; in nfa_dm_check_set_config() 240 if (len > (tlv_list_len - xx - 2)) { in nfa_dm_check_set_config() 407 if ((updated_len != xx) && (!app_init)) { in nfa_dm_check_set_config() 408 memcpy(p_tlv_list + updated_len, p_tlv_list + xx, (len + 2)); in nfa_dm_check_set_config() 412 xx += len + 2; /* move to next TLV */ in nfa_dm_check_set_config()
|
D | nfa_dm_act.cc | 137 uint8_t xx; in nfa_dm_set_init_nci_params() local 148 for (xx = 0; xx < NFA_CE_LISTEN_INFO_MAX; xx++) { in nfa_dm_set_init_nci_params() 149 nfa_dm_cb.params.lf_t3t_id[xx][0] = 0xFF; in nfa_dm_set_init_nci_params() 150 nfa_dm_cb.params.lf_t3t_id[xx][1] = 0xFF; in nfa_dm_set_init_nci_params() 151 nfa_dm_cb.params.lf_t3t_id[xx][2] = 0x02; in nfa_dm_set_init_nci_params() 152 nfa_dm_cb.params.lf_t3t_id[xx][3] = 0xFE; in nfa_dm_set_init_nci_params() 156 for (xx = 0; xx < NFA_CE_LISTEN_INFO_MAX; xx++) { in nfa_dm_set_init_nci_params() 159 nfa_dm_cb.params.lf_t3t_id[xx][yy] = 0xFF; in nfa_dm_set_init_nci_params() 163 for (xx = 0; xx < NFA_CE_LISTEN_INFO_MAX; xx++) { in nfa_dm_set_init_nci_params() 164 nfa_dm_cb.params.lf_t3t_id[xx][0] = 0xFF; in nfa_dm_set_init_nci_params() [all …]
|
/system/nfc/src/nfa/ce/ |
D | nfa_ce_main.cc | 106 uint8_t xx; in nfa_ce_sys_disable() local 114 for (xx = 0, p_info = nfa_ce_cb.listen_info; xx < NFA_CE_LISTEN_INFO_MAX; in nfa_ce_sys_disable() 115 xx++, p_info++) { in nfa_ce_sys_disable()
|
/system/nfc/src/gki/common/ |
D | gki_buffer.cc | 954 uint16_t xx, size; in GKI_find_buf_start() local 959 for (xx = 0; xx < GKI_NUM_TOTAL_BUF_POOLS; xx++) { in GKI_find_buf_start() 960 if ((p_ua > p_cb->pool_start[xx]) && (p_ua < p_cb->pool_end[xx])) { in GKI_find_buf_start() 961 yy = (uint32_t)(p_ua - p_cb->pool_start[xx]); in GKI_find_buf_start() 963 size = p_cb->pool_size[xx]; in GKI_find_buf_start() 967 return ((void*)(p_cb->pool_start[xx] + yy + sizeof(BUFFER_HDR_T))); in GKI_find_buf_start() 1214 uint8_t xx; in GKI_create_pool() local 1224 for (xx = 0; xx < GKI_NUM_TOTAL_BUF_POOLS; xx++) { in GKI_create_pool() 1225 if (!p_cb->pool_start[xx]) break; in GKI_create_pool() 1228 if (xx == GKI_NUM_TOTAL_BUF_POOLS) return (GKI_INVALID_POOL); in GKI_create_pool() [all …]
|
/system/nfc/src/nfc/nci/ |
D | nci_hmsgs.cc | 363 int xx; in nci_snd_discover_cmd() local 381 for (xx = 0; xx < num; xx++) { in nci_snd_discover_cmd() 382 UINT8_TO_STREAM(pp, p_param[xx].type); in nci_snd_discover_cmd() 383 UINT8_TO_STREAM(pp, p_param[xx].frequency); in nci_snd_discover_cmd() 474 int xx; in nci_snd_discover_map_cmd() local 493 for (xx = 0; xx < num; xx++) { in nci_snd_discover_map_cmd() 494 UINT8_TO_STREAM(pp, p_maps[xx].protocol); in nci_snd_discover_map_cmd() 495 UINT8_TO_STREAM(pp, p_maps[xx].mode); in nci_snd_discover_map_cmd() 496 UINT8_TO_STREAM(pp, p_maps[xx].intf_type); in nci_snd_discover_map_cmd()
|
D | nci_hrcv.cc | 417 uint8_t xx; in nci_proc_ee_management_ntf() local 452 for (xx = 0; xx < nfc_response.nfcee_info.num_interface; xx++) { in nci_proc_ee_management_ntf() 453 nfc_response.nfcee_info.ee_interface[xx] = *pp++; in nci_proc_ee_management_ntf() 473 for (xx = 0; xx < nfc_response.nfcee_info.num_tlvs; xx++, p_tlv++) { in nci_proc_ee_management_ntf()
|
/system/nfc/src/nfc/llcp/ |
D | llcp_link.cc | 687 uint8_t xx, sap, idx; in llcp_link_check_uncongested() local 719 for (xx = LLCP_SAP_SDP + 1; xx < LLCP_NUM_SAPS; xx++) { in llcp_link_check_uncongested() 744 for (xx = 0; xx < LLCP_NUM_SAPS; xx++) { in llcp_link_check_uncongested() 768 for (xx = 0; xx < LLCP_MAX_DATA_LINK; xx++) { in llcp_link_check_uncongested() 792 for (xx = 0; xx < LLCP_MAX_DATA_LINK; xx++) { in llcp_link_check_uncongested() 1365 int count, xx; in llcp_link_get_next_pdu() local 1380 for (xx = 0; xx < 2; xx++) { in llcp_link_get_next_pdu()
|
/system/nfc/src/gki/ulinux/ |
D | gki_ulinux.cc | 1153 uint32_t xx; in GKI_shiftdown() local 1155 for (xx = 0; xx < len; xx++) *pd-- = *ps--; in GKI_shiftdown() 1168 uint32_t xx; in GKI_shiftup() local 1170 for (xx = 0; xx < len; xx++) *pd++ = *ps++; in GKI_shiftup()
|