HomeSort by relevance Sort by last modified time
    Searched defs:GattClient (Results 1 - 2 of 2) sorted by null

  /system/bt/service/
gatt_client.h 30 // A GattClient instance represents an application's handle to perform GATT
33 class GattClient : public BluetoothInstance {
35 ~GattClient() override;
46 GattClient(const UUID& uuid, int client_id);
52 DISALLOW_COPY_AND_ASSIGN(GattClient);
55 // GattClientFactory is used to register and obtain a per-application GattClient
57 // GattClient instance that has been registered with the Bluetooth stack.
gatt_client.cc 26 // GattClient implementation
29 GattClient::GattClient(const UUID& uuid, int client_id)
32 GattClient::~GattClient() {
34 VLOG(1) << "GattClient unregistering client: " << client_id_;
41 const UUID& GattClient::GetAppIdentifier() const { return app_identifier_; }
43 int GattClient::GetInstanceId() const { return client_id_; }
93 std::unique_ptr<GattClient> client;
94 if (success) client.reset(new GattClient(uuid, client_id))
    [all...]

Completed in 292 milliseconds