Home
last modified time | relevance | path

Searched refs:idle_screen_app_ (Results 1 – 2 of 2) sorted by relevance

/external/openscreen/cast/receiver/
Dapplication_agent.cc61 idle_screen_app_ = nullptr; // Prevent re-launching the idle screen app. in ~ApplicationAgent()
79 OSP_DCHECK(!idle_screen_app_); in RegisterApplication()
80 idle_screen_app_ = app; in RegisterApplication()
98 if (idle_screen_app_ == app) { in UnregisterApplication()
99 idle_screen_app_ = nullptr; in UnregisterApplication()
304 if (desired_app != idle_screen_app_) { in SwitchToApplication()
305 fallback_app = idle_screen_app_; in SwitchToApplication()
351 if (idle_screen_app_) { in GoIdle()
352 app_id = GetFirstAppId(idle_screen_app_); in GoIdle()
377 details[kMessageKeyIsIdleScreen] = (launched_app_ == idle_screen_app_); in PopulateReceiverStatus()
Dapplication_agent.h162 Application* idle_screen_app_ = nullptr; variable