Lines Matching refs:status
52 extern void btm_process_cancel_complete(UINT8 status, UINT8 mode);
74 static void btu_hcif_command_status_evt (uint8_t status, BT_HDR *command, void *context);
397 UINT8 status; in btu_hcif_inquiry_comp_evt() local
399 STREAM_TO_UINT8 (status, p); in btu_hcif_inquiry_comp_evt()
402 btm_process_inq_complete(status, BTM_BR_INQUIRY_MASK); in btu_hcif_inquiry_comp_evt()
461 UINT8 status; in btu_hcif_connection_comp_evt() local
470 STREAM_TO_UINT8 (status, p); in btu_hcif_connection_comp_evt()
480 btm_sec_connected (bda, handle, status, enc_mode); in btu_hcif_connection_comp_evt()
482 l2c_link_hci_conn_comp (status, handle, bda); in btu_hcif_connection_comp_evt()
490 btm_sco_connected (status, bda, handle, &esco_data); in btu_hcif_connection_comp_evt()
571 UINT8 status; in btu_hcif_authentication_comp_evt() local
574 STREAM_TO_UINT8 (status, p); in btu_hcif_authentication_comp_evt()
577 btm_sec_auth_complete (handle, status); in btu_hcif_authentication_comp_evt()
591 UINT8 status; in btu_hcif_rmt_name_request_comp_evt() local
594 STREAM_TO_UINT8 (status, 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()
615 UINT8 status; in btu_hcif_encryption_change_evt() local
619 STREAM_TO_UINT8 (status, p); in btu_hcif_encryption_change_evt()
623 btm_acl_encrypt_change (handle, status, encr_enable); in btu_hcif_encryption_change_evt()
624 btm_sec_encrypt_change (handle, status, encr_enable); in btu_hcif_encryption_change_evt()
653 UINT8 status; in btu_hcif_read_rmt_ext_features_comp_evt() local
656 STREAM_TO_UINT8 (status, p_cur); in btu_hcif_read_rmt_ext_features_comp_evt()
658 if (status == HCI_SUCCESS) in btu_hcif_read_rmt_ext_features_comp_evt()
663 btm_read_remote_ext_features_failed(status, handle); in btu_hcif_read_rmt_ext_features_comp_evt()
692 UINT8 status; in btu_hcif_qos_setup_comp_evt() local
696 STREAM_TO_UINT8 (status, p); in btu_hcif_qos_setup_comp_evt()
705 btm_qos_setup_complete(status, handle, &flow); in btu_hcif_qos_setup_comp_evt()
723 UINT8 status; in btu_hcif_esco_connection_comp_evt() local
725 STREAM_TO_UINT8 (status, p); in btu_hcif_esco_connection_comp_evt()
737 btm_sco_connected (status, bda, handle, &data); in btu_hcif_esco_connection_comp_evt()
756 UINT8 status; in btu_hcif_esco_connection_chg_evt() local
760 STREAM_TO_UINT8 (status, p); in btu_hcif_esco_connection_chg_evt()
768 btm_esco_proc_conn_chg (status, handle, tx_interval, retrans_window, in btu_hcif_esco_connection_chg_evt()
945 static void btu_hcif_hdl_command_status (UINT16 opcode, UINT8 status, UINT8 *p_cmd, in btu_hcif_hdl_command_status() argument
959 if (status != HCI_SUCCESS) in btu_hcif_hdl_command_status()
966 btm_sco_chk_pend_unpark (status, handle); in btu_hcif_hdl_command_status()
975 btm_pm_proc_cmd_status(status); in btu_hcif_hdl_command_status()
980 if (status != HCI_SUCCESS) in btu_hcif_hdl_command_status()
986 btm_process_inq_complete(status, BTM_BR_INQUIRY_MASK); in btu_hcif_hdl_command_status()
991 btm_process_remote_name (NULL, NULL, 0, status); in btu_hcif_hdl_command_status()
993 btm_sec_rmt_name_request_complete (NULL, NULL, status); in btu_hcif_hdl_command_status()
998 btm_qos_setup_complete(status,0,NULL); in btu_hcif_hdl_command_status()
1008 btm_acl_role_changed(status, bd_addr, BTM_ROLE_UNDEFINED); in btu_hcif_hdl_command_status()
1011 btm_acl_role_changed(status, NULL, BTM_ROLE_UNDEFINED); in btu_hcif_hdl_command_status()
1021 btm_sec_connected (bd_addr, HCI_INVALID_HANDLE, status, 0); in btu_hcif_hdl_command_status()
1022 l2c_link_hci_conn_comp (status, HCI_INVALID_HANDLE, bd_addr); in btu_hcif_hdl_command_status()
1035 btm_read_remote_ext_features_failed(status, handle); in btu_hcif_hdl_command_status()
1040 btm_sec_auth_complete (BTM_INVALID_HCI_HANDLE, status); in btu_hcif_hdl_command_status()
1045 btm_sec_encrypt_change (BTM_INVALID_HCI_HANDLE, status, FALSE); in btu_hcif_hdl_command_status()
1050 btm_ble_create_ll_conn_complete(status); in btu_hcif_hdl_command_status()
1064 btm_esco_proc_conn_chg (status, handle, 0, 0, 0, 0); in btu_hcif_hdl_command_status()
1066 btm_sco_connected (status, NULL, handle, &esco_data); in btu_hcif_hdl_command_status()
1079 … btm_vsc_complete (&status, opcode, 1, (tBTM_CMPL_CB *)p_vsc_status_cback); in btu_hcif_hdl_command_status()
1087 btm_vsc_complete (&status, opcode, 1, (tBTM_CMPL_CB *)p_vsc_status_cback); in btu_hcif_hdl_command_status()
1111 hack->status, in btu_hcif_command_status_evt_on_task()
1119 static void btu_hcif_command_status_evt(uint8_t status, BT_HDR *command, void *context) in btu_hcif_command_status_evt() argument
1125 hack->status = status; in btu_hcif_command_status_evt()
1179 UINT8 status; in btu_hcif_role_change_evt() local
1183 STREAM_TO_UINT8 (status, p); in btu_hcif_role_change_evt()
1187 l2c_link_role_changed (bda, role, status); in btu_hcif_role_change_evt()
1188 btm_acl_role_changed(status, bda, role); in btu_hcif_role_change_evt()
1220 UINT8 status; in btu_hcif_mode_change_evt() local
1225 STREAM_TO_UINT8 (status, p); in btu_hcif_mode_change_evt()
1231 btm_sco_chk_pend_unpark (status, handle); in btu_hcif_mode_change_evt()
1233 btm_pm_proc_mode_change (status, handle, current_mode, interval); in btu_hcif_mode_change_evt()
1236 hidd_pm_proc_mode_change( status, current_mode, interval ) ; in btu_hcif_mode_change_evt()
1367 UINT8 status; in btu_hcif_read_clock_off_comp_evt() local
1371 STREAM_TO_UINT8 (status, p); in btu_hcif_read_clock_off_comp_evt()
1374 if (status != HCI_SUCCESS) in btu_hcif_read_clock_off_comp_evt()
1600 UINT8 status; in btu_hcif_encryption_key_refresh_cmpl_evt() local
1604 STREAM_TO_UINT8 (status, p); in btu_hcif_encryption_key_refresh_cmpl_evt()
1607 if (status == HCI_SUCCESS) enc_enable = 1; in btu_hcif_encryption_key_refresh_cmpl_evt()
1609 btm_sec_encrypt_change (handle, status, enc_enable); in btu_hcif_encryption_key_refresh_cmpl_evt()
1634 UINT8 status; in btu_ble_ll_conn_param_upd_evt() local
1640 STREAM_TO_UINT8(status, p); in btu_ble_ll_conn_param_upd_evt()
1646 l2cble_process_conn_update_evt(handle, status, interval, latency, timeout); in btu_ble_ll_conn_param_upd_evt()