Searched defs:adapter (Results 1 - 15 of 15) sorted by relevance

/system/bt/service/ipc/
H A Dipc_handler.cpp23 IPCHandler::IPCHandler(bluetooth::Adapter* adapter, argument
25 : adapter_(adapter),
H A Dipc_handler.h34 IPCHandler(bluetooth::Adapter* adapter, IPCManager::Delegate* delegate);
47 bluetooth::Adapter* adapter() const { return adapter_; } function in class:ipc::IPCHandler
H A Dipc_manager.cpp24 IPCManager::IPCManager(bluetooth::Adapter* adapter) argument
25 : adapter_(adapter) {
H A Dipc_handler_linux.cpp31 IPCHandlerLinux::IPCHandlerLinux(bluetooth::Adapter* adapter, argument
33 : IPCHandler(adapter, delegate),
140 CHECK(adapter());
171 LinuxIPCHost ipc_host(client_socket, adapter());
H A Dlinux_ipc_host.cpp38 #include "service/adapter.h"
77 LinuxIPCHost::LinuxIPCHost(int sockfd, Adapter* adapter) argument
78 : adapter_(adapter), pfds_(1, {sockfd, POLLIN, 0}) {}
/system/bt/service/test/
H A Dstub_ipc_handler_binder.cpp26 bluetooth::Adapter* adapter,
28 : IPCHandler(adapter, delegate) {
25 IPCHandlerBinder( bluetooth::Adapter* adapter, IPCManager::Delegate* delegate) argument
H A Dstub_ipc_handler_linux.cpp26 bluetooth::Adapter* adapter,
28 : IPCHandler(adapter, delegate),
25 IPCHandlerLinux( bluetooth::Adapter* adapter, IPCManager::Delegate* delegate) argument
H A Dadapter_unittest.cpp20 #include "service/adapter.h"
62 TestObserver(bluetooth::Adapter* adapter) argument
63 : adapter_(adapter),
87 void OnAdapterStateChanged(bluetooth::Adapter* adapter,
90 ASSERT_EQ(adapter_, adapter);
96 Adapter* adapter,
99 ASSERT_EQ(adapter_, adapter);
/system/bt/service/ipc/binder/
H A Dipc_handler_binder.cpp36 bluetooth::Adapter* adapter,
38 : IPCHandler(adapter, delegate) {
45 CHECK(adapter());
49 new binder::BluetoothBinderServer(adapter());
35 IPCHandlerBinder( bluetooth::Adapter* adapter, IPCManager::Delegate* delegate) argument
H A Dbluetooth_gatt_client_binder_server.cpp21 #include "service/adapter.h"
31 bluetooth::Adapter* adapter) : adapter_(adapter) {
30 BluetoothGattClientBinderServer( bluetooth::Adapter* adapter) argument
H A Dbluetooth_binder_server.cpp32 BluetoothBinderServer::BluetoothBinderServer(bluetooth::Adapter* adapter) argument
33 : adapter_(adapter) {
175 bluetooth::Adapter* adapter,
178 CHECK_EQ(adapter, adapter_);
179 VLOG(2) << "Received adapter state update - prev: " << prev_state
174 OnAdapterStateChanged( bluetooth::Adapter* adapter, bluetooth::AdapterState prev_state, bluetooth::AdapterState new_state) argument
H A Dbluetooth_gatt_server_binder_server.cpp21 #include "service/adapter.h"
31 bluetooth::Adapter* adapter) : adapter_(adapter) {
30 BluetoothGattServerBinderServer( bluetooth::Adapter* adapter) argument
H A Dbluetooth_low_energy_binder_server.cpp21 #include "service/adapter.h"
31 bluetooth::Adapter* adapter) : adapter_(adapter) {
30 BluetoothLowEnergyBinderServer( bluetooth::Adapter* adapter) argument
/system/bt/service/
H A Dadapter.cpp17 #include "service/adapter.h"
59 void Adapter::Observer::OnAdapterStateChanged(Adapter* adapter, argument
66 Adapter* adapter, const std::string& device_address, bool connected) {
176 VLOG(1) << "Setting adapter name: " << name;
179 LOG(ERROR) << "Failed to set adapter name: " << name;
291 VLOG(1) << "Unhandled adapter property: "
330 // Sends a request to set the given HAL adapter property type and value.
362 // The current adapter state.
365 // The Bluetooth device address of the local adapter in string from
369 // The current local adapter nam
65 OnDeviceConnectionStateChanged( Adapter* adapter, const std::string& device_address, bool connected) argument
[all...]
H A Dlow_energy_client.cpp21 #include "service/adapter.h"
306 Adapter& adapter, const UUID& uuid, int client_id)
307 : adapter_(adapter),
416 // Cannot start a scan if the adapter is not enabled.
830 LowEnergyClientFactory::LowEnergyClientFactory(Adapter& adapter) argument
831 : adapter_(adapter) {
305 LowEnergyClient( Adapter& adapter, const UUID& uuid, int client_id) argument

Completed in 141 milliseconds