Lines Matching refs:p
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);
142 UINT8 *p = (UINT8 *)(p_msg + 1) + p_msg->offset; in btu_hcif_process_event() local
147 STREAM_TO_UINT8 (hci_evt_code, p); in btu_hcif_process_event()
148 STREAM_TO_UINT8 (hci_evt_len, p); in btu_hcif_process_event()
153 btu_hcif_inquiry_comp_evt (p); in btu_hcif_process_event()
156 btu_hcif_inquiry_result_evt (p); in btu_hcif_process_event()
159 btu_hcif_inquiry_rssi_result_evt (p); in btu_hcif_process_event()
162 btu_hcif_extended_inquiry_result_evt (p); in btu_hcif_process_event()
165 btu_hcif_connection_comp_evt (p); in btu_hcif_process_event()
168 btu_hcif_connection_request_evt (p); in btu_hcif_process_event()
171 btu_hcif_disconnection_comp_evt (p); in btu_hcif_process_event()
174 btu_hcif_authentication_comp_evt (p); in btu_hcif_process_event()
177 btu_hcif_rmt_name_request_comp_evt (p, hci_evt_len); in btu_hcif_process_event()
180 btu_hcif_encryption_change_evt (p); in btu_hcif_process_event()
184 btu_hcif_encryption_key_refresh_cmpl_evt(p); in btu_hcif_process_event()
188 btu_hcif_read_rmt_features_comp_evt (p); in btu_hcif_process_event()
191 btu_hcif_read_rmt_ext_features_comp_evt (p); in btu_hcif_process_event()
194 btu_hcif_read_rmt_version_comp_evt (p); in btu_hcif_process_event()
197 btu_hcif_qos_setup_comp_evt (p); in btu_hcif_process_event()
208 btu_hcif_hardware_error_evt (p); in btu_hcif_process_event()
214 btu_hcif_role_change_evt (p); in btu_hcif_process_event()
217 btu_hcif_num_compl_data_pkts_evt (p); in btu_hcif_process_event()
220 btu_hcif_mode_change_evt (p); in btu_hcif_process_event()
223 btu_hcif_pin_code_request_evt (p); in btu_hcif_process_event()
226 btu_hcif_link_key_request_evt (p); in btu_hcif_process_event()
229 btu_hcif_link_key_notification_evt (p); in btu_hcif_process_event()
241 btu_hcif_read_clock_off_comp_evt (p); in btu_hcif_process_event()
247 btu_hcif_qos_violation_evt (p); in btu_hcif_process_event()
256 btu_hcif_esco_connection_comp_evt (p); in btu_hcif_process_event()
259 btu_hcif_esco_connection_chg_evt (p); in btu_hcif_process_event()
263 btu_hcif_ssr_evt (p, hci_evt_len); in btu_hcif_process_event()
267 btu_hcif_host_support_evt (p); in btu_hcif_process_event()
270 btu_hcif_io_cap_request_evt (p); in btu_hcif_process_event()
273 btu_hcif_io_cap_response_evt (p); in btu_hcif_process_event()
276 btu_hcif_user_conf_request_evt (p); in btu_hcif_process_event()
279 btu_hcif_user_passkey_request_evt (p); in btu_hcif_process_event()
282 btu_hcif_rem_oob_request_evt (p); in btu_hcif_process_event()
285 btu_hcif_simple_pair_complete_evt (p); in btu_hcif_process_event()
288 btu_hcif_user_passkey_notif_evt (p); in btu_hcif_process_event()
291 btu_hcif_keypress_notif_evt (p); in btu_hcif_process_event()
301 STREAM_TO_UINT8 (ble_sub_code, p); in btu_hcif_process_event()
308 btu_ble_process_adv_pkt(p); in btu_hcif_process_event()
311 btu_ble_ll_conn_complete_evt(p, hci_evt_len); in btu_hcif_process_event()
314 btu_ble_ll_conn_param_upd_evt(p, hci_evt_len); in btu_hcif_process_event()
317 btu_ble_read_remote_feat_evt(p); in btu_hcif_process_event()
320 btu_ble_proc_ltk_req(p); in btu_hcif_process_event()
324 btu_ble_proc_enhanced_conn_cmpl(p, hci_evt_len); in btu_hcif_process_event()
329 btu_ble_rc_param_req_evt(p); in btu_hcif_process_event()
333 btu_ble_data_length_change_evt(p, hci_evt_len); in btu_hcif_process_event()
339 btm_vendor_specific_evt (p, hci_evt_len); in btu_hcif_process_event()
395 static void btu_hcif_inquiry_comp_evt (UINT8 *p) in btu_hcif_inquiry_comp_evt() argument
399 STREAM_TO_UINT8 (status, p); in btu_hcif_inquiry_comp_evt()
414 static void btu_hcif_inquiry_result_evt (UINT8 *p) in btu_hcif_inquiry_result_evt() argument
417 btm_process_inq_results (p, BTM_INQ_RESULT_STANDARD); in btu_hcif_inquiry_result_evt()
429 static void btu_hcif_inquiry_rssi_result_evt (UINT8 *p) in btu_hcif_inquiry_rssi_result_evt() argument
432 btm_process_inq_results (p, BTM_INQ_RESULT_WITH_RSSI); 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() argument
447 btm_process_inq_results (p, BTM_INQ_RESULT_EXTENDED); in btu_hcif_extended_inquiry_result_evt()
459 static void btu_hcif_connection_comp_evt (UINT8 *p) in btu_hcif_connection_comp_evt() argument
470 STREAM_TO_UINT8 (status, p); in btu_hcif_connection_comp_evt()
471 STREAM_TO_UINT16 (handle, p); in btu_hcif_connection_comp_evt()
472 STREAM_TO_BDADDR (bda, p); in btu_hcif_connection_comp_evt()
473 STREAM_TO_UINT8 (link_type, p); in btu_hcif_connection_comp_evt()
474 STREAM_TO_UINT8 (enc_mode, p); in btu_hcif_connection_comp_evt()
504 static void btu_hcif_connection_request_evt (UINT8 *p) in btu_hcif_connection_request_evt() argument
510 STREAM_TO_BDADDR (bda, p); in btu_hcif_connection_request_evt()
511 STREAM_TO_DEVCLASS (dc, p); in btu_hcif_connection_request_evt()
512 STREAM_TO_UINT8 (link_type, p); in btu_hcif_connection_request_evt()
537 static void btu_hcif_disconnection_comp_evt (UINT8 *p) in btu_hcif_disconnection_comp_evt() argument
542 ++p; in btu_hcif_disconnection_comp_evt()
543 STREAM_TO_UINT16 (handle, p); in btu_hcif_disconnection_comp_evt()
544 STREAM_TO_UINT8 (reason, p); in btu_hcif_disconnection_comp_evt()
569 static void btu_hcif_authentication_comp_evt (UINT8 *p) in btu_hcif_authentication_comp_evt() argument
574 STREAM_TO_UINT8 (status, p); in btu_hcif_authentication_comp_evt()
575 STREAM_TO_UINT16 (handle, p); 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() argument
594 STREAM_TO_UINT8 (status, p); in btu_hcif_rmt_name_request_comp_evt()
595 STREAM_TO_BDADDR (bd_addr, p); in btu_hcif_rmt_name_request_comp_evt()
599 btm_process_remote_name (bd_addr, p, evt_len, status); in btu_hcif_rmt_name_request_comp_evt()
601 btm_sec_rmt_name_request_complete (bd_addr, p, 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() argument
619 STREAM_TO_UINT8 (status, p); in btu_hcif_encryption_change_evt()
620 STREAM_TO_UINT16 (handle, p); in btu_hcif_encryption_change_evt()
621 STREAM_TO_UINT8 (encr_enable, p); 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() argument
638 btm_read_remote_features_complete(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() argument
652 UINT8 *p_cur = p; in btu_hcif_read_rmt_ext_features_comp_evt()
659 btm_read_remote_ext_features_complete(p); 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() argument
678 btm_read_remote_version_complete (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() argument
696 STREAM_TO_UINT8 (status, p); in btu_hcif_qos_setup_comp_evt()
697 STREAM_TO_UINT16 (handle, p); in btu_hcif_qos_setup_comp_evt()
698 STREAM_TO_UINT8 (flow.qos_flags, p); in btu_hcif_qos_setup_comp_evt()
699 STREAM_TO_UINT8 (flow.service_type, p); in btu_hcif_qos_setup_comp_evt()
700 STREAM_TO_UINT32 (flow.token_rate, p); in btu_hcif_qos_setup_comp_evt()
701 STREAM_TO_UINT32 (flow.peak_bandwidth, p); in btu_hcif_qos_setup_comp_evt()
702 STREAM_TO_UINT32 (flow.latency, p); in btu_hcif_qos_setup_comp_evt()
703 STREAM_TO_UINT32 (flow.delay_variation, p); 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() argument
725 STREAM_TO_UINT8 (status, p); in btu_hcif_esco_connection_comp_evt()
726 STREAM_TO_UINT16 (handle, p); in btu_hcif_esco_connection_comp_evt()
727 STREAM_TO_BDADDR (bda, p); in btu_hcif_esco_connection_comp_evt()
729 STREAM_TO_UINT8 (data.link_type, p); in btu_hcif_esco_connection_comp_evt()
730 STREAM_TO_UINT8 (data.tx_interval, p); in btu_hcif_esco_connection_comp_evt()
731 STREAM_TO_UINT8 (data.retrans_window, p); in btu_hcif_esco_connection_comp_evt()
732 STREAM_TO_UINT16 (data.rx_pkt_len, p); in btu_hcif_esco_connection_comp_evt()
733 STREAM_TO_UINT16 (data.tx_pkt_len, p); in btu_hcif_esco_connection_comp_evt()
734 STREAM_TO_UINT8 (data.air_mode, p); 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() argument
760 STREAM_TO_UINT8 (status, p); in btu_hcif_esco_connection_chg_evt()
761 STREAM_TO_UINT16 (handle, p); in btu_hcif_esco_connection_chg_evt()
763 STREAM_TO_UINT8 (tx_interval, p); in btu_hcif_esco_connection_chg_evt()
764 STREAM_TO_UINT8 (retrans_window, p); in btu_hcif_esco_connection_chg_evt()
765 STREAM_TO_UINT16 (rx_pkt_len, p); in btu_hcif_esco_connection_chg_evt()
766 STREAM_TO_UINT16 (tx_pkt_len, p); 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() argument
792 btm_event_filter_complete (p); in btu_hcif_hdl_command_complete()
796 btm_delete_stored_link_key_complete (p); in btu_hcif_hdl_command_complete()
800 btm_read_local_name_complete (p, evt_len); in btu_hcif_hdl_command_complete()
804 btm_read_link_quality_complete (p); in btu_hcif_hdl_command_complete()
808 btm_read_rssi_complete (p); in btu_hcif_hdl_command_complete()
812 btm_read_tx_power_complete(p, FALSE); in btu_hcif_hdl_command_complete()
816 btm_create_conn_cancel_complete(p); in btu_hcif_hdl_command_complete()
820 btm_read_local_oob_complete(p); in btu_hcif_hdl_command_complete()
824 btm_read_inq_tx_power_complete(p); in btu_hcif_hdl_command_complete()
830 btm_ble_add_2_white_list_complete(*p); in btu_hcif_hdl_command_complete()
834 btm_ble_clear_white_list_complete(p, evt_len); in btu_hcif_hdl_command_complete()
838 btm_ble_remove_from_white_list_complete(p, evt_len); in btu_hcif_hdl_command_complete()
843 btm_ble_rand_enc_complete (p, opcode, (tBTM_RAND_ENC_CB *)p_cplt_cback); in btu_hcif_hdl_command_complete()
847 btm_read_tx_power_complete(p, TRUE); in btu_hcif_hdl_command_complete()
851 btm_ble_write_adv_enable_complete(p); in btu_hcif_hdl_command_complete()
855 btm_ble_create_ll_conn_complete(*p); in btu_hcif_hdl_command_complete()
861 btm_ble_test_command_complete(p); in btu_hcif_hdl_command_complete()
866 btm_ble_add_resolving_list_entry_complete(p, evt_len); in btu_hcif_hdl_command_complete()
870 btm_ble_remove_resolving_list_entry_complete(p, evt_len); in btu_hcif_hdl_command_complete()
874 btm_ble_clear_resolving_list_complete(p, evt_len); in btu_hcif_hdl_command_complete()
878 btm_ble_read_resolving_list_entry_complete(p, evt_len); in btu_hcif_hdl_command_complete()
890 btm_vsc_complete (p, opcode, evt_len, (tBTM_CMPL_CB *)p_cplt_cback); in btu_hcif_hdl_command_complete()
1143 static void btu_hcif_hardware_error_evt (UINT8 *p) in btu_hcif_hardware_error_evt() argument
1145 HCI_TRACE_ERROR("Ctlr H/w error event - code:0x%x", *p); in btu_hcif_hardware_error_evt()
1177 static void btu_hcif_role_change_evt (UINT8 *p) in btu_hcif_role_change_evt() argument
1183 STREAM_TO_UINT8 (status, p); in btu_hcif_role_change_evt()
1184 STREAM_TO_BDADDR (bda, p); in btu_hcif_role_change_evt()
1185 STREAM_TO_UINT8 (role, p); 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() argument
1203 l2c_link_process_num_completed_pkts (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() argument
1225 STREAM_TO_UINT8 (status, p); in btu_hcif_mode_change_evt()
1227 STREAM_TO_UINT16 (handle, p); in btu_hcif_mode_change_evt()
1228 STREAM_TO_UINT8 (current_mode, p); in btu_hcif_mode_change_evt()
1229 STREAM_TO_UINT16 (interval, p); in btu_hcif_mode_change_evt()
1250 static void btu_hcif_ssr_evt (UINT8 *p, UINT16 evt_len) in btu_hcif_ssr_evt() argument
1252 btm_pm_proc_ssr_evt(p, 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() argument
1269 STREAM_TO_BDADDR (bda, 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() argument
1291 STREAM_TO_BDADDR (bda, 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() argument
1310 STREAM_TO_BDADDR (bda, p); in btu_hcif_link_key_notification_evt()
1311 STREAM_TO_ARRAY16 (key, p); in btu_hcif_link_key_notification_evt()
1312 STREAM_TO_UINT8 (key_type, p); 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() argument
1371 STREAM_TO_UINT8 (status, p); in btu_hcif_read_clock_off_comp_evt()
1377 STREAM_TO_UINT16 (handle, p); in btu_hcif_read_clock_off_comp_evt()
1378 STREAM_TO_UINT16 (clock_offset, p); in btu_hcif_read_clock_off_comp_evt()
1408 static void btu_hcif_qos_violation_evt (UINT8 *p) in btu_hcif_qos_violation_evt() argument
1412 STREAM_TO_UINT16 (handle, p); in btu_hcif_qos_violation_evt()
1458 static void btu_hcif_host_support_evt (UINT8 *p) in btu_hcif_host_support_evt() argument
1460 btm_sec_rmt_host_support_feat_evt(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() argument
1474 btm_io_capabilities_req(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() argument
1488 btm_io_capabilities_rsp(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() argument
1502 btm_proc_sp_req_evt(BTM_SP_CFM_REQ_EVT, 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() argument
1516 btm_proc_sp_req_evt(BTM_SP_KEY_REQ_EVT, 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() argument
1530 btm_proc_sp_req_evt(BTM_SP_KEY_NOTIF_EVT, p); in btu_hcif_user_passkey_notif_evt()
1542 static void btu_hcif_keypress_notif_evt (UINT8 *p) in btu_hcif_keypress_notif_evt() argument
1544 btm_keypress_notif_evt(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() argument
1558 btm_rem_oob_req(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() argument
1572 btm_simple_pair_complete(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() argument
1604 STREAM_TO_UINT8 (status, p); in btu_hcif_encryption_key_refresh_cmpl_evt()
1605 STREAM_TO_UINT16 (handle, p); in btu_hcif_encryption_key_refresh_cmpl_evt()
1612 static void btu_ble_process_adv_pkt (UINT8 *p) in btu_ble_process_adv_pkt() argument
1616 btm_ble_process_adv_pkt(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() argument
1621 btm_ble_conn_complete(p, evt_len, FALSE); 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() argument
1626 btm_ble_conn_complete(p, evt_len, TRUE); 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() argument
1637 STREAM_TO_UINT8 (status, p); in btu_ble_ll_conn_param_upd_evt()
1638 STREAM_TO_UINT16 (handle, p); 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() argument
1644 btm_ble_read_remote_features_complete(p); in btu_ble_read_remote_feat_evt()
1647 static void btu_ble_proc_ltk_req (UINT8 *p) in btu_ble_proc_ltk_req() argument
1652 STREAM_TO_UINT16(handle, p); in btu_ble_proc_ltk_req()
1653 pp = p + 8; in btu_ble_proc_ltk_req()
1656 btm_ble_ltk_request(handle, p, ediv); 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() argument
1673 STREAM_TO_UINT16(handle, p); in btu_ble_data_length_change_evt()
1674 STREAM_TO_UINT16(tx_data_len, p); in btu_ble_data_length_change_evt()
1675 p += 2; /* Skip the TxTimer */ in btu_ble_data_length_change_evt()
1676 STREAM_TO_UINT16(rx_data_len, p); 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() argument
1690 STREAM_TO_UINT16(handle, p); in btu_ble_rc_param_req_evt()
1691 STREAM_TO_UINT16(int_min, p); in btu_ble_rc_param_req_evt()
1692 STREAM_TO_UINT16(int_max, p); in btu_ble_rc_param_req_evt()
1693 STREAM_TO_UINT16(latency, p); in btu_ble_rc_param_req_evt()
1694 STREAM_TO_UINT16(timeout, p); in btu_ble_rc_param_req_evt()