/foundation/ability/form_fwk/test/fuzztest/formmgrproxy_fuzzer/ |
H A D | formmgrproxy_fuzzer.cpp | 72 formMgrProxy.GetFormsInfo(IFormMgr::Message::FORM_MGR_ADD_FORM, datas, formInfos); in DoSomethingInterestingWithMyAPI() 88 formMgrProxy.GetFormsInfo(filter, formInfos); in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/frameworks/js/napi/form_provider/ |
H A D | native_module.cpp | 33 BindNativeFunction(env, exports, "getFormsInfo", moduleName, JsFormProvider::GetFormsInfo); in JsProviderInit()
|
H A D | js_form_provider.h | 65 static napi_value GetFormsInfo(napi_env env, napi_callback_info info);
|
H A D | js_form_provider.cpp | 133 napi_value JsFormProvider::GetFormsInfo(napi_env env, napi_callback_info info) in GetFormsInfo() function in OHOS::AbilityRuntime::JsFormProvider 216 auto ret = FormMgr::GetInstance().GetFormsInfo(formInfoFilter, formInfos); in OnGetFormsInfo()
|
/foundation/ability/form_fwk/frameworks/js/napi/formProvider/ |
H A D | native_module.cpp | 33 BindNativeFunction(env, value, "getFormsInfo", moduleName, JsFormProvider::GetFormsInfo); in JsProviderInit()
|
H A D | napi_form_provider.h | 68 static napi_value GetFormsInfo(napi_env env, napi_callback_info info);
|
H A D | napi_form_provider.cpp | 373 napi_value JsFormProvider::GetFormsInfo(napi_env env, napi_callback_info info) in GetFormsInfo() function in OHOS::AbilityRuntime::JsFormProvider 407 auto ret = FormMgr::GetInstance().GetFormsInfo(formInfoFilter, formInfos); in OnGetFormsInfo()
|
/foundation/ability/form_fwk/test/fuzztest/formmgrannex_fuzzer/ |
H A D | formmgrannex_fuzzer.cpp | 67 formMgr.GetFormsInfo(filter, formInfos); in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/frameworks/js/napi/formHost/ |
H A D | native_module.cpp | 52 OHOS::AbilityRuntime::BindNativeFunction(env, exports, "getFormsInfo", moduleName, NapiFormHost::GetFormsInfo); in NapiFormHostInit()
|
H A D | napi_form_host.h | 91 static napi_value GetFormsInfo(napi_env env, napi_callback_info info);
|
/foundation/ability/ability_runtime/test/mock/frameworks_kits_ability_native_test/include/ |
H A D | mock_form_mgr_proxy.h | 28 MOCK_METHOD2(GetFormsInfo, int(const FormInfoFilter &filter, std::vector<FormInfo> &formInfos));
|
/foundation/ability/form_fwk/test/unittest/form_mgr_proxy_test/ |
H A D | form_mgr_proxy_test.cpp | 71 * @tc.desc: Verify GetFormsInfo 86 EXPECT_CALL(*mockFormMgrService, GetFormsInfo(_, _)) in HWTEST_F() 90 formMgrProxy->GetFormsInfo(filter, formInfos); in HWTEST_F() 98 * @tc.desc: Verify GetFormsInfo 114 EXPECT_CALL(*mockFormMgrService, GetFormsInfo(_, _)) in HWTEST_F() 118 formMgrProxy->GetFormsInfo(filter, formInfos); in HWTEST_F()
|
/foundation/ability/form_fwk/interfaces/inner_api/include/ |
H A D | form_mgr_proxy.h | 308 int32_t GetFormsInfo(const FormInfoFilter &filter, std::vector<FormInfo> &formInfos) override; 615 int32_t GetFormsInfo(IFormMgr::Message code, MessageParcel &data, std::vector<FormInfo> &formInfos);
|
H A D | form_mgr_interface.h | 346 virtual int32_t GetFormsInfo(const FormInfoFilter &filter, std::vector<FormInfo> &formInfos) = 0;
|
/foundation/ability/form_fwk/interfaces/inner_api/src/ |
H A D | form_mgr_proxy.cpp | 877 int FormMgrProxy::GetFormsInfo(IFormMgr::Message code, MessageParcel &data, std::vector<FormInfo> &formInfos) in GetFormsInfo() function in OHOS::AppExecFwk::FormMgrProxy 879 HILOG_DEBUG("GetFormsInfo start"); in GetFormsInfo() 1199 int error = GetFormsInfo(IFormMgr::Message::FORM_MGR_GET_ALL_FORMS_INFO, data, formInfos); in GetAllFormsInfo() 1227 int error = GetFormsInfo(IFormMgr::Message::FORM_MGR_GET_FORMS_INFO_BY_APP, data, formInfos); in GetFormsInfoByApp() 1261 int error = GetFormsInfo(IFormMgr::Message::FORM_MGR_GET_FORMS_INFO_BY_MODULE, data, formInfos); in GetFormsInfoByModule() 1297 int error = GetFormsInfo(IFormMgr::Message::FORM_MGR_GET_FORMS_INFO_BY_FILTER, data, formInfos); in GetFormsInfoByFilter() 1352 int32_t FormMgrProxy::GetFormsInfo(const FormInfoFilter &filter, std::vector<FormInfo> &formInfos) in GetFormsInfo() function in OHOS::AppExecFwk::FormMgrProxy 1365 // call private GetFormsInfo with Message which will send request to tell stub which handle function to be used. in GetFormsInfo() 1366 int error = GetFormsInfo(IFormMgr::Message::FORM_MGR_GET_FORMS_INFO, data, formInfos); in GetFormsInfo()
|
/foundation/ability/form_fwk/interfaces/kits/native/include/ |
H A D | form_mgr.h | 413 int32_t GetFormsInfo(const FormInfoFilter &filter, std::vector<FormInfo> &formInfos);
|
/foundation/ability/form_fwk/test/mock/include/ |
H A D | mock_form_mgr_proxy.h | 28 MOCK_METHOD2(GetFormsInfo, int(const FormInfoFilter &filter, std::vector<FormInfo> &formInfos));
|
H A D | mock_form_mgr_service.h | 67 MOCK_METHOD2(GetFormsInfo, int(const FormInfoFilter &filter, std::vector<FormInfo> &formInfos));
|
/foundation/ability/dmsfwk/services/dtbschedmgr/test/unittest/ |
H A D | mock_form_mgr_service.h | 176 int32_t GetFormsInfo(const FormInfoFilter &filter, std::vector<FormInfo> &formInfos) override
|
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_appkit_native_test/ |
H A D | form_extension_context_mock_test.h | 180 int32_t GetFormsInfo(const FormInfoFilter &filter, std::vector<FormInfo> &formInfos) override
|
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_service_test/ |
H A D | fms_form_mgr_service_test.cpp | 452 * @tc.name: test GetFormsInfo function. 453 * @tc.desc: Verify that the GetFormsInfo interface is called normally and the return value is ERR_OK. 464 EXPECT_EQ(formMgrService.GetFormsInfo(filter, formInfos), ERR_OK); in HWTEST_F() 467 EXPECT_EQ(formMgrService.GetFormsInfo(filter, formInfos), ERR_APPEXECFWK_FORM_COMMON_CODE); in HWTEST_F() 473 * @tc.name: test GetFormsInfo function. 474 * @tc.desc: Verify that the specified parameter "aa" is passed in, the GetFormsInfo interface is called 485 EXPECT_EQ(ERR_OK, formMgrService.GetFormsInfo(filter, formInfos)); in HWTEST_F()
|
/foundation/ability/form_fwk/test/unittest/fms_form_host_record_test/ |
H A D | fms_form_host_record_test.cpp | 643 * @tc.desc: test GetFormsInfo function. 658 EXPECT_EQ(ERR_APPEXECFWK_FORM_GET_BUNDLE_FAILED, formMgrService.GetFormsInfo(filter, formInfos)); in HWTEST_F() 664 * @tc.desc: test GetFormsInfo function. 680 EXPECT_EQ(ERR_APPEXECFWK_FORM_GET_BUNDLE_FAILED, formMgrService.GetFormsInfo(filter, formInfos)); in HWTEST_F()
|
/foundation/ability/form_fwk/services/include/ |
H A D | form_mgr_service.h | 356 int32_t GetFormsInfo(const FormInfoFilter &filter, std::vector<FormInfo> &formInfos) override;
|
/foundation/ability/form_fwk/test/fuzztest/formmgrstub_fuzzer/ |
H A D | formmgrstub_fuzzer.cpp | 157 int32_t GetFormsInfo(const FormInfoFilter &filter, std::vector<FormInfo> &formInfos) override
|
/foundation/ability/form_fwk/test/unittest/form_mgr_stub_test/ |
H A D | form_mgr_stub_test.cpp | 116 EXPECT_CALL(*mockFormMgrService, GetFormsInfo(_, _)) in HWTEST_F() 144 EXPECT_CALL(*mockFormMgrService, GetFormsInfo(_, _)) in HWTEST_F() 1655 EXPECT_CALL(*mockFormMgrService, GetFormsInfo(_, _)) in HWTEST_F() 1679 EXPECT_CALL(*mockFormMgrService, GetFormsInfo(_, _)) in HWTEST_F()
|