Home
last modified time | relevance | path

Searched refs:GattClient (Results 1 – 5 of 5) sorted by relevance

/system/bt/service/
Dgatt_client.cc29 GattClient::GattClient(const Uuid& uuid, int client_id) in GattClient() function in bluetooth::GattClient
32 GattClient::~GattClient() { in ~GattClient()
41 const Uuid& GattClient::GetAppIdentifier() const { return app_identifier_; } in GetAppIdentifier()
43 int GattClient::GetInstanceId() const { return client_id_; } in GetInstanceId()
93 std::unique_ptr<GattClient> client; in RegisterClientCallback()
94 if (success) client.reset(new GattClient(uuid, client_id)); in RegisterClientCallback()
Dgatt_client.h33 class GattClient : public BluetoothInstance {
35 ~GattClient() override;
46 GattClient(const Uuid& uuid, int client_id);
52 DISALLOW_COPY_AND_ASSIGN(GattClient);
/system/bt/service/ipc/binder/
Dbluetooth_gatt_client_binder_server.cc69 std::shared_ptr<bluetooth::GattClient>
71 return std::static_pointer_cast<bluetooth::GattClient>( in GetGattClient()
Dbluetooth_gatt_client_binder_server.h62 std::shared_ptr<bluetooth::GattClient> GetGattClient(int client_id);
/system/bt/service/test/
Dgatt_client_unittest.cc90 std::unique_ptr<GattClient> client; in TEST_F()
97 client = std::unique_ptr<GattClient>( in TEST_F()
98 static_cast<GattClient*>(in_client.release())); in TEST_F()