Home
last modified time | relevance | path

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

/system/bt/service/test/
Dgatt_server_unittest.cpp40 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/
DIBluetoothGattServer.h70 virtual bool AddCharacteristic(
132 bool AddCharacteristic(
DIBluetoothGattServer.cpp90 bool result = AddCharacteristic( in onTransact()
228 bool BpBluetoothGattServer::AddCharacteristic( in AddCharacteristic() function in ipc::binder::BpBluetoothGattServer
/system/bt/service/
Dgatt_server_old.h89 bool AddCharacteristic(const UUID &id, int properties, int permissions);
Dgatt_server_old.cpp98 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()
Dgatt_server.h146 std::unique_ptr<GattIdentifier> AddCharacteristic(
Dgatt_server.cpp107 std::unique_ptr<GattIdentifier> GattServer::AddCharacteristic( in AddCharacteristic() function in bluetooth::GattServer
/system/bt/service/example/heart_rate/
Dheart_rate_server.cpp244 if (!gatt_->AddCharacteristic( in OnServerRegistered()
269 if (!gatt_->AddCharacteristic( in OnServerRegistered()
282 if (!gatt_->AddCharacteristic( in OnServerRegistered()
/system/bt/service/ipc/binder/
Dbluetooth_gatt_server_binder_server.cpp79 bool BluetoothGattServerBinderServer::AddCharacteristic( in AddCharacteristic() function in ipc::binder::BluetoothGattServerBinderServer
93 auto char_id = gatt_server->AddCharacteristic(uuid, properties, permissions); in AddCharacteristic()
Dbluetooth_gatt_server_binder_server.h49 bool AddCharacteristic(
/system/bt/service/hal/
Dfake_bluetooth_gatt_interface.h68 virtual bt_status_t AddCharacteristic(int server_if, int srvc_handle,
Dfake_bluetooth_gatt_interface.cpp126 return g_server_handler->AddCharacteristic(server_if, srvc_handle, uuid, in FakeAddCharacteristic()
/system/bt/service/ipc/
Dlinux_ipc_host.cpp162 gatt_servers_[service_uuid]->AddCharacteristic( in OnAddCharacteristic()