Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fcea7990 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 6007460 from aaf0f4c1 to rvc-release

Change-Id: I2e815c4332b77c1d45949431a8e5b5639d17f62f
parents 6918990d aaf0f4c1
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -26,7 +26,6 @@ import android.bluetooth.BluetoothDevice;
interface IBluetoothMap {
    int getState();
    BluetoothDevice getClient();
    boolean connect(in BluetoothDevice device);
    boolean disconnect(in BluetoothDevice device);
    boolean isConnected(in BluetoothDevice device);
    List<BluetoothDevice> getConnectedDevices();
+8 −0
Original line number Diff line number Diff line
@@ -102,6 +102,10 @@ void GrpcModule::RunGrpcLoop() {
  }
}

std::string GrpcModule::ToString() const {
  return "Grpc Module";
}

const ::bluetooth::ModuleFactory GrpcModule::Factory = ::bluetooth::ModuleFactory([]() {
  return new GrpcModule();
});
@@ -119,5 +123,9 @@ void GrpcFacadeModule::Stop() {
  GetDependency<GrpcModule>()->Unregister(this);
}

std::string GrpcFacadeModule::ToString() const {
  return "Grpc Facade Module";
}

}  // namespace grpc
}  // namespace bluetooth
+4 −0
Original line number Diff line number Diff line
@@ -49,6 +49,8 @@ class GrpcModule : public ::bluetooth::Module {

  void Stop() override;

  std::string ToString() const override;

 private:
  bool started_;
  std::unique_ptr<::grpc::Server> server_ = nullptr;
@@ -70,6 +72,8 @@ class GrpcFacadeModule : public ::bluetooth::Module {
  virtual void OnServerStarted(::grpc::ServerCompletionQueue* cq) {}

  virtual void OnServerStopped() {}

  std::string ToString() const override;
};

}  // namespace grpc
+4 −0
Original line number Diff line number Diff line
@@ -1799,6 +1799,10 @@ void AclManager::Stop() {
  pimpl_->Stop();
}

std::string AclManager::ToString() const {
  return "Acl Manager";
}

const ModuleFactory AclManager::Factory = ModuleFactory([]() { return new AclManager(); });

AclManager::~AclManager() = default;
+2 −0
Original line number Diff line number Diff line
@@ -236,6 +236,8 @@ class AclManager : public Module {

  void Stop() override;

  std::string ToString() const override;

 private:
  friend AclConnection;

Loading