Home
last modified time | relevance | path

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

/system/bt/service/common/bluetooth/binder/
DIBluetoothLowEnergy.h85 virtual bool StopScan(int client_id) = 0;
138 bool StopScan(int client_id) override;
DIBluetoothLowEnergy.cpp122 bool result = StopScan(client_id); in onTransact()
258 bool BpBluetoothLowEnergy::StopScan(int client_id) { in StopScan() function in ipc::binder::BpBluetoothLowEnergy
/system/bt/service/ipc/binder/
Dbluetooth_low_energy_binder_server.h57 bool StopScan(int client_id) override;
Dbluetooth_low_energy_binder_server.cpp122 bool BluetoothLowEnergyBinderServer::StopScan(int client_id) { in StopScan() function in ipc::binder::BluetoothLowEnergyBinderServer
132 return client->StopScan(); in StopScan()
/system/bt/service/test/
Dgatt_client_unittest.cpp189 hal::BluetoothGattInterface::Get()->StopScan(i); in TEST_F()
Dlow_energy_client_unittest.cpp894 EXPECT_TRUE(le_client_->StopScan()); in TEST_F()
/system/bt/service/
Dlow_energy_client.h108 bool StopScan();
Dlow_energy_client.cpp334 StopScan(); in ~LowEnergyClient()
434 bool LowEnergyClient::StopScan() { in StopScan() function in bluetooth::LowEnergyClient
441 StopScan(client_id_); in StopScan()
/system/bt/service/hal/
Dbluetooth_gatt_interface.h276 bt_status_t StopScan(int client_id);
Dbluetooth_gatt_interface.cpp936 bt_status_t BluetoothGattInterface::StopScan(int client_id) { in StopScan() function in bluetooth::hal::BluetoothGattInterface
/system/bt/service/client/
Dmain.cpp703 bool status = ble_iface->StopScan(ble_client_id.load()); in HandleStopLeScan()