1 /* 2 * Copyright 2020 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #pragma once 18 19 #include "stack/include/bt_types.h" 20 #include "stack/include/hci_error_code.h" 21 #include "types/ble_address_with_type.h" 22 #include "types/raw_address.h" 23 24 namespace bluetooth { 25 namespace shim { 26 27 void ACL_CreateClassicConnection(const RawAddress& raw_address); 28 void ACL_CancelClassicConnection(const RawAddress& raw_address); 29 bool ACL_AcceptLeConnectionFrom(const tBLE_BD_ADDR& legacy_address_with_type, 30 bool is_direct); 31 void ACL_IgnoreLeConnectionFrom(const tBLE_BD_ADDR& legacy_address_with_type); 32 33 void ACL_Disconnect(uint16_t handle, bool is_classic, tHCI_STATUS reason); 34 void ACL_WriteData(uint16_t handle, BT_HDR* p_buf); 35 void ACL_ConfigureLePrivacy(bool is_le_privacy_enabled); 36 void ACL_Shutdown(); 37 void ACL_IgnoreAllLeConnections(); 38 39 void ACL_ReadConnectionAddress(const RawAddress& pseudo_addr, 40 RawAddress& conn_addr, uint8_t* p_addr_type); 41 42 } // namespace shim 43 } // namespace bluetooth 44