Lines Matching refs:LowEnergyClient
34 LowEnergyClient::LowEnergyClient(Adapter& adapter, const Uuid& uuid, in LowEnergyClient() function in bluetooth::LowEnergyClient
41 LowEnergyClient::~LowEnergyClient() { in ~LowEnergyClient()
53 bool LowEnergyClient::Connect(const std::string& address, bool is_direct) { in Connect()
70 bool LowEnergyClient::Disconnect(const std::string& address) { in Disconnect()
97 bool LowEnergyClient::SetMtu(const std::string& address, int mtu) { in SetMtu()
124 void LowEnergyClient::SetDelegate(Delegate* delegate) { in SetDelegate()
129 const Uuid& LowEnergyClient::GetAppIdentifier() const { in GetAppIdentifier()
133 int LowEnergyClient::GetInstanceId() const { return client_id_; } in GetInstanceId()
135 void LowEnergyClient::ConnectCallback(hal::BluetoothGattInterface* gatt_iface, in ConnectCallback()
155 void LowEnergyClient::DisconnectCallback( in DisconnectCallback()
173 void LowEnergyClient::MtuChangedCallback( in MtuChangedCallback()
243 std::unique_ptr<LowEnergyClient> client; in RegisterClientCallback()
246 client.reset(new LowEnergyClient(adapter_, uuid, client_id)); in RegisterClientCallback()