Home
last modified time | relevance | path

Searched refs:Disconnect (Results 1 – 11 of 11) sorted by relevance

/system/bt/service/common/android/bluetooth/
DIBluetoothLowEnergy.aidl30 boolean Disconnect(int client_id, String address); in Disconnect() method
/system/bt/service/test/
Dlow_energy_client_unittest.cc46 MOCK_METHOD3(Disconnect, bt_status_t(int, const bt_bdaddr_t*, int));
286 EXPECT_CALL(*mock_handler_, Disconnect(le_client_->GetInstanceId(), in TEST_F()
296 EXPECT_TRUE(le_client_->Disconnect(kTestAddressStr)); in TEST_F()
Dgatt_client_unittest.cc40 MOCK_METHOD3(Disconnect, bt_status_t(int, const bt_bdaddr_t*, int));
/system/bt/service/ipc/binder/
Dbluetooth_low_energy_binder_server.cc85 Status BluetoothLowEnergyBinderServer::Disconnect(int client_id, in Disconnect() function in ipc::binder::BluetoothLowEnergyBinderServer
98 *_aidl_return = client->Disconnect(std::string(String8(address).string())); in Disconnect()
Dbluetooth_low_energy_binder_server.h60 Status Disconnect(int client_id, const String16& address,
/system/bt/service/doc/
DIBluetoothLowEnergy.txt47 /* Disconnect from previously connected BLE device with address |address|.
50 boolean Disconnect(in int client_id, in const char* address);
/system/bt/service/
Dlow_energy_client.h87 bool Disconnect(const std::string& address);
Dlow_energy_client.cc71 bool LowEnergyClient::Disconnect(const std::string& address) { in Disconnect() function in bluetooth::LowEnergyClient
/system/bt/service/hal/
Dfake_bluetooth_gatt_interface.h41 virtual bt_status_t Disconnect(int client_if, const bt_bdaddr_t* bd_addr,
Dfake_bluetooth_gatt_interface.cc54 return g_client_handler->Disconnect(client_if, bd_addr, conn_id); in FakeDisconnect()
/system/bt/service/client/
Dmain.cc784 ble_iface->Disconnect(ble_client_id.load(), in HandleDisconnect()