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);
104 static void btu_hcif_rem_oob_request_evt (UINT8 *p);
107 static void btu_hcif_simple_pair_complete_evt (UINT8 *p);
113 static void btu_hcif_ssr_evt (UINT8 *p, UINT16 evt_len);
117 static void btu_ble_ll_conn_complete_evt (UINT8 *p, UINT16 evt_len);
118 static void btu_ble_process_adv_pkt (UINT8 *p);
119 static void btu_ble_read_remote_feat_evt (UINT8 *p);
120 static void btu_ble_ll_conn_param_upd_evt (UINT8 *p, UINT16 evt_len);
121 static void btu_ble_proc_ltk_req (UINT8 *p);
122 static void btu_hcif_encryption_key_refresh_cmpl_evt (UINT8 *p);
123 static void btu_ble_data_length_change_evt (UINT8 *p, UINT16 evt_len);
125 static void btu_ble_rc_param_req_evt(UINT8 *p);
128 static void btu_ble_proc_enhanced_conn_cmpl (UINT8 *p, UINT16 evt_len);
145 UINT8 *p = (UINT8 *)(p_msg + 1) + p_msg->offset; in btu_hcif_process_event() local
150 STREAM_TO_UINT8 (hci_evt_code, p); in btu_hcif_process_event()
151 STREAM_TO_UINT8 (hci_evt_len, p); in btu_hcif_process_event()
156 btu_hcif_inquiry_comp_evt (p); in btu_hcif_process_event()
159 btu_hcif_inquiry_result_evt (p); in btu_hcif_process_event()
162 btu_hcif_inquiry_rssi_result_evt (p); in btu_hcif_process_event()
165 btu_hcif_extended_inquiry_result_evt (p); in btu_hcif_process_event()
168 btu_hcif_connection_comp_evt (p); in btu_hcif_process_event()
171 btu_hcif_connection_request_evt (p); in btu_hcif_process_event()
174 btu_hcif_disconnection_comp_evt (p); in btu_hcif_process_event()
177 btu_hcif_authentication_comp_evt (p); in btu_hcif_process_event()
180 btu_hcif_rmt_name_request_comp_evt (p, hci_evt_len); in btu_hcif_process_event()
183 btu_hcif_encryption_change_evt (p); in btu_hcif_process_event()
187 btu_hcif_encryption_key_refresh_cmpl_evt(p); in btu_hcif_process_event()
191 btu_hcif_read_rmt_features_comp_evt (p); in btu_hcif_process_event()
194 btu_hcif_read_rmt_ext_features_comp_evt (p); in btu_hcif_process_event()
197 btu_hcif_read_rmt_version_comp_evt (p); in btu_hcif_process_event()
200 btu_hcif_qos_setup_comp_evt (p); in btu_hcif_process_event()
211 btu_hcif_hardware_error_evt (p); in btu_hcif_process_event()
217 btu_hcif_role_change_evt (p); in btu_hcif_process_event()
220 btu_hcif_num_compl_data_pkts_evt (p); in btu_hcif_process_event()
223 btu_hcif_mode_change_evt (p); in btu_hcif_process_event()
226 btu_hcif_pin_code_request_evt (p); in btu_hcif_process_event()
229 btu_hcif_link_key_request_evt (p); in btu_hcif_process_event()
232 btu_hcif_link_key_notification_evt (p); in btu_hcif_process_event()
244 btu_hcif_read_clock_off_comp_evt (p); in btu_hcif_process_event()
250 btu_hcif_qos_violation_evt (p); in btu_hcif_process_event()
259 btu_hcif_esco_connection_comp_evt (p); in btu_hcif_process_event()
262 btu_hcif_esco_connection_chg_evt (p); in btu_hcif_process_event()
266 btu_hcif_ssr_evt (p, hci_evt_len); in btu_hcif_process_event()
270 btu_hcif_host_support_evt (p); in btu_hcif_process_event()
273 btu_hcif_io_cap_request_evt (p); in btu_hcif_process_event()
276 btu_hcif_io_cap_response_evt (p); in btu_hcif_process_event()
279 btu_hcif_user_conf_request_evt (p); in btu_hcif_process_event()
282 btu_hcif_user_passkey_request_evt (p); in btu_hcif_process_event()
286 btu_hcif_rem_oob_request_evt (p); in btu_hcif_process_event()
290 btu_hcif_simple_pair_complete_evt (p); in btu_hcif_process_event()
293 btu_hcif_user_passkey_notif_evt (p); in btu_hcif_process_event()
296 btu_hcif_keypress_notif_evt (p); in btu_hcif_process_event()
306 STREAM_TO_UINT8 (ble_sub_code, p); in btu_hcif_process_event()
313 btu_ble_process_adv_pkt(p); in btu_hcif_process_event()
316 btu_ble_ll_conn_complete_evt(p, hci_evt_len); in btu_hcif_process_event()
319 btu_ble_ll_conn_param_upd_evt(p, hci_evt_len); in btu_hcif_process_event()
322 btu_ble_read_remote_feat_evt(p); in btu_hcif_process_event()
325 btu_ble_proc_ltk_req(p); in btu_hcif_process_event()
329 btu_ble_proc_enhanced_conn_cmpl(p, hci_evt_len); in btu_hcif_process_event()
334 btu_ble_rc_param_req_evt(p); in btu_hcif_process_event()
338 btu_ble_data_length_change_evt(p, hci_evt_len); in btu_hcif_process_event()
344 btm_vendor_specific_evt (p, hci_evt_len); in btu_hcif_process_event()
431 static void btu_hcif_inquiry_comp_evt (UINT8 *p) in btu_hcif_inquiry_comp_evt() argument
435 STREAM_TO_UINT8 (status, p); in btu_hcif_inquiry_comp_evt()
451 static void btu_hcif_inquiry_result_evt (UINT8 *p) in btu_hcif_inquiry_result_evt() argument
454 btm_process_inq_results (p, BTM_INQ_RESULT_STANDARD); in btu_hcif_inquiry_result_evt()
466 static void btu_hcif_inquiry_rssi_result_evt (UINT8 *p) in btu_hcif_inquiry_rssi_result_evt() argument
469 btm_process_inq_results (p, BTM_INQ_RESULT_WITH_RSSI); in btu_hcif_inquiry_rssi_result_evt()
481 static void btu_hcif_extended_inquiry_result_evt (UINT8 *p) in btu_hcif_extended_inquiry_result_evt() argument
484 btm_process_inq_results (p, BTM_INQ_RESULT_EXTENDED); in btu_hcif_extended_inquiry_result_evt()
496 static void btu_hcif_connection_comp_evt (UINT8 *p) in btu_hcif_connection_comp_evt() argument
507 STREAM_TO_UINT8 (status, p); in btu_hcif_connection_comp_evt()
508 STREAM_TO_UINT16 (handle, p); in btu_hcif_connection_comp_evt()
509 STREAM_TO_BDADDR (bda, p); in btu_hcif_connection_comp_evt()
510 STREAM_TO_UINT8 (link_type, p); in btu_hcif_connection_comp_evt()
511 STREAM_TO_UINT8 (enc_mode, p); in btu_hcif_connection_comp_evt()
542 static void btu_hcif_connection_request_evt (UINT8 *p) in btu_hcif_connection_request_evt() argument
548 STREAM_TO_BDADDR (bda, p); in btu_hcif_connection_request_evt()
549 STREAM_TO_DEVCLASS (dc, p); in btu_hcif_connection_request_evt()
550 STREAM_TO_UINT8 (link_type, p); in btu_hcif_connection_request_evt()
576 static void btu_hcif_disconnection_comp_evt (UINT8 *p) in btu_hcif_disconnection_comp_evt() argument
581 ++p; in btu_hcif_disconnection_comp_evt()
582 STREAM_TO_UINT16 (handle, p); in btu_hcif_disconnection_comp_evt()
583 STREAM_TO_UINT8 (reason, p); in btu_hcif_disconnection_comp_evt()
608 static void btu_hcif_authentication_comp_evt (UINT8 *p) in btu_hcif_authentication_comp_evt() argument
613 STREAM_TO_UINT8 (status, p); in btu_hcif_authentication_comp_evt()
614 STREAM_TO_UINT16 (handle, p); in btu_hcif_authentication_comp_evt()
629 static void btu_hcif_rmt_name_request_comp_evt (UINT8 *p, UINT16 evt_len) in btu_hcif_rmt_name_request_comp_evt() argument
634 STREAM_TO_UINT8 (status, p); in btu_hcif_rmt_name_request_comp_evt()
635 STREAM_TO_BDADDR (bd_addr, p); in btu_hcif_rmt_name_request_comp_evt()
639 btm_process_remote_name (bd_addr, p, evt_len, status); in btu_hcif_rmt_name_request_comp_evt()
641 btm_sec_rmt_name_request_complete (bd_addr, p, status); in btu_hcif_rmt_name_request_comp_evt()
654 static void btu_hcif_encryption_change_evt (UINT8 *p) in btu_hcif_encryption_change_evt() argument
660 STREAM_TO_UINT8 (status, p); in btu_hcif_encryption_change_evt()
661 STREAM_TO_UINT16 (handle, p); in btu_hcif_encryption_change_evt()
662 STREAM_TO_UINT8 (encr_enable, p); in btu_hcif_encryption_change_evt()
677 static void btu_hcif_read_rmt_features_comp_evt (UINT8 *p) in btu_hcif_read_rmt_features_comp_evt() argument
679 btm_read_remote_features_complete(p); in btu_hcif_read_rmt_features_comp_evt()
691 static void btu_hcif_read_rmt_ext_features_comp_evt (UINT8 *p) in btu_hcif_read_rmt_ext_features_comp_evt() argument
693 UINT8 *p_cur = p; in btu_hcif_read_rmt_ext_features_comp_evt()
700 btm_read_remote_ext_features_complete(p); in btu_hcif_read_rmt_ext_features_comp_evt()
717 static void btu_hcif_read_rmt_version_comp_evt (UINT8 *p) in btu_hcif_read_rmt_version_comp_evt() argument
719 btm_read_remote_version_complete (p); in btu_hcif_read_rmt_version_comp_evt()
732 static void btu_hcif_qos_setup_comp_evt (UINT8 *p) in btu_hcif_qos_setup_comp_evt() argument
738 STREAM_TO_UINT8 (status, p); in btu_hcif_qos_setup_comp_evt()
739 STREAM_TO_UINT16 (handle, p); in btu_hcif_qos_setup_comp_evt()
740 STREAM_TO_UINT8 (flow.qos_flags, p); in btu_hcif_qos_setup_comp_evt()
741 STREAM_TO_UINT8 (flow.service_type, p); in btu_hcif_qos_setup_comp_evt()
742 STREAM_TO_UINT32 (flow.token_rate, p); in btu_hcif_qos_setup_comp_evt()
743 STREAM_TO_UINT32 (flow.peak_bandwidth, p); in btu_hcif_qos_setup_comp_evt()
744 STREAM_TO_UINT32 (flow.latency, p); in btu_hcif_qos_setup_comp_evt()
745 STREAM_TO_UINT32 (flow.delay_variation, p); in btu_hcif_qos_setup_comp_evt()
760 static void btu_hcif_esco_connection_comp_evt (UINT8 *p) in btu_hcif_esco_connection_comp_evt() argument
768 STREAM_TO_UINT8 (status, p); in btu_hcif_esco_connection_comp_evt()
769 STREAM_TO_UINT16 (handle, p); in btu_hcif_esco_connection_comp_evt()
770 STREAM_TO_BDADDR (bda, p); in btu_hcif_esco_connection_comp_evt()
772 STREAM_TO_UINT8 (data.link_type, p); in btu_hcif_esco_connection_comp_evt()
773 STREAM_TO_UINT8 (data.tx_interval, p); in btu_hcif_esco_connection_comp_evt()
774 STREAM_TO_UINT8 (data.retrans_window, p); in btu_hcif_esco_connection_comp_evt()
775 STREAM_TO_UINT16 (data.rx_pkt_len, p); in btu_hcif_esco_connection_comp_evt()
776 STREAM_TO_UINT16 (data.tx_pkt_len, p); in btu_hcif_esco_connection_comp_evt()
777 STREAM_TO_UINT8 (data.air_mode, p); in btu_hcif_esco_connection_comp_evt()
794 static void btu_hcif_esco_connection_chg_evt (UINT8 *p) in btu_hcif_esco_connection_chg_evt() argument
804 STREAM_TO_UINT8 (status, p); in btu_hcif_esco_connection_chg_evt()
805 STREAM_TO_UINT16 (handle, p); in btu_hcif_esco_connection_chg_evt()
807 STREAM_TO_UINT8 (tx_interval, p); in btu_hcif_esco_connection_chg_evt()
808 STREAM_TO_UINT8 (retrans_window, p); in btu_hcif_esco_connection_chg_evt()
809 STREAM_TO_UINT16 (rx_pkt_len, p); in btu_hcif_esco_connection_chg_evt()
810 STREAM_TO_UINT16 (tx_pkt_len, p); in btu_hcif_esco_connection_chg_evt()
826 static void btu_hcif_hdl_command_complete (UINT16 opcode, UINT8 *p, UINT16 evt_len, in btu_hcif_hdl_command_complete() argument
836 btm_event_filter_complete (p); in btu_hcif_hdl_command_complete()
840 btm_delete_stored_link_key_complete (p); in btu_hcif_hdl_command_complete()
844 btm_read_local_name_complete (p, evt_len); in btu_hcif_hdl_command_complete()
848 btm_read_link_quality_complete (p); in btu_hcif_hdl_command_complete()
852 btm_read_rssi_complete (p); in btu_hcif_hdl_command_complete()
856 btm_read_tx_power_complete(p, FALSE); in btu_hcif_hdl_command_complete()
860 btm_create_conn_cancel_complete(p); in btu_hcif_hdl_command_complete()
865 btm_read_local_oob_complete(p); in btu_hcif_hdl_command_complete()
871 btm_read_linq_tx_power_complete (p); in btu_hcif_hdl_command_complete()
877 btm_ble_add_2_white_list_complete(*p); in btu_hcif_hdl_command_complete()
881 btm_ble_clear_white_list_complete(p, evt_len); in btu_hcif_hdl_command_complete()
885 btm_ble_remove_from_white_list_complete(p, evt_len); in btu_hcif_hdl_command_complete()
890 btm_ble_rand_enc_complete (p, opcode, (tBTM_RAND_ENC_CB *)p_cplt_cback); in btu_hcif_hdl_command_complete()
894 btm_read_tx_power_complete(p, TRUE); in btu_hcif_hdl_command_complete()
898 btm_ble_write_adv_enable_complete(p); in btu_hcif_hdl_command_complete()
902 btm_ble_create_ll_conn_complete(*p); in btu_hcif_hdl_command_complete()
908 btm_ble_test_command_complete(p); in btu_hcif_hdl_command_complete()
913 btm_ble_add_resolving_list_entry_complete(p, evt_len); in btu_hcif_hdl_command_complete()
917 btm_ble_remove_resolving_list_entry_complete(p, evt_len); in btu_hcif_hdl_command_complete()
921 btm_ble_clear_resolving_list_complete(p, evt_len); in btu_hcif_hdl_command_complete()
925 btm_ble_read_resolving_list_entry_complete(p, evt_len); in btu_hcif_hdl_command_complete()
937 btm_vsc_complete (p, opcode, evt_len, (tBTM_CMPL_CB *)p_cplt_cback); in btu_hcif_hdl_command_complete()
1191 static void btu_hcif_hardware_error_evt (UINT8 *p) in btu_hcif_hardware_error_evt() argument
1193 HCI_TRACE_ERROR("Ctlr H/w error event - code:0x%x", *p); in btu_hcif_hardware_error_evt()
1227 static void btu_hcif_role_change_evt (UINT8 *p) in btu_hcif_role_change_evt() argument
1233 STREAM_TO_UINT8 (status, p); in btu_hcif_role_change_evt()
1234 STREAM_TO_BDADDR (bda, p); in btu_hcif_role_change_evt()
1235 STREAM_TO_UINT8 (role, p); in btu_hcif_role_change_evt()
1251 static void btu_hcif_num_compl_data_pkts_evt (UINT8 *p) in btu_hcif_num_compl_data_pkts_evt() argument
1254 l2c_link_process_num_completed_pkts (p); in btu_hcif_num_compl_data_pkts_evt()
1269 static void btu_hcif_mode_change_evt (UINT8 *p) in btu_hcif_mode_change_evt() argument
1276 STREAM_TO_UINT8 (status, p); in btu_hcif_mode_change_evt()
1278 STREAM_TO_UINT16 (handle, p); in btu_hcif_mode_change_evt()
1279 STREAM_TO_UINT8 (current_mode, p); in btu_hcif_mode_change_evt()
1280 STREAM_TO_UINT16 (interval, p); in btu_hcif_mode_change_evt()
1301 static void btu_hcif_ssr_evt (UINT8 *p, UINT16 evt_len) in btu_hcif_ssr_evt() argument
1303 btm_pm_proc_ssr_evt(p, evt_len); in btu_hcif_ssr_evt()
1316 static void btu_hcif_pin_code_request_evt (UINT8 *p) in btu_hcif_pin_code_request_evt() argument
1320 STREAM_TO_BDADDR (bda, p); in btu_hcif_pin_code_request_evt()
1339 static void btu_hcif_link_key_request_evt (UINT8 *p) in btu_hcif_link_key_request_evt() argument
1343 STREAM_TO_BDADDR (bda, p); in btu_hcif_link_key_request_evt()
1357 static void btu_hcif_link_key_notification_evt (UINT8 *p) in btu_hcif_link_key_notification_evt() argument
1363 STREAM_TO_BDADDR (bda, p); in btu_hcif_link_key_notification_evt()
1364 STREAM_TO_ARRAY16 (key, p); in btu_hcif_link_key_notification_evt()
1365 STREAM_TO_UINT8 (key_type, p); in btu_hcif_link_key_notification_evt()
1422 static void btu_hcif_read_clock_off_comp_evt (UINT8 *p) in btu_hcif_read_clock_off_comp_evt() argument
1428 STREAM_TO_UINT8 (status, p); in btu_hcif_read_clock_off_comp_evt()
1434 STREAM_TO_UINT16 (handle, p); in btu_hcif_read_clock_off_comp_evt()
1435 STREAM_TO_UINT16 (clock_offset, p); in btu_hcif_read_clock_off_comp_evt()
1467 static void btu_hcif_qos_violation_evt (UINT8 *p) in btu_hcif_qos_violation_evt() argument
1471 STREAM_TO_UINT16 (handle, p); in btu_hcif_qos_violation_evt()
1520 static void btu_hcif_host_support_evt (UINT8 *p) in btu_hcif_host_support_evt() argument
1522 btm_sec_rmt_host_support_feat_evt(p); in btu_hcif_host_support_evt()
1534 static void btu_hcif_io_cap_request_evt (UINT8 *p) in btu_hcif_io_cap_request_evt() argument
1536 btm_io_capabilities_req(p); in btu_hcif_io_cap_request_evt()
1549 static void btu_hcif_io_cap_response_evt (UINT8 *p) in btu_hcif_io_cap_response_evt() argument
1551 btm_io_capabilities_rsp(p); in btu_hcif_io_cap_response_evt()
1564 static void btu_hcif_user_conf_request_evt (UINT8 *p) in btu_hcif_user_conf_request_evt() argument
1566 btm_proc_sp_req_evt(BTM_SP_CFM_REQ_EVT, p); in btu_hcif_user_conf_request_evt()
1579 static void btu_hcif_user_passkey_request_evt (UINT8 *p) in btu_hcif_user_passkey_request_evt() argument
1581 btm_proc_sp_req_evt(BTM_SP_KEY_REQ_EVT, p); in btu_hcif_user_passkey_request_evt()
1593 static void btu_hcif_user_passkey_notif_evt (UINT8 *p) in btu_hcif_user_passkey_notif_evt() argument
1595 btm_proc_sp_req_evt(BTM_SP_KEY_NOTIF_EVT, p); in btu_hcif_user_passkey_notif_evt()
1607 static void btu_hcif_keypress_notif_evt (UINT8 *p) in btu_hcif_keypress_notif_evt() argument
1609 btm_keypress_notif_evt(p); in btu_hcif_keypress_notif_evt()
1622 static void btu_hcif_rem_oob_request_evt (UINT8 *p) in btu_hcif_rem_oob_request_evt() argument
1624 btm_rem_oob_req(p); in btu_hcif_rem_oob_request_evt()
1637 static void btu_hcif_simple_pair_complete_evt (UINT8 *p) in btu_hcif_simple_pair_complete_evt() argument
1639 btm_simple_pair_complete(p); in btu_hcif_simple_pair_complete_evt()
1666 static void btu_hcif_encryption_key_refresh_cmpl_evt (UINT8 *p) in btu_hcif_encryption_key_refresh_cmpl_evt() argument
1672 STREAM_TO_UINT8 (status, p); in btu_hcif_encryption_key_refresh_cmpl_evt()
1673 STREAM_TO_UINT16 (handle, p); in btu_hcif_encryption_key_refresh_cmpl_evt()
1680 static void btu_ble_process_adv_pkt (UINT8 *p) in btu_ble_process_adv_pkt() argument
1684 btm_ble_process_adv_pkt(p); in btu_ble_process_adv_pkt()
1687 static void btu_ble_ll_conn_complete_evt ( UINT8 *p, UINT16 evt_len) in btu_ble_ll_conn_complete_evt() argument
1689 btm_ble_conn_complete(p, evt_len, FALSE); in btu_ble_ll_conn_complete_evt()
1692 static void btu_ble_proc_enhanced_conn_cmpl( UINT8 *p, UINT16 evt_len) in btu_ble_proc_enhanced_conn_cmpl() argument
1694 btm_ble_conn_complete(p, evt_len, TRUE); in btu_ble_proc_enhanced_conn_cmpl()
1697 static void btu_ble_ll_conn_param_upd_evt (UINT8 *p, UINT16 evt_len) in btu_ble_ll_conn_param_upd_evt() argument
1705 STREAM_TO_UINT8 (status, p); in btu_ble_ll_conn_param_upd_evt()
1706 STREAM_TO_UINT16 (handle, p); in btu_ble_ll_conn_param_upd_evt()
1710 static void btu_ble_read_remote_feat_evt (UINT8 *p) in btu_ble_read_remote_feat_evt() argument
1712 btm_ble_read_remote_features_complete(p); in btu_ble_read_remote_feat_evt()
1715 static void btu_ble_proc_ltk_req (UINT8 *p) in btu_ble_proc_ltk_req() argument
1720 STREAM_TO_UINT16(handle, p); in btu_ble_proc_ltk_req()
1721 pp = p + 8; in btu_ble_proc_ltk_req()
1724 btm_ble_ltk_request(handle, p, ediv); in btu_ble_proc_ltk_req()
1729 static void btu_ble_data_length_change_evt(UINT8 *p, UINT16 evt_len) in btu_ble_data_length_change_evt() argument
1741 STREAM_TO_UINT16(handle, p); in btu_ble_data_length_change_evt()
1742 STREAM_TO_UINT16(tx_data_len, p); in btu_ble_data_length_change_evt()
1743 p += 2; /* Skip the TxTimer */ in btu_ble_data_length_change_evt()
1744 STREAM_TO_UINT16(rx_data_len, p); in btu_ble_data_length_change_evt()
1753 static void btu_ble_rc_param_req_evt(UINT8 *p) in btu_ble_rc_param_req_evt() argument
1758 STREAM_TO_UINT16(handle, p); in btu_ble_rc_param_req_evt()
1759 STREAM_TO_UINT16(int_min, p); in btu_ble_rc_param_req_evt()
1760 STREAM_TO_UINT16(int_max, p); in btu_ble_rc_param_req_evt()
1761 STREAM_TO_UINT16(latency, p); in btu_ble_rc_param_req_evt()
1762 STREAM_TO_UINT16(timeout, p); in btu_ble_rc_param_req_evt()