Home
last modified time | relevance | path

Searched refs:AddService (Results 1 – 13 of 13) sorted by relevance

/system/bt/service/common/android/bluetooth/
DIBluetoothGattServer.aidl29 boolean AddService(int server_id, in BluetoothGattService service); in AddService() method
/system/bt/service/ipc/binder/
Dbluetooth_gatt_server_binder_server.h54 Status AddService(int32_t server_id,
Dbluetooth_gatt_server_binder_server.cc65 Status BluetoothGattServerBinderServer::AddService( in AddService() function in ipc::binder::BluetoothGattServerBinderServer
100 if (!gatt_server->AddService(service, callback)) { in AddService()
/system/bt/service/hal/
Dfake_bluetooth_gatt_interface.h54 virtual bt_status_t AddService(
Dfake_bluetooth_gatt_interface.cc74 return g_server_handler->AddService(server_if, std::move(service)); in FakeAddService()
/system/bt/service/
Dgatt_server.h136 bool AddService(const bluetooth::Service&, const ResultCallback& callback);
Dgatt_server.cc69 bool GattServer::AddService(const bluetooth::Service& service, in AddService() function in bluetooth::GattServer
/system/bt/service/doc/
DIBluetoothGattServer.txt47 boolean AddService(int server_id, in BluetoothGattService service);
DIBluetoothGattServerCallback.txt32 * Called to report the result of a call to IBluetoothGattServer.AddService.
/system/bt/service/test/
Dgatt_server_unittest.cc38 MOCK_METHOD2(AddService, bt_status_t(int, std::vector<btgatt_db_element_t>));
245 EXPECT_CALL(*mock_handler_, AddService(_, _)) in SetUpTestService()
257 ASSERT_TRUE(gatt_server_->AddService( in SetUpTestService()
/system/core/init/
Dservice.h191 void AddService(std::unique_ptr<Service> service);
Dservice.cpp877 void ServiceManager::AddService(std::unique_ptr<Service> service) { in AddService() function in ServiceManager
1126 ServiceManager::GetInstance().AddService(std::move(service_)); in EndSection()
/system/bt/service/example/heart_rate/
Dheart_rate_server.cc264 Status stat = gatt_->AddService(server_if_, (BluetoothGattService)hrService, in OnServerRegistered()