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

  /system/bt/service/
low_energy_client.h 46 // A LowEnergyClient represents an application's handle to perform various
49 class LowEnergyClient : private hal::BluetoothGattInterface::ClientObserver,
61 virtual void OnScanResult(LowEnergyClient* client,
65 virtual void OnConnectionState(LowEnergyClient* client, int status,
69 virtual void OnMtuChanged(LowEnergyClient* client, int status, const char* address,
78 ~LowEnergyClient() override;
81 // LowEnergyClient instance.
147 LowEnergyClient(Adapter& adapter, const UUID& uuid, int client_id);
225 // Raw handle to the Delegate, which must outlive this LowEnergyClient
237 DISALLOW_COPY_AND_ASSIGN(LowEnergyClient);
    [all...]
low_energy_client.cpp 302 // LowEnergyClient implementation
305 LowEnergyClient::LowEnergyClient(
319 LowEnergyClient::~LowEnergyClient() {
321 VLOG(1) << "LowEnergyClient unregistering client: " << client_id_;
337 bool LowEnergyClient::Connect(std::string address, bool is_direct) {
354 bool LowEnergyClient::Disconnect(std::string address) {
380 bool LowEnergyClient::SetMtu(std::string address, int mtu) {
407 void LowEnergyClient::SetDelegate(Delegate* delegate)
    [all...]

Completed in 38 milliseconds