/system/bt/service/ |
D | adapter.h | 41 class Adapter { 61 virtual void OnAdapterStateChanged(Adapter* adapter, 70 Adapter* adapter, const std::string& device_address, bool connected); 73 virtual void OnScanEnableChanged(Adapter* adapter, bool scan_enabled); 76 virtual void OnSspRequest(Adapter* adapter, 82 virtual void OnBondStateChanged(Adapter* adapter, int status, 88 Adapter* adapter, int status, 92 virtual void OnGetRemoteDeviceProperties(Adapter* adapter, int status, 97 virtual void OnDeviceFound(Adapter* adapter, 103 static std::unique_ptr<Adapter> Create(); [all …]
|
D | adapter.cc | 130 const char Adapter::kDefaultAddress[] = "00:00:00:00:00:00"; 132 const char Adapter::kDefaultName[] = "not-initialized"; 149 void Adapter::Observer::OnAdapterStateChanged(Adapter* adapter, in OnAdapterStateChanged() 155 void Adapter::Observer::OnDeviceConnectionStateChanged( in OnDeviceConnectionStateChanged() 156 Adapter* adapter, const std::string& device_address, bool connected) { in OnDeviceConnectionStateChanged() 160 void Adapter::Observer::OnScanEnableChanged(Adapter* adapter, in OnScanEnableChanged() 165 void Adapter::Observer::OnSspRequest(Adapter* adapter, in OnSspRequest() 172 void Adapter::Observer::OnBondStateChanged(Adapter* adapter, int status, in OnBondStateChanged() 178 void Adapter::Observer::OnGetBondedDevices( in OnGetBondedDevices() 179 Adapter* adapter, int status, in OnGetBondedDevices() [all …]
|
D | low_energy_scanner.h | 38 class Adapter; variable 96 LowEnergyScanner(Adapter& adapter, const Uuid& uuid, int scanner_id); 103 Adapter& adapter_; 136 explicit LowEnergyScannerFactory(Adapter& adapter); 156 Adapter& adapter_;
|
D | low_energy_client.h | 42 class Adapter; variable 102 LowEnergyClient(Adapter& adapter, const Uuid& uuid, int client_id); 119 Adapter& adapter_; 150 explicit LowEnergyClientFactory(Adapter& adapter); 170 Adapter& adapter_;
|
D | daemon.cc | 145 adapter_ = Adapter::Create(); in Init() 162 std::unique_ptr<Adapter> adapter_;
|
/system/bt/service/ipc/ |
D | ipc_handler.h | 25 class Adapter; variable 34 IPCHandler(bluetooth::Adapter* adapter, IPCManager::Delegate* delegate); 47 bluetooth::Adapter* adapter() const { return adapter_; } in adapter() 54 bluetooth::Adapter* adapter_;
|
D | ipc_manager.h | 25 class Adapter; variable 64 explicit IPCManager(bluetooth::Adapter* adapter); 98 bluetooth::Adapter* adapter_;
|
D | linux_ipc_host.h | 28 class Adapter; variable 40 LinuxIPCHost(int sockfd, bluetooth::Adapter* adapter); 96 bluetooth::Adapter* adapter_;
|
D | ipc_handler.cc | 23 IPCHandler::IPCHandler(bluetooth::Adapter* adapter, in IPCHandler()
|
/system/bt/service/ipc/binder/ |
D | bluetooth_binder_server.h | 66 public bluetooth::Adapter::Observer { 68 explicit BluetoothBinderServer(bluetooth::Adapter* adapter); 123 void OnAdapterStateChanged(bluetooth::Adapter* adapter, 127 void OnDeviceConnectionStateChanged(bluetooth::Adapter* adapter, 131 void OnScanEnableChanged(bluetooth::Adapter* adapter, 134 void OnSspRequest(bluetooth::Adapter* adapter, 139 void OnBondStateChanged(bluetooth::Adapter* adapter, int status, 143 bluetooth::Adapter* adapter, int status, 146 bluetooth::Adapter* adapter, int status, 149 void OnDeviceFound(bluetooth::Adapter* adapter, [all …]
|
D | bluetooth_gatt_client_binder_server.h | 33 class Adapter; variable 43 explicit BluetoothGattClientBinderServer(bluetooth::Adapter* adapter); 69 bluetooth::Adapter* adapter_; // weak
|
D | bluetooth_le_advertiser_binder_server.h | 37 class Adapter; variable 47 explicit BluetoothLeAdvertiserBinderServer(bluetooth::Adapter* adapter); 79 bluetooth::Adapter* adapter_; // weak
|
D | bluetooth_le_scanner_binder_server.h | 37 class Adapter; variable 49 explicit BluetoothLeScannerBinderServer(bluetooth::Adapter* adapter); 81 bluetooth::Adapter* adapter_; // weak
|
D | bluetooth_low_energy_binder_server.h | 37 class Adapter; variable 49 explicit BluetoothLowEnergyBinderServer(bluetooth::Adapter* adapter); 85 bluetooth::Adapter* adapter_; // weak
|
D | bluetooth_a2dp_sink_binder_server.h | 31 class Adapter; variable 42 explicit BluetoothA2dpSinkBinderServer(bluetooth::Adapter* adapter); 80 bluetooth::Adapter* adapter_; // weak
|
D | bluetooth_a2dp_source_binder_server.h | 32 class Adapter; variable 43 explicit BluetoothA2dpSourceBinderServer(bluetooth::Adapter* adapter); 89 bluetooth::Adapter* const adapter_; // weak
|
D | bluetooth_avrcp_control_binder_server.h | 31 class Adapter; variable 42 explicit BluetoothAvrcpControlBinderServer(bluetooth::Adapter* adapter); 83 bluetooth::Adapter* adapter_; // weak
|
D | bluetooth_gatt_server_binder_server.h | 33 class Adapter; variable 44 explicit BluetoothGattServerBinderServer(bluetooth::Adapter* adapter); 111 bluetooth::Adapter* adapter_; // weak
|
D | bluetooth_binder_server.cc | 44 BluetoothBinderServer::BluetoothBinderServer(bluetooth::Adapter* adapter) in BluetoothBinderServer() 386 bluetooth::Adapter* adapter, bluetooth::AdapterState prev_state, in OnAdapterStateChanged() 397 bluetooth::Adapter* adapter, const std::string& device_address, in OnDeviceConnectionStateChanged() 406 void BluetoothBinderServer::OnScanEnableChanged(bluetooth::Adapter* adapter, in OnScanEnableChanged() 414 void BluetoothBinderServer::OnSspRequest(bluetooth::Adapter* adapter, in OnSspRequest() 434 bluetooth::Adapter* adapter, int status, const std::string& device_address, in OnBondStateChanged() 447 bluetooth::Adapter* adapter, int status, in OnGetBondedDevices() 462 bluetooth::Adapter* adapter, int status, const std::string& device_address, in OnGetRemoteDeviceProperties() 477 bluetooth::Adapter* adapter, in OnDeviceFound()
|
D | ipc_handler_binder.h | 29 IPCHandlerBinder(bluetooth::Adapter* adapter, IPCManager::Delegate* delegate);
|
D | bluetooth_avrcp_target_binder_server.h | 32 class Adapter; variable 43 explicit BluetoothAvrcpTargetBinderServer(bluetooth::Adapter* adapter); 125 bluetooth::Adapter* const adapter_; // weak
|
/system/bt/service/test/ |
D | adapter_unittest.cc | 42 adapter_ = Adapter::Create(); in SetUp() 54 std::unique_ptr<Adapter> adapter_; 60 class TestObserver final : public bluetooth::Adapter::Observer { 62 explicit TestObserver(bluetooth::Adapter* adapter) in TestObserver() 85 void OnAdapterStateChanged(bluetooth::Adapter* adapter, in OnAdapterStateChanged() 93 void OnDeviceConnectionStateChanged(Adapter* adapter, in OnDeviceConnectionStateChanged() 102 bluetooth::Adapter* adapter_; 206 EXPECT_EQ(bluetooth::Adapter::kDefaultName, adapter_->GetName()); in TEST_F() 227 EXPECT_EQ(bluetooth::Adapter::kDefaultAddress, adapter_->GetAddress()); in TEST_F()
|
D | stub_ipc_handler_binder.cc | 25 IPCHandlerBinder::IPCHandlerBinder(bluetooth::Adapter* adapter, in IPCHandlerBinder()
|
/system/bt/service/ipc/dbus/ |
D | bluetooth_adapter.h | 38 bluetooth::Adapter* adapter); 52 bluetooth::Adapter* adapter_;
|
D | ipc_handler_dbus.h | 31 IPCHandlerDBus(bluetooth::Adapter* adapter, IPCManager::Delegate* delegate);
|