Home
last modified time | relevance | path

Searched refs:AddDescriptor (Results 1 – 10 of 10) sorted by relevance

/system/bt/service/test/
Dgatt_server_unittest.cpp41 MOCK_METHOD4(AddDescriptor, bt_status_t(int, int, bt_uuid_t*, int));
237 EXPECT_CALL(*mock_handler_, AddDescriptor(_, _, _, _)) in SetUpTestService()
254 test_desc_id_ = *gatt_server_->AddDescriptor(uuid2, 0); in SetUpTestService()
703 TEST_F(GattServerPostRegisterTest, AddDescriptor) { in TEST_F() argument
717 EXPECT_EQ(nullptr, gatt_server_->AddDescriptor(desc_uuid, perms)); in TEST_F()
725 EXPECT_EQ(nullptr, gatt_server_->AddDescriptor(desc_uuid, perms)); in TEST_F()
732 auto desc_id = gatt_server_->AddDescriptor(desc_uuid, perms); in TEST_F()
739 auto desc_id1 = gatt_server_->AddDescriptor(desc_uuid, perms); in TEST_F()
770 EXPECT_EQ(nullptr, gatt_server_->AddDescriptor(desc_uuid, perms)); in TEST_F()
776 EXPECT_CALL(*mock_handler_, AddDescriptor(_, _, _, _)) in TEST_F()
[all …]
/system/bt/service/common/bluetooth/binder/
DIBluetoothGattServer.h74 virtual bool AddDescriptor(
136 bool AddDescriptor(
DIBluetoothGattServer.cpp109 bool result = AddDescriptor(server_if, *uuid, permissions, &out_id); in onTransact()
251 bool BpBluetoothGattServer::AddDescriptor( in AddDescriptor() function in ipc::binder::BpBluetoothGattServer
/system/bt/service/ipc/binder/
Dbluetooth_gatt_server_binder_server.cpp105 bool BluetoothGattServerBinderServer::AddDescriptor( in AddDescriptor() function in ipc::binder::BluetoothGattServerBinderServer
118 auto desc_id = gatt_server->AddDescriptor(uuid, permissions); in AddDescriptor()
Dbluetooth_gatt_server_binder_server.h53 bool AddDescriptor(
/system/bt/service/hal/
Dfake_bluetooth_gatt_interface.h71 virtual bt_status_t AddDescriptor(int server_if, int srvc_handle,
Dfake_bluetooth_gatt_interface.cpp136 return g_server_handler->AddDescriptor( in FakeAddDescriptor()
/system/bt/service/
Dgatt_server.h154 std::unique_ptr<GattIdentifier> AddDescriptor(
Dgatt_server.cpp136 std::unique_ptr<GattIdentifier> GattServer::AddDescriptor( in AddDescriptor() function in bluetooth::GattServer
/system/bt/service/example/heart_rate/
Dheart_rate_server.cpp257 if (!gatt_->AddDescriptor( in OnServerRegistered()