Lines Matching refs:xx
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()
161 int xx = 0; in nfa_hciu_count_open_pipes_on_gate() local
165 for (; xx < NFA_HCI_MAX_PIPE_CB; xx++, pp++) { in nfa_hciu_count_open_pipes_on_gate()
229 int xx; in nfa_hciu_alloc_gate() local
268 for (xx = 0, pg = nfa_hci_cb.cfg.dyn_gates; xx < NFA_HCI_MAX_GATE_CB; in nfa_hciu_alloc_gate()
269 xx++, pg++) { in nfa_hciu_alloc_gate()
405 int xx; in nfa_hciu_get_allocated_gate_list() local
408 for (xx = 0, p_cb = nfa_hci_cb.cfg.dyn_gates; xx < NFA_HCI_MAX_GATE_CB; in nfa_hciu_get_allocated_gate_list()
409 xx++, p_cb++) { in nfa_hciu_get_allocated_gate_list()
432 uint8_t xx; in nfa_hciu_alloc_pipe() local
443 for (xx = 0, pp = nfa_hci_cb.cfg.dyn_pipes; xx < NFA_HCI_MAX_PIPE_CB; in nfa_hciu_alloc_pipe()
444 xx++, pp++) { in nfa_hciu_alloc_pipe()
447 << StringPrintf("nfa_hciu_alloc_pipe:%d, index:%d", pipe_id, xx); in nfa_hciu_alloc_pipe()
589 int xx; in nfa_hciu_find_active_pipe_by_owner() local
595 for (xx = 0, pp = nfa_hci_cb.cfg.dyn_pipes; xx < NFA_HCI_MAX_PIPE_CB; in nfa_hciu_find_active_pipe_by_owner()
596 xx++, pp++) { in nfa_hciu_find_active_pipe_by_owner()
624 int xx; in nfa_hciu_check_pipe_between_gates() local
632 for (xx = 0, pp = nfa_hci_cb.cfg.dyn_pipes; xx < NFA_HCI_MAX_PIPE_CB; in nfa_hciu_check_pipe_between_gates()
633 xx++, pp++) { in nfa_hciu_check_pipe_between_gates()
658 int xx; in nfa_hciu_find_pipe_by_owner() local
664 for (xx = 0, pp = nfa_hci_cb.cfg.dyn_pipes; xx < NFA_HCI_MAX_PIPE_CB; in nfa_hciu_find_pipe_by_owner()
665 xx++, pp++) { in nfa_hciu_find_pipe_by_owner()
689 int xx; in nfa_hciu_find_pipe_on_gate() local
694 for (xx = 0, pp = nfa_hci_cb.cfg.dyn_pipes; xx < NFA_HCI_MAX_PIPE_CB; in nfa_hciu_find_pipe_on_gate()
695 xx++, pp++) { in nfa_hciu_find_pipe_on_gate()
718 uint8_t xx; in nfa_hciu_is_active_host() local
722 for (xx = 0; xx < NFA_HCI_MAX_HOST_IN_NETWORK; xx++) { in nfa_hciu_is_active_host()
723 if (nfa_hci_cb.active_host[xx] == host_id) return true; in nfa_hciu_is_active_host()
741 uint8_t xx; in nfa_hciu_is_host_reseting() local
745 for (xx = 0; xx < NFA_HCI_MAX_HOST_IN_NETWORK; xx++) { in nfa_hciu_is_host_reseting()
746 if (nfa_hci_cb.reset_host[xx] == host_id) return true; in nfa_hciu_is_host_reseting()
764 uint8_t xx; in nfa_hciu_is_no_host_resetting() local
766 for (xx = 0; xx < NFA_HCI_MAX_HOST_IN_NETWORK; xx++) { in nfa_hciu_is_no_host_resetting()
767 if (nfa_hci_cb.reset_host[xx] != 0) return false; in nfa_hciu_is_no_host_resetting()
785 int xx; in nfa_hciu_find_active_pipe_on_gate() local
790 for (xx = 0, pp = nfa_hci_cb.cfg.dyn_pipes; xx < NFA_HCI_MAX_PIPE_CB; in nfa_hciu_find_active_pipe_on_gate()
791 xx++, pp++) { in nfa_hciu_find_active_pipe_on_gate()
867 int xx; in nfa_hciu_remove_all_pipes_from_host() local
874 for (xx = 0, pp = nfa_hci_cb.cfg.dyn_pipes; xx < NFA_HCI_MAX_PIPE_CB; in nfa_hciu_remove_all_pipes_from_host()
875 xx++, pp++) { in nfa_hciu_remove_all_pipes_from_host()
1328 int xx; in nfa_hciu_get_type_inst_names() local
1330 xx = snprintf(p_buff, max_buff_size, "Type: %s [0x%02x] ", in nfa_hciu_get_type_inst_names()
1335 snprintf(&p_buff[xx], max_buff_size - xx, "Inst: %s [0x%02x] ", in nfa_hciu_get_type_inst_names()
1340 snprintf(&p_buff[xx], max_buff_size - xx, "Evt: %s [0x%02x] ", in nfa_hciu_get_type_inst_names()
1345 snprintf(&p_buff[xx], max_buff_size - xx, "Resp: %s [0x%02x] ", in nfa_hciu_get_type_inst_names()
1350 snprintf(&p_buff[xx], max_buff_size - xx, "Inst: %u ", inst); in nfa_hciu_get_type_inst_names()