Home
last modified time | relevance | path

Searched refs:StopRenderingForm (Results 1 - 25 of 45) sorted by relevance

12

/foundation/ability/form_fwk/interfaces/inner_api/include/
H A Dform_render_interface.h54 virtual int32_t StopRenderingForm(const FormJsInfo &formJsInfo, const Want &want,
H A Dform_render_proxy.h51 int32_t StopRenderingForm(
/foundation/ability/form_fwk/test/unittest/fms_form_render_mgr_test/
H A Dmock_form_render_mgr_inner.cpp74 ErrCode FormRenderMgrInner::StopRenderingForm(int64_t formId, const FormRecord &formRecord, in StopRenderingForm() function in OHOS::AppExecFwk::FormRenderMgrInner
H A Dfms_form_render_mgr_test.cpp321 * @tc.desc: 1.test StopRenderingForm function and privacyLevel is 1.
334 formRenderMgr.StopRenderingForm(formId, formRecord, compId)); in HWTEST_F()
340 * @tc.desc: 1.test StopRenderingForm function and privacyLevel is 1.
356 EXPECT_EQ(ERR_OK, formRenderMgr.StopRenderingForm(formId, formRecord, compId)); in HWTEST_F()
362 * @tc.desc: 1.test StopRenderingForm function and privacyLevel is 0.
375 formRenderMgr.StopRenderingForm(formId, formRecord, compId)); in HWTEST_F()
381 * @tc.desc: 1.test StopRenderingForm function and privacyLevel is 0.
397 EXPECT_EQ(ERR_OK, formRenderMgr.StopRenderingForm(formId, formRecord, compId)); in HWTEST_F()
/foundation/ability/form_fwk/test/unittest/fms_form_render_proxy_test/
H A Dfms_form_render_proxy_test.cpp81 * @tc.desc: test StopRenderingForm function and callerToken is not nullptr.
93 int result = formRenderProxy_->StopRenderingForm(formJsInfo, want, callerToken); in HWTEST_F()
100 * @tc.desc: test StopRenderingForm function and callerToken is nullptr.
109 int result = formRenderProxy_->StopRenderingForm(formJsInfo, want, nullptr); in HWTEST_F()
/foundation/ability/form_fwk/services/form_render_service/include/
H A Dform_render_impl.h61 int32_t StopRenderingForm(
/foundation/ability/form_fwk/test/fuzztest/formrenderimpl_fuzzer/
H A Dformrenderimpl_fuzzer.cpp47 formRenderImpl.StopRenderingForm(formJsInfo, want, callerToken); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/test/fuzztest/formrenderproxy_fuzzer/
H A Dformrenderproxy_fuzzer.cpp47 formRenderProxy.StopRenderingForm(formJsInfo, want, callerToken); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/test/unittest/fms_form_render_mgr_inner_test/
H A Dfms_form_render_mgr_inner_test.cpp62 int32_t StopRenderingForm(const FormJsInfo &formJsInfo,
358 * @tc.desc: test StopRenderingForm function and return ERR_OK.
370 formRenderMgrInner.StopRenderingForm(formId, formRecord, compId)); in HWTEST_F()
376 * @tc.desc: test StopRenderingForm function and formRecord.abilityName is empty.
389 formRenderMgrInner.StopRenderingForm(formId, formRecord, compId)); in HWTEST_F()
395 * @tc.desc: test StopRenderingForm function and formRecord.bundleName is empty.
409 formRenderMgrInner.StopRenderingForm(formId, formRecord, compId)); in HWTEST_F()
415 * @tc.desc: test StopRenderingForm function and compId is empty.
429 formRenderMgrInner.StopRenderingForm(formId, formRecord, compId)); in HWTEST_F()
435 * @tc.desc: 1.test StopRenderingForm functio
[all...]
/foundation/ability/form_fwk/services/include/
H A Dform_render_mgr.h55 ErrCode StopRenderingForm(int64_t formId, const FormRecord &formRecord,
H A Dform_render_mgr_inner.h48 ErrCode StopRenderingForm(int64_t formId, const FormRecord &formRecord,
H A Dform_task_mgr.h461 void StopRenderingForm(const FormRecord &formRecord, const Want &want, const sptr<IRemoteObject> &remoteObject);
/foundation/ability/form_fwk/test/fuzztest/formrendermgr_fuzzer/
H A Dformrendermgr_fuzzer.cpp58 formRenderMgr.StopRenderingForm(formId, formRecord, compId); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/test/fuzztest/formrenderstub_fuzzer/
H A Dformrenderstub_fuzzer.cpp46 int32_t StopRenderingForm(
/foundation/ability/form_fwk/test/fuzztest/formrendermgrinner_fuzzer/
H A Dformrendermgrinner_fuzzer.cpp53 formRenderMgrInner.StopRenderingForm(formId, formRecord, compId); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/services/src/
H A Dform_render_mgr.cpp241 ErrCode FormRenderMgr::StopRenderingForm( in StopRenderingForm() function in OHOS::AppExecFwk::FormRenderMgr
250 return iter->second->StopRenderingForm(formId, formRecord, compId, hostToken); in StopRenderingForm()
256 return iter->second->StopRenderingForm(formId, formRecord, compId, hostToken); in StopRenderingForm()
H A Dform_task_mgr.cpp855 FormTaskMgr::GetInstance().StopRenderingForm(formRecord, want, remoteObject); in PostStopRenderingForm()
860 void FormTaskMgr::StopRenderingForm( in StopRenderingForm() function in OHOS::AppExecFwk::FormTaskMgr
873 int32_t error = remoteFormDeleteRender->StopRenderingForm(formJsInfo, want, FormSupplyCallback::GetInstance()); in StopRenderingForm()
/foundation/ability/form_fwk/interfaces/inner_api/src/
H A Dform_render_stub.cpp115 int32_t result = StopRenderingForm(*formJsInfo, *want, client); in HandleStopRenderingForm()
H A Dform_render_proxy.cpp62 int32_t FormRenderProxy::StopRenderingForm(const FormJsInfo &formJsInfo, const Want &want, in StopRenderingForm() function in OHOS::AppExecFwk::FormRenderProxy
/foundation/ability/form_fwk/test/unittest/fms_form_render_impl_test/
H A Dfms_form_render_impl_test.cpp189 * @tc.desc: 1.Verify StopRenderingForm interface executes as expected.
200 auto ret = formRenderImpl.StopRenderingForm(formJsInfo, want, callerToken); in HWTEST_F()
207 * @tc.desc: 1.Verify StopRenderingForm interface executes as expected.
218 auto ret = formRenderImpl.StopRenderingForm(formJsInfo, want, callerToken); in HWTEST_F()
336 * @tc.desc: 1.Verify StopRenderingForm interface executes as expected.
352 auto ret = formRenderImpl.StopRenderingForm(formJsInfo, want, callerToken); in HWTEST_F()
/foundation/ability/form_fwk/interfaces/kits/native/include/
H A Dform_mgr.h116 int StopRenderingForm(const int64_t formId, const std::string &compId);
/foundation/ability/form_fwk/test/mock/include/
H A Dmock_form_mgr_proxy.h115 MOCK_METHOD2(StopRenderingForm, int32_t(const int64_t formId, const std::string &compId));
H A Dmock_form_mgr_service.h73 MOCK_METHOD2(StopRenderingForm, int32_t(const int64_t formId, const std::string &compId));
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_service_test/
H A Dmock_form_mgr_adapter.cpp294 int FormMgrAdapter::StopRenderingForm(const int64_t formId, const std::string &compId) in StopRenderingForm() function in OHOS::AppExecFwk::FormMgrAdapter
H A Dfms_form_mgr_service_test.cpp1246 * @tc.name: test StopRenderingForm function.
1247 * @tc.desc: Verify that the StopRenderingForm interface is called normally
1256 int ret = formMgrService.StopRenderingForm(formId, compId); in HWTEST_F()
1261 ret = formMgrService.StopRenderingForm(formId, compId); in HWTEST_F()
1265 ret = formMgrService.StopRenderingForm(formId, compId); in HWTEST_F()

Completed in 18 milliseconds

12