/foundation/ability/form_fwk/interfaces/inner_api/include/ |
H A D | form_render_interface.h | 62 virtual int32_t CleanFormHost(const sptr<IRemoteObject> &hostToken) = 0;
|
H A D | form_render_proxy.h | 59 int32_t CleanFormHost(const sptr<IRemoteObject> &hostToken) override;
|
/foundation/ability/form_fwk/test/unittest/fms_form_render_proxy_test/ |
H A D | fms_form_render_proxy_test.cpp | 116 * @tc.desc: test CleanFormHost function and callerToken is not nullptr. 124 int result = formRenderProxy_->CleanFormHost(callerToken); in HWTEST_F() 131 * @tc.desc: test CleanFormHost function and callerToken is nullptr. 136 int result = formRenderProxy_->CleanFormHost(nullptr); in HWTEST_F()
|
/foundation/ability/form_fwk/services/form_render_service/include/ |
H A D | form_render_impl.h | 69 int32_t CleanFormHost(const sptr<IRemoteObject> &hostToken) override;
|
/foundation/ability/form_fwk/test/fuzztest/formrenderimpl_fuzzer/ |
H A D | formrenderimpl_fuzzer.cpp | 49 formRenderImpl.CleanFormHost(hostToken);
in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/fuzztest/formrenderproxy_fuzzer/ |
H A D | formrenderproxy_fuzzer.cpp | 49 formRenderProxy.CleanFormHost(hostToken);
in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/services/include/ |
H A D | form_render_mgr.h | 76 void CleanFormHost(const sptr<IRemoteObject> &host, const int hostCallingUid);
|
H A D | form_render_mgr_inner.h | 63 void CleanFormHost(const sptr<IRemoteObject> &host);
|
/foundation/ability/form_fwk/test/fuzztest/formrendermgr_fuzzer/ |
H A D | formrendermgr_fuzzer.cpp | 65 formRenderMgr.CleanFormHost(host, OHOS::MAIN_CALLING_USER_ID);
in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/fuzztest/formrenderstub_fuzzer/ |
H A D | formrenderstub_fuzzer.cpp | 52 int32_t CleanFormHost(const sptr<IRemoteObject> &hostToken) override
|
/foundation/ability/form_fwk/test/fuzztest/formrendermgrinner_fuzzer/ |
H A D | formrendermgrinner_fuzzer.cpp | 67 formRenderMgrInner.CleanFormHost(host);
in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/unittest/fms_form_render_mgr_test/ |
H A D | fms_form_render_mgr_test.cpp | 666 * @tc.desc: 1.test CleanFormHost function and renderInner_ is nullptr.
677 formRenderMgr.CleanFormHost(host, hostCallingUid);
in HWTEST_F() 683 * @tc.desc: 1.test CleanFormHost function and renderInner_ is not nullptr.
697 formRenderMgr.CleanFormHost(host, hostCallingUid);
in HWTEST_F() 703 * @tc.desc: 1.test CleanFormHost function and sandboxInner_ is not nullptr.
717 formRenderMgr.CleanFormHost(host, hostCallingUid);
in HWTEST_F() 723 * @tc.desc: 1.test CleanFormHost function and sandboxInner_ is not nullptr.
740 formRenderMgr.CleanFormHost(host, hostCallingUid);
in HWTEST_F()
|
/foundation/ability/form_fwk/services/src/ |
H A D | form_render_mgr.cpp | 334 void FormRenderMgr::CleanFormHost(const sptr<IRemoteObject> &host, const int hostCallingUid) in CleanFormHost() function in OHOS::AppExecFwk::FormRenderMgr 344 renderIter->second->CleanFormHost(host); in CleanFormHost() 348 sandboxIter->second->CleanFormHost(host); in CleanFormHost()
|
H A D | form_render_mgr_inner.cpp | 450 void FormRenderMgrInner::CleanFormHost(const sptr<IRemoteObject> &host) in CleanFormHost() function in OHOS::AppExecFwk::FormRenderMgrInner 459 renderRemoteObj_->CleanFormHost(host); in CleanFormHost()
|
H A D | form_data_mgr.cpp | 644 FormRenderMgr::GetInstance().CleanFormHost(callerToken, iter->GetCallerUid()); in DeleteHostRecord() 751 FormRenderMgr::GetInstance().CleanFormHost(remoteHost, remoteHostCallerUid); in HandleHostDied()
|
/foundation/ability/form_fwk/interfaces/inner_api/src/ |
H A D | form_render_stub.cpp | 128 int32_t result = CleanFormHost(hostToken); in HandleCleanFormHost()
|
H A D | form_render_proxy.cpp | 99 int32_t FormRenderProxy::CleanFormHost(const sptr<IRemoteObject> &hostToken) in CleanFormHost() function in OHOS::AppExecFwk::FormRenderProxy
|
/foundation/ability/form_fwk/test/unittest/fms_form_render_mgr_inner_test/ |
H A D | fms_form_render_mgr_inner_test.cpp | 68 int32_t CleanFormHost(const sptr<IRemoteObject> &hostToken) override
722 * @tc.desc: test CleanFormHost function and renderRemoteObj_ is nullptr
730 formRenderMgrInner.CleanFormHost(host);
in HWTEST_F() 736 * @tc.desc: test CleanFormHost function and renderRemoteObj_ is not nullptr
745 formRenderMgrInner.CleanFormHost(host);
in HWTEST_F()
|
/foundation/ability/form_fwk/test/unittest/fms_form_render_impl_test/ |
H A D | fms_form_render_impl_test.cpp | 225 * @tc.desc: 1.Verify CleanFormHost interface executes as expected.
236 EXPECT_EQ(ERR_OK, formRenderImpl.CleanFormHost(hostToken));
in HWTEST_F() 242 * @tc.desc: 1.Verify CleanFormHost interface executes as expected.
254 EXPECT_EQ(ERR_OK, formRenderImpl.CleanFormHost(hostToken));
in HWTEST_F()
|
/foundation/ability/form_fwk/services/form_render_service/src/ |
H A D | form_render_impl.cpp | 204 int32_t FormRenderImpl::CleanFormHost(const sptr<IRemoteObject> &hostToken)
in CleanFormHost() function in OHOS::AppExecFwk::FormRender::FormRenderImpl
|
/foundation/ability/form_fwk/test/unittest/fms_form_render_stub_test/ |
H A D | fms_form_render_stub_test.cpp | 76 int32_t CleanFormHost(const sptr<IRemoteObject> &hostToken) override
|