/foundation/ability/form_fwk/interfaces/kits/native/include/ |
H A D | form_mgr.h | 653 int32_t BatchRefreshForms(const int32_t formRefreshType);
|
/foundation/ability/form_fwk/test/mock/include/ |
H A D | mock_form_mgr_proxy.h | 102 MOCK_METHOD1(BatchRefreshForms, ErrCode(const int32_t formRefreshType));
|
H A D | mock_form_mgr_service.h | 115 MOCK_METHOD1(BatchRefreshForms, ErrCode(const int32_t formRefreshType));
|
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_service_test/ |
H A D | fms_form_mgr_service_test2.cpp | 1054 * @tc.name: test BatchRefreshForms function. 1055 * @tc.desc: Verify that the BatchRefreshForms interface is called normally. 1063 EXPECT_EQ(ERR_OK, formMgrService.BatchRefreshForms(formRefreshType)); in HWTEST_F() 1069 * @tc.name: test BatchRefreshForms function. 1070 * @tc.desc: Verify that the BatchRefreshForms interface is called normally. 1080 EXPECT_EQ(ERR_APPEXECFWK_FORM_PERMISSION_DENY_SYS, formMgrService.BatchRefreshForms(formRefreshType)); in HWTEST_F()
|
/foundation/ability/form_fwk/services/include/ |
H A D | form_mgr_service.h | 627 ErrCode BatchRefreshForms(const int32_t formRefreshType) override;
|
H A D | form_mgr_adapter.h | 623 ErrCode BatchRefreshForms(const int32_t formRefreshType);
|
/foundation/ability/form_fwk/interfaces/inner_api/include/ |
H A D | form_mgr_interface.h | 640 virtual int32_t BatchRefreshForms(const int32_t formRefreshType) in BatchRefreshForms() function in OHOS::AppExecFwk::IFormMgr
|
H A D | form_mgr_proxy.h | 591 int32_t BatchRefreshForms(const int32_t formRefreshType) override;
|
/foundation/ability/form_fwk/test/unittest/form_mgr_test/ |
H A D | form_mgr_test.cpp | 2746 * @tc.desc: Verify BatchRefreshForms (The return value of mock function is not 0) 2753 EXPECT_EQ(FormMgr::GetInstance().BatchRefreshForms(formRefreshType), ERR_APPEXECFWK_FORM_SERVER_STATUS_ERR); in HWTEST_F() 2759 * @tc.desc: Verify BatchRefreshForms (The return value of mock function is not 0) 2766 EXPECT_EQ(FormMgr::GetInstance().BatchRefreshForms(formRefreshType), ERR_APPEXECFWK_FORM_INVALID_PARAM); in HWTEST_F() 2768 EXPECT_EQ(FormMgr::GetInstance().BatchRefreshForms(formRefreshType), ERR_APPEXECFWK_FORM_INVALID_PARAM); in HWTEST_F() 2774 * @tc.desc: Verify BatchRefreshForms (The return value of mock function is not 0) 2779 EXPECT_CALL(*mockProxy, BatchRefreshForms(_)) in HWTEST_F() 2785 EXPECT_EQ(FormMgr::GetInstance().BatchRefreshForms(formRefreshType), ERR_OK); in HWTEST_F() 4419 * @tc.desc: Verify BatchRefreshForms 4428 EXPECT_EQ(FormMgr::GetInstance().BatchRefreshForms(formRefreshTyp in HWTEST_F() [all...] |
/foundation/ability/form_fwk/test/unittest/form_mgr_proxy_test/ |
H A D | form_mgr_proxy_test.cpp | 865 * @tc.name: test BatchRefreshForms function. 866 * @tc.desc: Verify that the BatchRefreshForms interface is called normally and the return value is ERR_OK. 871 EXPECT_EQ(formMgrProxy->BatchRefreshForms(formRefreshType), ERR_OK); in HWTEST_F()
|
/foundation/ability/form_fwk/interfaces/kits/native/src/ |
H A D | form_mgr.cpp | 1804 int32_t FormMgr::BatchRefreshForms(const int32_t formRefreshType) in BatchRefreshForms() function in OHOS::AppExecFwk::FormMgr 1808 HILOG_ERROR("BatchRefreshForms failed, form is in recover status, can't do action on form"); in BatchRefreshForms() 1813 HILOG_ERROR("BatchRefreshForms failed, invalid formRefreshType %{public}d", formRefreshType); in BatchRefreshForms() 1827 return remoteProxy_->BatchRefreshForms(formRefreshType); in BatchRefreshForms()
|
/foundation/ability/form_fwk/services/src/ |
H A D | form_mgr_service.cpp | 1686 ErrCode FormMgrService::BatchRefreshForms(const int32_t formRefreshType) in BatchRefreshForms() function in OHOS::AppExecFwk::FormMgrService 1694 return FormMgrAdapter::GetInstance().BatchRefreshForms(formRefreshType); in BatchRefreshForms()
|
H A D | form_task_mgr.cpp | 1248 return FormMgrAdapter::GetInstance().BatchRefreshForms(formRefreshType); in PostBatchRefreshForms()
|
H A D | form_mgr_adapter.cpp | 3787 ErrCode FormMgrAdapter::BatchRefreshForms(const int32_t formRefreshType) in BatchRefreshForms() function in OHOS::AppExecFwk::FormMgrAdapter
|
/foundation/ability/form_fwk/interfaces/inner_api/src/ |
H A D | form_mgr_proxy.cpp | 2299 int32_t FormMgrProxy::BatchRefreshForms(const int32_t formRefreshType) in BatchRefreshForms() function in OHOS::AppExecFwk::FormMgrProxy
|
H A D | form_mgr_stub.cpp | 1580 ErrCode result = BatchRefreshForms(formRefreshType); in HandleBatchRefreshForms()
|
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_adapter_test/ |
H A D | fms_form_mgr_adapter_test2.cpp | 2353 * @tc.desc: test BatchRefreshForms function and the return value is true.
2361 EXPECT_EQ(ERR_OK, formMgrAdapter.BatchRefreshForms(formRefreshType));
in HWTEST_F()
|
/foundation/ability/form_fwk/test/unittest/form_mgr_stub_test/ |
H A D | form_mgr_stub_test.cpp | 2983 EXPECT_CALL(*mockFormMgrService, BatchRefreshForms(_)) in HWTEST_F()
|