Lines Matching refs:LowEnergyClient
37 LowEnergyClient::LowEnergyClient(Adapter& adapter, const Uuid& uuid, in LowEnergyClient() function in bluetooth::LowEnergyClient
44 LowEnergyClient::~LowEnergyClient() { in ~LowEnergyClient()
56 bool LowEnergyClient::Connect(const std::string& address, bool is_direct) { in Connect()
73 bool LowEnergyClient::Disconnect(const std::string& address) { in Disconnect()
100 bool LowEnergyClient::SetMtu(const std::string& address, int mtu) { in SetMtu()
127 void LowEnergyClient::SetDelegate(Delegate* delegate) { in SetDelegate()
132 const Uuid& LowEnergyClient::GetAppIdentifier() const { in GetAppIdentifier()
136 int LowEnergyClient::GetInstanceId() const { return client_id_; } in GetInstanceId()
138 void LowEnergyClient::ConnectCallback(hal::BluetoothGattInterface* gatt_iface, in ConnectCallback()
158 void LowEnergyClient::DisconnectCallback( in DisconnectCallback()
176 void LowEnergyClient::MtuChangedCallback( in MtuChangedCallback()
247 std::unique_ptr<LowEnergyClient> client; in RegisterClientCallback()
250 client.reset(new LowEnergyClient(adapter_, uuid, client_id)); in RegisterClientCallback()