Lines Matching refs:Streamer

139 class Streamer::Impl : public ServerConnectionObserver,
192 Streamer::Streamer(std::unique_ptr<Streamer::Impl> impl) in Streamer() function in cuttlefish::webrtc_streaming::Streamer
196 std::unique_ptr<Streamer> Streamer::Create( in Create()
201 std::unique_ptr<Streamer::Impl> impl(new Streamer::Impl()); in Create()
241 return std::unique_ptr<Streamer>(new Streamer(std::move(impl))); in Create()
244 std::shared_ptr<VideoSink> Streamer::AddDisplay(const std::string& label, in AddDisplay()
282 bool Streamer::RemoveDisplay(const std::string& label) { in RemoveDisplay()
299 bool Streamer::AddTouchpad(const std::string& label, int width, int height) { in AddTouchpad()
313 std::shared_ptr<AudioSink> Streamer::AddAudioStream(const std::string& label) { in AddAudioStream()
330 std::shared_ptr<AudioSource> Streamer::GetAudioSource() { in GetAudioSource()
334 CameraController* Streamer::AddCamera(unsigned int port, unsigned int cid, in AddCamera()
341 void Streamer::SetHardwareSpec(std::string key, std::string value) { in SetHardwareSpec()
345 void Streamer::AddCustomControlPanelButton(const std::string& command, in AddCustomControlPanelButton()
353 void Streamer::AddCustomControlPanelButtonWithShellCommand( in AddCustomControlPanelButtonWithShellCommand()
362 void Streamer::AddCustomControlPanelButtonWithDeviceStates( in AddCustomControlPanelButtonWithDeviceStates()
372 void Streamer::Register(std::weak_ptr<OperatorObserver> observer) { in Register()
381 void Streamer::Unregister() { in Unregister()
387 void Streamer::Impl::Register(std::weak_ptr<OperatorObserver> observer) { in Register()
402 void Streamer::Impl::OnOpen() { in OnOpen()
495 void Streamer::Impl::OnClose() { in OnClose()
514 void Streamer::Impl::OnError(const std::string& error) { in OnError()
539 void Streamer::Impl::HandleConfigMessage(const Json::Value& server_message) { in HandleConfigMessage()
550 void Streamer::Impl::HandleClientMessage(const Json::Value& server_message) { in HandleClientMessage()
579 void Streamer::Impl::OnReceive(const uint8_t* msg, size_t length, in OnReceive()
632 std::shared_ptr<ClientHandler> Streamer::Impl::CreateClientHandler( in CreateClientHandler()
672 Streamer::Impl::Build( in Build()
698 void Streamer::Impl::SendMessageToClient(int client_id, in SendMessageToClient()
713 void Streamer::Impl::DestroyClientHandler(int client_id) { in DestroyClientHandler()
729 void Streamer::Impl::SetupCameraForClient(int client_id) { in SetupCameraForClient()