Lines Matching refs:GattServer

42 GattServer::GattServer(const UUID& uuid, int server_id)  in GattServer()  function in bluetooth::GattServer
45 GattServer::~GattServer() { in ~GattServer()
60 void GattServer::SetDelegate(Delegate* delegate) { in SetDelegate()
65 const UUID& GattServer::GetAppIdentifier() const { return app_identifier_; } in GetAppIdentifier()
67 int GattServer::GetInstanceId() const { return server_id_; } in GetInstanceId()
69 bool GattServer::AddService(const bluetooth::Service& service, in AddService()
114 bool GattServer::SendResponse(const std::string& device_address, int request_id, in SendResponse()
184 bool GattServer::SendNotification(const std::string& device_address, in SendNotification()
248 void GattServer::ConnectionCallback( in ConnectionCallback()
298 void GattServer::ServiceAddedCallback(hal::BluetoothGattInterface* gatt_iface, in ServiceAddedCallback()
334 void GattServer::ServiceStoppedCallback( in ServiceStoppedCallback()
340 void GattServer::RequestReadCharacteristicCallback( in RequestReadCharacteristicCallback()
373 void GattServer::RequestReadDescriptorCallback( in RequestReadDescriptorCallback()
407 void GattServer::RequestWriteCharacteristicCallback( in RequestWriteCharacteristicCallback()
446 void GattServer::RequestWriteDescriptorCallback( in RequestWriteDescriptorCallback()
485 void GattServer::RequestExecWriteCallback( in RequestExecWriteCallback()
518 void GattServer::IndicationSentCallback( in IndicationSentCallback()
542 void GattServer::CleanUpPendingData() { in CleanUpPendingData()
546 std::shared_ptr<GattServer::Connection> GattServer::GetConnection( in GetConnection()
619 std::unique_ptr<GattServer> server; in RegisterServerCallback()
622 server.reset(new GattServer(uuid, server_id)); in RegisterServerCallback()