Home
last modified time | relevance | path

Searched refs:wptrDeath (Results 1 - 25 of 30) sorted by relevance

12

/foundation/window/window_manager/utils/src/
H A Dagent_death_recipient.cpp25 void AgentDeathRecipient::OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) in OnRemoteDied() argument
27 if (wptrDeath == nullptr) { in OnRemoteDied()
28 WLOGFE("wptrDeath is null"); in OnRemoteDied()
32 sptr<IRemoteObject> object = wptrDeath.promote(); in OnRemoteDied()
/foundation/window/window_manager/window_scene/screen_session_manager/src/
H A Dscreen_session_manager_lite.cpp174 void ScreenSMDeathRecipient::OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) in OnRemoteDied() argument
176 if (wptrDeath == nullptr) { in OnRemoteDied()
177 TLOGE(WmsLogTag::DMS, "ScreenSMDeathRecipient wptrDeath is null"); in OnRemoteDied()
181 sptr<IRemoteObject> object = wptrDeath.promote(); in OnRemoteDied()
/foundation/window/window_manager/window_scene/session_manager/include/
H A Dsession_manager.h30 void OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) override;
34 void OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) override;
H A Dsession_manager_lite.h32 void OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) override;
37 void OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) override;
/foundation/window/window_manager/wm/test/unittest/
H A Dwindow_adapter_lite_test.cpp92 wptr<IRemoteObject> wptrDeath; in HWTEST_F() local
93 wmSDeathRecipient->OnRemoteDied(wptrDeath); in HWTEST_F()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/free_install/
H A Dservice_center_death_recipient.cpp22 void ServiceCenterDeathRecipient::OnRemoteDied(const wptr<IRemoteObject> &wptrDeath) in OnRemoteDied() argument
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/free_install/
H A Dservice_center_death_recipient.h31 void OnRemoteDied(const wptr<IRemoteObject> &wptrDeath) override;
/foundation/window/window_manager/utils/include/
H A Dagent_death_recipient.h27 virtual void OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) override;
/foundation/window/window_manager/dm_lite/test/unittest/
H A Ddisplay_manager_adapter_lite_test.cpp74 wptr<IRemoteObject> wptrDeath = obj; in HWTEST_F() local
75 dmsDeath_->OnRemoteDied(wptrDeath); in HWTEST_F()
/foundation/window/window_manager/dm_lite/src/
H A Ddisplay_manager_adapter_lite.cpp267 void DMSDeathRecipientLite::OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) in OnRemoteDied() argument
269 if (wptrDeath == nullptr) { in OnRemoteDied()
270 WLOGFE("wptrDeath is nullptr"); in OnRemoteDied()
274 sptr<IRemoteObject> object = wptrDeath.promote(); in OnRemoteDied()
/foundation/window/window_manager/window_scene/test/unittest/
H A Dsession_manager_test.cpp258 wptr<IRemoteObject> wptrDeath; in HWTEST_F() local
259 foundationDeathRecipient.OnRemoteDied(wptrDeath); in HWTEST_F()
277 wptr<IRemoteObject> wptrDeath; in HWTEST_F() local
278 sSMDeathRecipient.OnRemoteDied(wptrDeath); in HWTEST_F()
H A Dsession_manager_lite_test.cpp262 wptr<IRemoteObject> wptrDeath; in HWTEST_F() local
263 foundationDeathRecipient.OnRemoteDied(wptrDeath); in HWTEST_F()
281 wptr<IRemoteObject> wptrDeath; in HWTEST_F() local
282 sSMDeathRecipient.OnRemoteDied(wptrDeath); in HWTEST_F()
H A Dextension_session_test.cpp695 sptr<IRemoteObject> wptrDeath = nullptr; in HWTEST_F() local
696 wptrDeath = new (std::nothrow) WindowEventChannel(nullptr); in HWTEST_F()
697 ASSERT_NE(nullptr, wptrDeath); in HWTEST_F()
698 deathRecipient->OnRemoteDied(wptrDeath); in HWTEST_F()
/foundation/window/window_manager/window_scene/screen_session_manager/include/
H A Dscreen_session_manager_lite.h29 virtual void OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) override;
/foundation/window/window_manager/extension/extension_connection/src/
H A Dwindow_extension_connection.cpp91 void WindowExtensionConnection::Impl::WindowExtensionClientRecipient::OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) in OnRemoteDied() argument
93 if (wptrDeath == nullptr) { in OnRemoteDied()
94 WLOGFE("wptrDeath is null"); in OnRemoteDied()
98 sptr<IRemoteObject> object = wptrDeath.promote(); in OnRemoteDied()
/foundation/window/window_manager/wm/src/
H A Dwindow_adapter_lite.cpp182 void WMSDeathRecipient::OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) in OnRemoteDied() argument
184 if (wptrDeath == nullptr) { in OnRemoteDied()
185 WLOGFE("wptrDeath is null"); in OnRemoteDied()
188 sptr<IRemoteObject> object = wptrDeath.promote(); in OnRemoteDied()
/foundation/window/window_manager/window_scene/session/host/src/
H A Dextension_session.cpp109 void ChannelDeathRecipient::OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) in OnRemoteDied() argument
111 if (wptrDeath == nullptr) { in OnRemoteDied()
112 TLOGE(WmsLogTag::WMS_UIEXT, "wptrDeath is null"); in OnRemoteDied()
116 sptr<IRemoteObject> object = wptrDeath.promote(); in OnRemoteDied()
/foundation/window/window_manager/dm_lite/include/
H A Ddisplay_manager_adapter_lite.h48 virtual void OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) override;
/foundation/window/window_manager/wm/include/
H A Dwindow_adapter_lite.h32 virtual void OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) override;
/foundation/window/window_manager/window_scene/session_manager/src/
H A Dsession_manager.cpp365 void FoundationDeathRecipient::OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) in OnRemoteDied() argument
371 void SSMDeathRecipient::OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) in OnRemoteDied() argument
H A Dsession_manager_lite.cpp374 void SSMDeathRecipientLite::OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) in OnRemoteDied() argument
477 void FoundationDeathRecipientLite::OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) in OnRemoteDied() argument
/foundation/window/window_manager/window_scene/session/host/include/
H A Dextension_session.h48 virtual void OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) override;
/foundation/window/window_manager/dm/src/
H A Ddisplay_manager_adapter.cpp438 void DMSDeathRecipient::OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) in OnRemoteDied() argument
440 if (wptrDeath == nullptr) { in OnRemoteDied()
441 WLOGFE("wptrDeath is null"); in OnRemoteDied()
445 sptr<IRemoteObject> object = wptrDeath.promote(); in OnRemoteDied()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_free_install_test/
H A Dbms_bundle_free_install_test.cpp1491 wptr<IRemoteObject> wptrDeath; in HWTEST_F() local
1492 recipient.OnRemoteDied(wptrDeath); in HWTEST_F()
1636 wptr<IRemoteObject> wptrDeath; in HWTEST_F() local
1637 recipient.OnRemoteDied(wptrDeath); in HWTEST_F()
1651 wptr<IRemoteObject> wptrDeath; in HWTEST_F() local
1652 recipient.OnRemoteDied(wptrDeath); in HWTEST_F()
/foundation/window/window_manager/dm/test/unittest/
H A Ddisplay_manager_adapter_test.cpp232 wptr<IRemoteObject> wptrDeath = obj; in HWTEST_F() local
233 dmsDeath_->OnRemoteDied(wptrDeath); in HWTEST_F()

Completed in 16 milliseconds

12