Lines Matching refs:UINT8

52 extern void btm_process_cancel_complete(UINT8 status, UINT8 mode);
53 extern void btm_ble_test_command_complete(UINT8 *p);
58 static void btu_hcif_inquiry_comp_evt (UINT8 *p);
59 static void btu_hcif_inquiry_result_evt (UINT8 *p);
60 static void btu_hcif_inquiry_rssi_result_evt (UINT8 *p);
61 static void btu_hcif_extended_inquiry_result_evt (UINT8 *p);
63 static void btu_hcif_connection_comp_evt (UINT8 *p);
64 static void btu_hcif_connection_request_evt (UINT8 *p);
65 static void btu_hcif_disconnection_comp_evt (UINT8 *p);
66 static void btu_hcif_authentication_comp_evt (UINT8 *p);
67 static void btu_hcif_rmt_name_request_comp_evt (UINT8 *p, UINT16 evt_len);
68 static void btu_hcif_encryption_change_evt (UINT8 *p);
69 static void btu_hcif_read_rmt_features_comp_evt (UINT8 *p);
70 static void btu_hcif_read_rmt_ext_features_comp_evt (UINT8 *p);
71 static void btu_hcif_read_rmt_version_comp_evt (UINT8 *p);
72 static void btu_hcif_qos_setup_comp_evt (UINT8 *p);
75 static void btu_hcif_hardware_error_evt (UINT8 *p);
77 static void btu_hcif_role_change_evt (UINT8 *p);
78 static void btu_hcif_num_compl_data_pkts_evt (UINT8 *p);
79 static void btu_hcif_mode_change_evt (UINT8 *p);
80 static void btu_hcif_pin_code_request_evt (UINT8 *p);
81 static void btu_hcif_link_key_request_evt (UINT8 *p);
82 static void btu_hcif_link_key_notification_evt (UINT8 *p);
86 static void btu_hcif_read_clock_off_comp_evt (UINT8 *p);
88 static void btu_hcif_qos_violation_evt (UINT8 *p);
91 static void btu_hcif_esco_connection_comp_evt(UINT8 *p);
92 static void btu_hcif_esco_connection_chg_evt(UINT8 *p);
95 static void btu_hcif_host_support_evt (UINT8 *p);
96 static void btu_hcif_io_cap_request_evt (UINT8 *p);
97 static void btu_hcif_io_cap_response_evt (UINT8 *p);
98 static void btu_hcif_user_conf_request_evt (UINT8 *p);
99 static void btu_hcif_user_passkey_request_evt (UINT8 *p);
100 static void btu_hcif_user_passkey_notif_evt (UINT8 *p);
101 static void btu_hcif_keypress_notif_evt (UINT8 *p);
102 static void btu_hcif_rem_oob_request_evt (UINT8 *p);
104 static void btu_hcif_simple_pair_complete_evt (UINT8 *p);
110 static void btu_hcif_ssr_evt (UINT8 *p, UINT16 evt_len);
114 static void btu_ble_ll_conn_complete_evt (UINT8 *p, UINT16 evt_len);
115 static void btu_ble_process_adv_pkt (UINT8 *p);
116 static void btu_ble_read_remote_feat_evt (UINT8 *p);
117 static void btu_ble_ll_conn_param_upd_evt (UINT8 *p, UINT16 evt_len);
118 static void btu_ble_proc_ltk_req (UINT8 *p);
119 static void btu_hcif_encryption_key_refresh_cmpl_evt (UINT8 *p);
120 static void btu_ble_data_length_change_evt (UINT8 *p, UINT16 evt_len);
122 static void btu_ble_rc_param_req_evt(UINT8 *p);
125 static void btu_ble_proc_enhanced_conn_cmpl (UINT8 *p, UINT16 evt_len);
140 void btu_hcif_process_event (UNUSED_ATTR UINT8 controller_id, BT_HDR *p_msg) in btu_hcif_process_event()
142 UINT8 *p = (UINT8 *)(p_msg + 1) + p_msg->offset; in btu_hcif_process_event()
143 UINT8 hci_evt_code, hci_evt_len; in btu_hcif_process_event()
145 UINT8 ble_sub_code; in btu_hcif_process_event()
353 void btu_hcif_send_cmd (UNUSED_ATTR UINT8 controller_id, BT_HDR *p_buf) in btu_hcif_send_cmd()
395 static void btu_hcif_inquiry_comp_evt (UINT8 *p) in btu_hcif_inquiry_comp_evt()
397 UINT8 status; in btu_hcif_inquiry_comp_evt()
414 static void btu_hcif_inquiry_result_evt (UINT8 *p) in btu_hcif_inquiry_result_evt()
429 static void btu_hcif_inquiry_rssi_result_evt (UINT8 *p) in btu_hcif_inquiry_rssi_result_evt()
444 static void btu_hcif_extended_inquiry_result_evt (UINT8 *p) in btu_hcif_extended_inquiry_result_evt()
459 static void btu_hcif_connection_comp_evt (UINT8 *p) in btu_hcif_connection_comp_evt()
461 UINT8 status; in btu_hcif_connection_comp_evt()
464 UINT8 link_type; in btu_hcif_connection_comp_evt()
465 UINT8 enc_mode; in btu_hcif_connection_comp_evt()
504 static void btu_hcif_connection_request_evt (UINT8 *p) in btu_hcif_connection_request_evt()
508 UINT8 link_type; in btu_hcif_connection_request_evt()
537 static void btu_hcif_disconnection_comp_evt (UINT8 *p) in btu_hcif_disconnection_comp_evt()
540 UINT8 reason; in btu_hcif_disconnection_comp_evt()
569 static void btu_hcif_authentication_comp_evt (UINT8 *p) in btu_hcif_authentication_comp_evt()
571 UINT8 status; in btu_hcif_authentication_comp_evt()
589 static void btu_hcif_rmt_name_request_comp_evt (UINT8 *p, UINT16 evt_len) in btu_hcif_rmt_name_request_comp_evt()
591 UINT8 status; in btu_hcif_rmt_name_request_comp_evt()
613 static void btu_hcif_encryption_change_evt (UINT8 *p) in btu_hcif_encryption_change_evt()
615 UINT8 status; in btu_hcif_encryption_change_evt()
617 UINT8 encr_enable; in btu_hcif_encryption_change_evt()
636 static void btu_hcif_read_rmt_features_comp_evt (UINT8 *p) in btu_hcif_read_rmt_features_comp_evt()
650 static void btu_hcif_read_rmt_ext_features_comp_evt (UINT8 *p) in btu_hcif_read_rmt_ext_features_comp_evt()
652 UINT8 *p_cur = p; in btu_hcif_read_rmt_ext_features_comp_evt()
653 UINT8 status; in btu_hcif_read_rmt_ext_features_comp_evt()
676 static void btu_hcif_read_rmt_version_comp_evt (UINT8 *p) in btu_hcif_read_rmt_version_comp_evt()
690 static void btu_hcif_qos_setup_comp_evt (UINT8 *p) in btu_hcif_qos_setup_comp_evt()
692 UINT8 status; in btu_hcif_qos_setup_comp_evt()
717 static void btu_hcif_esco_connection_comp_evt (UINT8 *p) in btu_hcif_esco_connection_comp_evt()
723 UINT8 status; in btu_hcif_esco_connection_comp_evt()
750 static void btu_hcif_esco_connection_chg_evt (UINT8 *p) in btu_hcif_esco_connection_chg_evt()
756 UINT8 status; in btu_hcif_esco_connection_chg_evt()
757 UINT8 tx_interval; in btu_hcif_esco_connection_chg_evt()
758 UINT8 retrans_window; in btu_hcif_esco_connection_chg_evt()
782 static void btu_hcif_hdl_command_complete (UINT16 opcode, UINT8 *p, UINT16 evt_len, in btu_hcif_hdl_command_complete()
945 static void btu_hcif_hdl_command_status (UINT16 opcode, UINT8 status, UINT8 *p_cmd, in btu_hcif_hdl_command_status()
1143 static void btu_hcif_hardware_error_evt (UINT8 *p) in btu_hcif_hardware_error_evt()
1177 static void btu_hcif_role_change_evt (UINT8 *p) in btu_hcif_role_change_evt()
1179 UINT8 status; in btu_hcif_role_change_evt()
1181 UINT8 role; in btu_hcif_role_change_evt()
1200 static void btu_hcif_num_compl_data_pkts_evt (UINT8 *p) in btu_hcif_num_compl_data_pkts_evt()
1218 static void btu_hcif_mode_change_evt (UINT8 *p) in btu_hcif_mode_change_evt()
1220 UINT8 status; in btu_hcif_mode_change_evt()
1222 UINT8 current_mode; in btu_hcif_mode_change_evt()
1250 static void btu_hcif_ssr_evt (UINT8 *p, UINT16 evt_len) in btu_hcif_ssr_evt()
1265 static void btu_hcif_pin_code_request_evt (UINT8 *p) in btu_hcif_pin_code_request_evt()
1287 static void btu_hcif_link_key_request_evt (UINT8 *p) in btu_hcif_link_key_request_evt()
1304 static void btu_hcif_link_key_notification_evt (UINT8 *p) in btu_hcif_link_key_notification_evt()
1308 UINT8 key_type; in btu_hcif_link_key_notification_evt()
1365 static void btu_hcif_read_clock_off_comp_evt (UINT8 *p) in btu_hcif_read_clock_off_comp_evt()
1367 UINT8 status; in btu_hcif_read_clock_off_comp_evt()
1408 static void btu_hcif_qos_violation_evt (UINT8 *p) in btu_hcif_qos_violation_evt()
1458 static void btu_hcif_host_support_evt (UINT8 *p) in btu_hcif_host_support_evt()
1472 static void btu_hcif_io_cap_request_evt (UINT8 *p) in btu_hcif_io_cap_request_evt()
1486 static void btu_hcif_io_cap_response_evt (UINT8 *p) in btu_hcif_io_cap_response_evt()
1500 static void btu_hcif_user_conf_request_evt (UINT8 *p) in btu_hcif_user_conf_request_evt()
1514 static void btu_hcif_user_passkey_request_evt (UINT8 *p) in btu_hcif_user_passkey_request_evt()
1528 static void btu_hcif_user_passkey_notif_evt (UINT8 *p) in btu_hcif_user_passkey_notif_evt()
1542 static void btu_hcif_keypress_notif_evt (UINT8 *p) in btu_hcif_keypress_notif_evt()
1556 static void btu_hcif_rem_oob_request_evt (UINT8 *p) in btu_hcif_rem_oob_request_evt()
1570 static void btu_hcif_simple_pair_complete_evt (UINT8 *p) in btu_hcif_simple_pair_complete_evt()
1598 static void btu_hcif_encryption_key_refresh_cmpl_evt (UINT8 *p) in btu_hcif_encryption_key_refresh_cmpl_evt()
1600 UINT8 status; in btu_hcif_encryption_key_refresh_cmpl_evt()
1601 UINT8 enc_enable = 0; in btu_hcif_encryption_key_refresh_cmpl_evt()
1612 static void btu_ble_process_adv_pkt (UINT8 *p) in btu_ble_process_adv_pkt()
1619 static void btu_ble_ll_conn_complete_evt ( UINT8 *p, UINT16 evt_len) in btu_ble_ll_conn_complete_evt()
1624 static void btu_ble_proc_enhanced_conn_cmpl( UINT8 *p, UINT16 evt_len) in btu_ble_proc_enhanced_conn_cmpl()
1629 static void btu_ble_ll_conn_param_upd_evt (UINT8 *p, UINT16 evt_len) in btu_ble_ll_conn_param_upd_evt()
1634 UINT8 status; in btu_ble_ll_conn_param_upd_evt()
1642 static void btu_ble_read_remote_feat_evt (UINT8 *p) in btu_ble_read_remote_feat_evt()
1647 static void btu_ble_proc_ltk_req (UINT8 *p) in btu_ble_proc_ltk_req()
1650 UINT8 *pp; in btu_ble_proc_ltk_req()
1661 static void btu_ble_data_length_change_evt(UINT8 *p, UINT16 evt_len) in btu_ble_data_length_change_evt()
1685 static void btu_ble_rc_param_req_evt(UINT8 *p) in btu_ble_rc_param_req_evt()