Home | History | Annotate | Download | only in hci

Lines Matching defs:pg

76     tNFA_HCI_DYN_GATE *pg = nfa_hci_cb.cfg.dyn_gates;
79 for ( ; xx < NFA_HCI_MAX_GATE_CB; xx++, pg++)
81 if (pg->gate_id == gate_id)
82 return (pg);
99 tNFA_HCI_DYN_GATE *pg = nfa_hci_cb.cfg.dyn_gates;
102 for ( ; xx < NFA_HCI_MAX_GATE_CB; xx++, pg++)
104 if (pg->gate_owner == app_handle)
105 return (pg);
123 tNFA_HCI_DYN_GATE *pg = nfa_hci_cb.cfg.dyn_gates;
126 for ( ; xx < NFA_HCI_MAX_GATE_CB; xx++, pg++)
128 if ( (pg->gate_owner == app_handle)
129 &&(pg->pipe_inx_mask == 0) )
130 return (pg);
201 tNFA_HCI_DYN_GATE *pg;
203 if ((pg = nfa_hciu_find_gate_by_gid (gate_id)) == NULL)
206 return (pg->gate_owner);
221 tNFA_HCI_DYN_GATE *pg;
226 if ((pg = nfa_hciu_find_gate_by_gid (pp->local_gate)) == NULL)
229 return (pg->gate_owner);
244 tNFA_HCI_DYN_GATE *pg;
261 if ((pg = nfa_hciu_find_gate_by_gid (gate_id)) != NULL)
262 return (pg);
285 for (xx = 0, pg = nfa_hci_cb.cfg.dyn_gates; xx < NFA_HCI_MAX_GATE_CB; xx++, pg++)
287 if (pg->gate_id == 0)
290 pg->gate_id = gate_id;
291 pg->gate_owner = app_handle;
292 pg->pipe_inx_mask = 0;
297 return (pg);
606 tNFA_HCI_DYN_GATE *pg;
620 if ( ((pg = nfa_hciu_find_gate_by_gid (pp->local_gate)) != NULL)
621 &&(pg->gate_owner == app_handle) )
677 tNFA_HCI_DYN_GATE *pg;
688 if ( ((pg = nfa_hciu_find_gate_by_gid (pp->local_gate)) != NULL)
689 &&(pg->gate_owner == app_handle) )
709 tNFA_HCI_DYN_GATE *pg;
720 if ( ((pg = nfa_hciu_find_gate_by_gid (pp->local_gate)) != NULL)
721 &&(pg->gate_id == gate_id) )
810 tNFA_HCI_DYN_GATE *pg;
824 if ( ((pg = nfa_hciu_find_gate_by_gid (pp->local_gate)) != NULL)
825 &&(pg->gate_id == gate_id) )
898 tNFA_HCI_DYN_GATE *pg;
914 if ((pg = nfa_hciu_find_gate_by_gid (pp->local_gate)) != NULL)
919 nfa_hciu_send_to_app (NFA_HCI_DELETE_PIPE_EVT, &evt_data, pg->gate_owner);