Home
last modified time | relevance | path

Searched refs:CreateForm (Results 1 – 18 of 18) sorted by relevance

/ohos5.0/foundation/ability/form_fwk/test/unittest/fms_form_mgr_service_test/
H A Dfms_form_mgr_service_test2.cpp938 … EXPECT_EQ(ERR_APPEXECFWK_FORM_PERMISSION_DENY, formMgrService.CreateForm(want, runningFormInfo));
941 EXPECT_EQ(ERR_APPEXECFWK_FORM_INVALID_PARAM, formMgrService.CreateForm(want, runningFormInfo));
964 EXPECT_EQ(ERR_OK, formMgrService.CreateForm(want, runningFormInfo));
967 …EXPECT_EQ(ERR_APPEXECFWK_FORM_GET_SYSMGR_FAILED, formMgrService.CreateForm(want, runningFormInfo));
/ohos5.0/foundation/ability/form_fwk/test/unittest/fms_form_share_mgr_test/
H A Dfms_form_share_mgr_test.cpp97 void CreateForm(FormJsInfo &formInfo);
335 CreateForm(formJsInfo);
365 CreateForm(formJsInfo);
400 CreateForm(formJsInfo);
431 CreateForm(formJsInfo);
519 CreateForm(formJsInfo);
559 CreateForm(formJsInfo);
598 CreateForm(formJsInfo);
638 CreateForm(formJsInfo);
673 CreateForm(formJsInfo);
[all …]
/ohos5.0/foundation/ability/form_fwk/interfaces/kits/native/include/
H A Dform_mgr.h100 int CreateForm(const Want &want, RunningFormInfo &runningFormInfo);
/ohos5.0/foundation/ability/form_fwk/test/mock/include/
H A Dmock_form_mgr_proxy.h37 MOCK_METHOD2(CreateForm, int(const Want &want, RunningFormInfo &runningFormInfo));
H A Dmock_form_mgr_service.h42 MOCK_METHOD2(CreateForm, int(const Want &want, RunningFormInfo &runningFormInfo));
/ohos5.0/foundation/ability/form_fwk/test/unittest/form_mgr_proxy_test/
H A Dform_mgr_proxy_test.cpp828 EXPECT_CALL(*mockFormMgrService, CreateForm(_, _))
833 int result = formMgrProxy->CreateForm(want, runningFormInfo);
/ohos5.0/foundation/ability/form_fwk/interfaces/inner_api/include/
H A Dform_mgr_interface.h64 virtual int CreateForm(const Want &want, RunningFormInfo &runningFormInfo) in CreateForm() function
H A Dform_mgr_proxy.h54 virtual int CreateForm(const Want &want, RunningFormInfo &runningFormInfo) override;
/ohos5.0/foundation/ability/form_fwk/services/include/
H A Dform_mgr_service.h73 int CreateForm(const Want &want, RunningFormInfo &runningFormInfo) override;
H A Dform_mgr_adapter.h84 int CreateForm(const Want &want, RunningFormInfo &runningFormInfo);
/ohos5.0/foundation/ability/form_fwk/interfaces/kits/native/src/
H A Dform_mgr.cpp95 int FormMgr::CreateForm(const Want &want, RunningFormInfo &runningFormInfo) in CreateForm() function in OHOS::AppExecFwk::FormMgr
108 resultCode = remoteProxy_->CreateForm(want, runningFormInfo); in CreateForm()
/ohos5.0/foundation/ability/form_fwk/services/src/
H A Dform_mgr_service.cpp219 int FormMgrService::CreateForm(const Want &want, RunningFormInfo &runningFormInfo) in CreateForm() function in OHOS::AppExecFwk::FormMgrService
231 return FormMgrAdapter::GetInstance().CreateForm(want, runningFormInfo); in CreateForm()
H A Dform_mgr_adapter.cpp189 int FormMgrAdapter::CreateForm(const Want &want, RunningFormInfo &runningFormInfo) in CreateForm() function in OHOS::AppExecFwk::FormMgrAdapter
/ohos5.0/foundation/ability/form_fwk/test/unittest/form_mgr_test/
H A Dform_mgr_test.cpp2400 EXPECT_CALL(*mockProxy, CreateForm(_, _))
2405 int result = FormMgr::GetInstance().CreateForm(want, runningFormInfo);
3265 int result = FormMgr::GetInstance().CreateForm(want, runningFormInfo);
4441 EXPECT_CALL(*mockProxy, CreateForm(_, _))
4447 int result = FormMgr::GetInstance().CreateForm(want, runningFormInfo);
/ohos5.0/foundation/ability/form_fwk/interfaces/inner_api/src/
H A Dform_mgr_stub.cpp314 int32_t result = CreateForm(*want, runningFormInfo); in HandleCreateForm()
H A Dform_mgr_proxy.cpp77 int FormMgrProxy::CreateForm(const Want &want, RunningFormInfo &runningFormInfo) in CreateForm() function in OHOS::AppExecFwk::FormMgrProxy
/ohos5.0/foundation/ability/form_fwk/frameworks/js/napi/form_host/
H A Djs_form_host.cpp551 *ret = FormMgr::GetInstance().CreateForm(want, *runningFormInfo); in OnAddForm()
/ohos5.0/foundation/ability/form_fwk/test/unittest/form_mgr_stub_test/
H A Dform_mgr_stub_test.cpp3058 EXPECT_CALL(*mockFormMgrService, CreateForm(_, _))