HomeSort by relevance Sort by last modified time
    Searched full:bluetoothinterface (Results 1 - 15 of 15) sorted by null

  /system/bt/service/hal/
bluetooth_interface.cc 44 // The global BluetoothInterface instance.
45 BluetoothInterface* g_bluetooth_interface = nullptr;
55 base::ObserverList<BluetoothInterface::Observer>* GetObservers();
58 FOR_EACH_OBSERVER(BluetoothInterface::Observer, *GetObservers(), func)
209 // BluetoothInterface implementation for production.
210 class BluetoothInterfaceImpl : public BluetoothInterface {
218 // BluetoothInterface overrides.
301 base::ObserverList<BluetoothInterface::Observer>* GetObservers() {
311 void BluetoothInterface::Observer::AdapterStateChangedCallback(
316 void BluetoothInterface::Observer::AdapterPropertiesCallback
    [all...]
bluetooth_interface.h 36 class BluetoothInterface {
78 // Initialize and clean up the BluetoothInterface singleton. Returns false if
92 static void InitializeForTesting(BluetoothInterface* test_instance);
94 // Returns the BluetoothInterface singleton. If the interface has not been
96 static BluetoothInterface* Get();
120 BluetoothInterface() = default;
121 virtual ~BluetoothInterface() = default;
124 DISALLOW_COPY_AND_ASSIGN(BluetoothInterface);
fake_bluetooth_interface.h 25 class FakeBluetoothInterface : public BluetoothInterface {
61 // hal::BluetoothInterface overrides:
bluetooth_gatt_interface.h 174 // Initialize and clean up the BluetoothInterface singleton. Returns false if
bluetooth_gatt_interface.cc 488 BluetoothInterface::Get()->GetHALInterface();
  /system/bt/test/suite/adapter/
bluetooth_test.cc 50 bluetooth::hal::BluetoothInterface::Initialize();
51 ASSERT_TRUE(bluetooth::hal::BluetoothInterface::IsInitialized());
52 auto bt_hal_interface = bluetooth::hal::BluetoothInterface::Get();
64 auto bt_hal_interface = bluetooth::hal::BluetoothInterface::Get();
bluetooth_test.h 39 public bluetooth::hal::BluetoothInterface::Observer {
adapter_unittest.cc 177 bluetooth::hal::BluetoothInterface::Get()->GetHALCallbacks();
  /system/bt/service/
daemon.cc 56 if (!hal::BluetoothInterface::Initialize()) goto failed;
70 if (hal::BluetoothInterface::IsInitialized())
71 hal::BluetoothInterface::CleanUp();
adapter.cc 73 class AdapterImpl : public Adapter, public hal::BluetoothInterface::Observer {
80 hal::BluetoothInterface::Get()->AddObserver(this);
86 hal::BluetoothInterface::Get()->GetHALInterface()->get_adapter_properties();
90 hal::BluetoothInterface::Get()->RemoveObserver(this);
120 int status = hal::BluetoothInterface::Get()->GetHALInterface()->enable(
146 int status = hal::BluetoothInterface::Get()->GetHALInterface()->disable();
232 // hal::BluetoothInterface::Observer overrides.
349 hal::BluetoothInterface::Get()->GetHALInterface()->set_adapter_property(
gatt_server_old.cc 478 hal::BluetoothInterface::Get()->GetHALInterface();
  /system/bt/btif/src/
bluetooth.cc 416 static const bt_interface_t bluetoothInterface = {
417 sizeof(bluetoothInterface),
454 return &bluetoothInterface;
  /system/bt/service/test/
ipc_linux_unittest.cc 58 bluetooth::hal::BluetoothInterface::InitializeForTesting(
73 bluetooth::hal::BluetoothInterface::CleanUp();
adapter_unittest.cc 36 hal::BluetoothInterface::InitializeForTesting(fake_hal_iface_);
49 hal::BluetoothInterface::CleanUp();
  /system/bt/service/ipc/binder/
bluetooth_binder_server.cc 236 bluetooth::hal::BluetoothInterface::Get()->GetHALInterface();

Completed in 154 milliseconds