Home | History | Annotate | Download | only in hci

Lines Matching full:uint8

37 static void handle_debug_loopback (BT_HDR *p_buf, UINT8 pipe, UINT8 type, UINT8 instruction);
49 tNFA_HCI_DYN_PIPE *nfa_hciu_find_pipe_by_pid (UINT8 pipe_id)
74 tNFA_HCI_DYN_GATE *nfa_hciu_find_gate_by_gid (UINT8 gate_id)
145 UINT8 nfa_hciu_count_pipes_on_gate (tNFA_HCI_DYN_GATE *p_gate)
149 UINT8 count = 0;
171 UINT8 nfa_hciu_count_open_pipes_on_gate (tNFA_HCI_DYN_GATE *p_gate)
176 UINT8 count = 0;
199 tNFA_HANDLE nfa_hciu_get_gate_owner (UINT8 gate_id)
218 tNFA_HANDLE nfa_hciu_get_pipe_owner (UINT8 pipe_id)
242 tNFA_HCI_DYN_GATE *nfa_hciu_alloc_gate (UINT8 gate_id, tNFA_HANDLE app_handle)
246 UINT8 app_inx = app_handle & NFA_HANDLE_MASK;
316 tNFA_STATUS nfa_hciu_send_msg (UINT8 pipe_id, UINT8 type, UINT8 instruction, UINT16 msg_len, UINT8 *p_msg)
319 UINT8 *p_data;
347 p_data = (UINT8 *) (p_buf + 1) + p_buf->offset;
381 DispHcp (((UINT8 *) (p_buf + 1) + p_buf->offset), p_buf->len, FALSE, (BOOLEAN) ((p_buf->len - data_len) == 2));
420 UINT8 nfa_hciu_get_allocated_gate_list (UINT8 *p_gate_list)
424 UINT8 count = 0;
450 tNFA_HCI_DYN_PIPE *nfa_hciu_alloc_pipe (UINT8 pipe_id)
452 UINT8 xx;
489 void nfa_hciu_release_gate (UINT8 gate_id)
520 tNFA_HCI_RESPONSE nfa_hciu_add_pipe_to_gate (UINT8 pipe_id, UINT8 local_gate,
521 UINT8 dest_host, UINT8 dest_gate)
525 UINT8 pipe_index;
541 pipe_index = (UINT8) (p_pipe - nfa_hci_cb.cfg.dyn_pipes);
565 tNFA_HCI_RESPONSE nfa_hciu_add_pipe_to_static_gate (UINT8 local_gate, UINT8 pipe_id, UINT8 dest_host, UINT8 dest_gate)
568 UINT8 pipe_index;
586 pipe_index = (UINT8) (p_pipe - nfa_hci_cb.cfg.dyn_pipes);
641 BOOLEAN nfa_hciu_check_pipe_between_gates (UINT8 local_gate, UINT8 dest_host, UINT8 dest_gate)
707 tNFA_HCI_DYN_PIPE *nfa_hciu_find_pipe_on_gate (UINT8 gate_id)
740 BOOLEAN nfa_hciu_is_active_host (UINT8 host_id)
742 UINT8 xx;
763 BOOLEAN nfa_hciu_is_host_reseting (UINT8 host_id)
765 UINT8 xx;
788 UINT8 xx;
808 tNFA_HCI_DYN_PIPE *nfa_hciu_find_active_pipe_on_gate (UINT8 gate_id)
844 tNFA_HCI_RESPONSE nfa_hciu_release_pipe (UINT8 pipe_id)
848 UINT8 pipe_index;
861 pipe_index = (UINT8) (p_pipe - nfa_hci_cb.cfg.dyn_pipes);
896 void nfa_hciu_remove_all_pipes_from_host (UINT8 host)
934 tNFA_STATUS nfa_hciu_send_create_pipe_cmd (UINT8 source_gate, UINT8 dest_host, UINT8 dest_gate)
937 UINT8 data[3];
959 tNFA_STATUS nfa_hciu_send_delete_pipe_cmd (UINT8 pipe)
997 status = nfa_hciu_send_msg (NFA_HCI_ADMIN_PIPE, NFA_HCI_COMMAND_TYPE, NFA_HCI_ADM_CLEAR_ALL_PIPE, 2, (UINT8 *) &id_ref_data);
1011 tNFA_STATUS nfa_hciu_send_open_pipe_cmd (UINT8 pipe)
1031 tNFA_STATUS nfa_hciu_send_close_pipe_cmd (UINT8 pipe)
1051 tNFA_STATUS nfa_hciu_send_get_param_cmd (UINT8 pipe, UINT8 index)
1070 tNFA_STATUS nfa_hciu_send_set_param_cmd (UINT8 pipe, UINT8 index, UINT8 length, UINT8 *p_data)
1073 UINT8 data[255];
1097 UINT8 app_inx = app_handle & NFA_HANDLE_MASK;
1128 UINT8 app_inx;
1150 UINT8 app_inx;
1174 char *nfa_hciu_get_response_name (UINT8 rsp_code)
1216 char *nfa_hciu_type_2_str(UINT8 type)
1240 char *nfa_hciu_instr_2_str (UINT8 instruction)
1317 char *nfa_hciu_get_state_name (UINT8 state)
1345 char *nfa_hciu_get_type_inst_names (UINT8 pipe, UINT8 type, UINT8 inst, char *p_buff)
1378 char *nfa_hciu_evt_2_str (UINT8 pipe_id, UINT8 evt)
1417 static void handle_debug_loopback (BT_HDR *p_buf, UINT8 pipe, UINT8 type, UINT8 instruction)
1419 UINT8 *p = (UINT8 *) (p_buf + 1) + p_buf->offset;
1420 static UINT8 next_pipe = 0x10;
1438 memcpy (&p[2], (UINT8 *) nfa_hci_cb.cfg.admin_gate.session_id, NFA_HCI_SESSION_ID_LEN);