Home | History | Annotate | Download | only in hci

Lines Matching defs:p_pipe

526     tNFA_HCI_DYN_PIPE   *p_pipe;
534 if ((p_pipe = nfa_hciu_alloc_pipe (pipe_id)) != NULL)
536 p_pipe->pipe_id = pipe_id;
537 p_pipe->pipe_state = NFA_HCI_PIPE_CLOSED;
538 p_pipe->dest_host = dest_host;
539 p_pipe->dest_gate = dest_gate;
540 p_pipe->local_gate = local_gate;
543 pipe_index = (UINT8) (p_pipe - nfa_hci_cb.cfg.dyn_pipes);
569 tNFA_HCI_DYN_PIPE *p_pipe;
576 if ((p_pipe = nfa_hciu_alloc_pipe (pipe_id)) != NULL)
578 p_pipe->pipe_id = pipe_id;
579 p_pipe->pipe_state = NFA_HCI_PIPE_CLOSED;
580 p_pipe->dest_host = dest_host;
581 p_pipe->dest_gate = dest_gate;
582 p_pipe->local_gate = local_gate;
588 pipe_index = (UINT8) (p_pipe - nfa_hci_cb.cfg.dyn_pipes);
813 tNFA_HCI_DYN_PIPE *p_pipe;
818 if ((p_pipe = nfa_hciu_find_pipe_by_pid (pipe_id)) == NULL)
827 pipe_index = (UINT8) (p_pipe - nfa_hci_cb.cfg.dyn_pipes);
829 if (p_pipe->local_gate == NFA_HCI_IDENTITY_MANAGEMENT_GATE)
836 if ((p_gate = nfa_hciu_find_gate_by_gid (p_pipe->local_gate)) == NULL)
839 p_pipe->pipe_id = 0;
848 memset (p_pipe,0,sizeof (tNFA_HCI_DYN_PIPE));
1365 tNFA_HCI_DYN_PIPE *p_pipe;
1369 &&((p_pipe = nfa_hciu_find_pipe_by_pid (pipe_id)) != NULL) )
1371 if (p_pipe->local_gate == NFA_HCI_CONNECTIVITY_GATE)