/system/bt/service/test/ |
D | gatt_server_unittest.cpp | 40 MOCK_METHOD5(AddCharacteristic, bt_status_t(int, int, bt_uuid_t*, int, int)); 234 EXPECT_CALL(*mock_handler_, AddCharacteristic(_, _, _, _, _)) in SetUpTestService() 253 test_char_id_ = *gatt_server_->AddCharacteristic(uuid1, 0, 0); in SetUpTestService() 537 TEST_F(GattServerPostRegisterTest, AddCharacteristic) { in TEST_F() argument 546 EXPECT_EQ(nullptr, gatt_server_->AddCharacteristic(char_uuid, props, perms)); in TEST_F() 556 auto char_id0 = gatt_server_->AddCharacteristic(char_uuid, props, perms); in TEST_F() 557 auto char_id1 = gatt_server_->AddCharacteristic(char_uuid, props, perms); in TEST_F() 587 EXPECT_EQ(nullptr, gatt_server_->AddCharacteristic(char_uuid, props, perms)); in TEST_F() 589 EXPECT_CALL(*mock_handler_, AddCharacteristic(_, _, _, _, _)) in TEST_F() 609 char_id0 = gatt_server_->AddCharacteristic(char_uuid, props, perms); in TEST_F() [all …]
|
/system/bt/service/common/bluetooth/binder/ |
D | IBluetoothGattServer.h | 70 virtual bool AddCharacteristic( 132 bool AddCharacteristic(
|
D | IBluetoothGattServer.cpp | 90 bool result = AddCharacteristic( in onTransact() 228 bool BpBluetoothGattServer::AddCharacteristic( in AddCharacteristic() function in ipc::binder::BpBluetoothGattServer
|
/system/bt/service/ |
D | gatt_server_old.h | 89 bool AddCharacteristic(const UUID &id, int properties, int permissions);
|
D | gatt_server_old.cpp | 98 bt_status_t AddCharacteristic( 510 bt_status_t ServerInternals::AddCharacteristic( in AddCharacteristic() function in bluetooth::gatt::ServerInternals 644 bool Server::AddCharacteristic( in AddCharacteristic() function in bluetooth::gatt::Server 647 bt_status_t btstat = internal_->AddCharacteristic( in AddCharacteristic() 665 bt_status_t btstat = internal_->AddCharacteristic( in AddBlob() 676 btstat = internal_->AddCharacteristic( in AddBlob()
|
D | gatt_server.h | 146 std::unique_ptr<GattIdentifier> AddCharacteristic(
|
D | gatt_server.cpp | 107 std::unique_ptr<GattIdentifier> GattServer::AddCharacteristic( in AddCharacteristic() function in bluetooth::GattServer
|
/system/bt/service/example/heart_rate/ |
D | heart_rate_server.cpp | 244 if (!gatt_->AddCharacteristic( in OnServerRegistered() 269 if (!gatt_->AddCharacteristic( in OnServerRegistered() 282 if (!gatt_->AddCharacteristic( in OnServerRegistered()
|
/system/bt/service/ipc/binder/ |
D | bluetooth_gatt_server_binder_server.cpp | 79 bool BluetoothGattServerBinderServer::AddCharacteristic( in AddCharacteristic() function in ipc::binder::BluetoothGattServerBinderServer 93 auto char_id = gatt_server->AddCharacteristic(uuid, properties, permissions); in AddCharacteristic()
|
D | bluetooth_gatt_server_binder_server.h | 49 bool AddCharacteristic(
|
/system/bt/service/hal/ |
D | fake_bluetooth_gatt_interface.h | 68 virtual bt_status_t AddCharacteristic(int server_if, int srvc_handle,
|
D | fake_bluetooth_gatt_interface.cpp | 126 return g_server_handler->AddCharacteristic(server_if, srvc_handle, uuid, in FakeAddCharacteristic()
|
/system/bt/service/ipc/ |
D | linux_ipc_host.cpp | 162 gatt_servers_[service_uuid]->AddCharacteristic( in OnAddCharacteristic()
|