Home
last modified time | relevance | path

Searched refs:BluetoothClient (Results 1 – 6 of 6) sorted by relevance

/system/weaved/buffet/
Dbluetooth_client.h27 class BluetoothClient : public weave::provider::Bluetooth {
29 BluetoothClient() {} in BluetoothClient() function
30 ~BluetoothClient() override = default;
32 static std::unique_ptr<BluetoothClient> CreateInstance();
35 DISALLOW_COPY_AND_ASSIGN(BluetoothClient);
Dstub_bluetooth_client.cc21 std::unique_ptr<BluetoothClient> BluetoothClient::CreateInstance() { in CreateInstance()
22 return std::unique_ptr<BluetoothClient>{new BluetoothClient}; in CreateInstance()
Dflouride_socket_bluetooth_client.cc28 std::unique_ptr<BluetoothClient> BluetoothClient::CreateInstance() { in CreateInstance()
29 return std::unique_ptr<BluetoothClient>{new FlourideSocketBluetoothClient}; in CreateInstance()
Dflouride_socket_bluetooth_client.h33 class FlourideSocketBluetoothClient : public BluetoothClient {
Dmanager.h38 class BluetoothClient; variable
115 std::unique_ptr<BluetoothClient> bluetooth_client_;
Dmanager.cc213 bluetooth_client_ = BluetoothClient::CreateInstance(); in RestartWeave()