/foundation/ability/form_fwk/test/unittest/fms_form_mgr_service_test/ |
H A D | fms_form_mgr_service_test2.cpp | 930 * @tc.name: test CreateForm function. 931 * @tc.desc: Verify that the CreateForm interface is called normally and the return value is ERR_OK. 943 EXPECT_EQ(ERR_APPEXECFWK_FORM_PERMISSION_DENY, formMgrService.CreateForm(want, runningFormInfo)); in HWTEST_F() 946 EXPECT_EQ(ERR_APPEXECFWK_FORM_INVALID_PARAM, formMgrService.CreateForm(want, runningFormInfo)); in HWTEST_F() 952 * @tc.name: test CreateForm function. 953 * @tc.desc: Verify that the CreateForm interface is called normally and the return value is ERR_OK. 969 EXPECT_EQ(ERR_OK, formMgrService.CreateForm(want, runningFormInfo)); in HWTEST_F() 972 EXPECT_EQ(ERR_APPEXECFWK_FORM_GET_SYSMGR_FAILED, formMgrService.CreateForm(want, runningFormInfo)); in HWTEST_F()
|
/foundation/ability/form_fwk/interfaces/kits/native/include/ |
H A D | form_mgr.h | 100 int CreateForm(const Want &want, RunningFormInfo &runningFormInfo);
|
/foundation/ability/form_fwk/test/mock/include/ |
H A D | mock_form_mgr_proxy.h | 37 MOCK_METHOD2(CreateForm, int(const Want &want, RunningFormInfo &runningFormInfo));
|
H A D | mock_form_mgr_service.h | 42 MOCK_METHOD2(CreateForm, int(const Want &want, RunningFormInfo &runningFormInfo));
|
/foundation/ability/form_fwk/test/unittest/fms_form_share_mgr_test/ |
H A D | fms_form_share_mgr_test.cpp | 97 void CreateForm(FormJsInfo &formInfo); 179 void FmsFormShareMgrTest::CreateForm(FormJsInfo &formJsInfo) in CreateForm() function in FmsFormShareMgrTest 334 CreateForm(formJsInfo); in HWTEST_F() 364 CreateForm(formJsInfo); in HWTEST_F() 399 CreateForm(formJsInfo); in HWTEST_F() 430 CreateForm(formJsInfo); in HWTEST_F() 518 CreateForm(formJsInfo); in HWTEST_F() 558 CreateForm(formJsInfo); in HWTEST_F() 597 CreateForm(formJsInfo); in HWTEST_F() 637 CreateForm(formJsInf in HWTEST_F() [all...] |
/foundation/ability/form_fwk/test/unittest/form_mgr_proxy_test/ |
H A D | form_mgr_proxy_test.cpp | 823 * @tc.desc: Verify CreateForm 828 EXPECT_CALL(*mockFormMgrService, CreateForm(_, _)) in HWTEST_F() 833 int result = formMgrProxy->CreateForm(want, runningFormInfo); in HWTEST_F()
|
/foundation/ability/form_fwk/services/include/ |
H A D | form_mgr_service.h | 73 int CreateForm(const Want &want, RunningFormInfo &runningFormInfo) override;
|
H A D | form_mgr_adapter.h | 84 int CreateForm(const Want &want, RunningFormInfo &runningFormInfo);
|
/foundation/ability/form_fwk/interfaces/inner_api/include/ |
H A D | form_mgr_interface.h | 64 virtual int CreateForm(const Want &want, RunningFormInfo &runningFormInfo) in CreateForm() function in OHOS::AppExecFwk::IFormMgr
|
H A D | form_mgr_proxy.h | 54 virtual int CreateForm(const Want &want, RunningFormInfo &runningFormInfo) override;
|
/foundation/ability/form_fwk/interfaces/kits/native/src/ |
H A D | form_mgr.cpp | 95 int FormMgr::CreateForm(const Want &want, RunningFormInfo &runningFormInfo) in CreateForm() function in OHOS::AppExecFwk::FormMgr 108 resultCode = remoteProxy_->CreateForm(want, runningFormInfo); in CreateForm()
|
/foundation/ability/form_fwk/services/src/ |
H A D | form_mgr_service.cpp | 218 int FormMgrService::CreateForm(const Want &want, RunningFormInfo &runningFormInfo) in CreateForm() function in OHOS::AppExecFwk::FormMgrService 230 return FormMgrAdapter::GetInstance().CreateForm(want, runningFormInfo); in CreateForm()
|
H A D | form_mgr_adapter.cpp | 189 int FormMgrAdapter::CreateForm(const Want &want, RunningFormInfo &runningFormInfo) in CreateForm() function in OHOS::AppExecFwk::FormMgrAdapter
|
/foundation/ability/form_fwk/test/unittest/form_mgr_test/ |
H A D | form_mgr_test.cpp | 2394 * @tc.desc: Verify CreateForm 2400 EXPECT_CALL(*mockProxy, CreateForm(_, _)) in HWTEST_F() 2405 int result = FormMgr::GetInstance().CreateForm(want, runningFormInfo); in HWTEST_F() 3256 * @tc.desc: Verify CreateForm 3265 int result = FormMgr::GetInstance().CreateForm(want, runningFormInfo); in HWTEST_F() 4435 * @tc.desc: Verify CreateForm 4441 EXPECT_CALL(*mockProxy, CreateForm(_, _)) in HWTEST_F() 4447 int result = FormMgr::GetInstance().CreateForm(want, runningFormInfo); in HWTEST_F()
|
/foundation/ability/form_fwk/interfaces/inner_api/src/ |
H A D | form_mgr_proxy.cpp | 77 int FormMgrProxy::CreateForm(const Want &want, RunningFormInfo &runningFormInfo) in CreateForm() function in OHOS::AppExecFwk::FormMgrProxy
|
H A D | form_mgr_stub.cpp | 298 * @brief handle CreateForm message. 312 int32_t result = CreateForm(*want, runningFormInfo); in HandleCreateForm() 1543 * @brief handle CreateForm message.
|
/foundation/ability/form_fwk/frameworks/js/napi/form_host/ |
H A D | js_form_host.cpp | 551 *ret = FormMgr::GetInstance().CreateForm(want, *runningFormInfo); in OnAddForm()
|
/foundation/ability/form_fwk/test/unittest/form_mgr_stub_test/ |
H A D | form_mgr_stub_test.cpp | 3058 EXPECT_CALL(*mockFormMgrService, CreateForm(_, _)) in HWTEST_F()
|