/ohos5.0/foundation/ability/form_fwk/test/unittest/fms_form_mgr_service_test/ |
H A D | fms_form_mgr_service_test2.cpp | 1057 int32_t formRefreshType = Constants::REFRESH_ALL_FORM; variable 1058 EXPECT_EQ(ERR_OK, formMgrService.BatchRefreshForms(formRefreshType)); 1074 int32_t formRefreshType = Constants::REFRESH_ALL_FORM; variable 1075 …ECT_EQ(ERR_APPEXECFWK_FORM_PERMISSION_DENY_SYS, formMgrService.BatchRefreshForms(formRefreshType));
|
/ohos5.0/foundation/ability/form_fwk/interfaces/kits/native/src/ |
H A D | form_mgr.cpp | 1808 int32_t FormMgr::BatchRefreshForms(const int32_t formRefreshType) in BatchRefreshForms() argument 1816 …if (formRefreshType < Constants::REFRESH_ALL_FORM || formRefreshType > Constants::REFRESH_ATOMIC_F… in BatchRefreshForms() 1817 … HILOG_ERROR("BatchRefreshForms failed, invalid formRefreshType %{public}d", formRefreshType); in BatchRefreshForms() 1831 return remoteProxy_->BatchRefreshForms(formRefreshType); in BatchRefreshForms()
|
/ohos5.0/foundation/ability/form_fwk/interfaces/kits/native/include/ |
H A D | form_mgr.h | 653 int32_t BatchRefreshForms(const int32_t formRefreshType);
|
/ohos5.0/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));
|
/ohos5.0/foundation/ability/form_fwk/test/unittest/form_mgr_proxy_test/ |
H A D | form_mgr_proxy_test.cpp | 870 int32_t formRefreshType = Constants::REFRESH_ALL_FORM; variable 871 EXPECT_EQ(formMgrProxy->BatchRefreshForms(formRefreshType), ERR_OK);
|
/ohos5.0/foundation/ability/form_fwk/test/unittest/form_mgr_test/ |
H A D | form_mgr_test.cpp | 2752 int32_t formRefreshType = Constants::REFRESH_ALL_FORM; variable 2753 …EXPECT_EQ(FormMgr::GetInstance().BatchRefreshForms(formRefreshType), ERR_APPEXECFWK_FORM_SERVER_ST… 2765 int32_t formRefreshType = Constants::REFRESH_ALL_FORM - 1; variable 2766 …EXPECT_EQ(FormMgr::GetInstance().BatchRefreshForms(formRefreshType), ERR_APPEXECFWK_FORM_INVALID_P… 2767 formRefreshType = Constants::REFRESH_ATOMIC_FORM + 1; 2768 …EXPECT_EQ(FormMgr::GetInstance().BatchRefreshForms(formRefreshType), ERR_APPEXECFWK_FORM_INVALID_P… 2784 int32_t formRefreshType = Constants::REFRESH_ALL_FORM; variable 2785 EXPECT_EQ(FormMgr::GetInstance().BatchRefreshForms(formRefreshType), ERR_OK); 4427 int32_t formRefreshType = Constants::REFRESH_ALL_FORM; variable 4428 …EXPECT_EQ(FormMgr::GetInstance().BatchRefreshForms(formRefreshType), ERR_APPEXECFWK_FORM_COMMON_CO…
|
/ohos5.0/foundation/ability/form_fwk/services/src/ |
H A D | form_task_mgr.cpp | 1346 void FormTaskMgr::PostBatchRefreshForms(const int32_t formRefreshType) in PostBatchRefreshForms() argument 1354 auto batchRefreshForms = [formRefreshType]() { in PostBatchRefreshForms() 1355 return FormMgrAdapter::GetInstance().BatchRefreshForms(formRefreshType); in PostBatchRefreshForms()
|
H A D | form_data_mgr.cpp | 2529 ErrCode FormDataMgr::GetRecordsByFormType(const int32_t formRefreshType, in GetRecordsByFormType() argument 2532 HILOG_INFO("formRefreshType:%{public}d", formRefreshType); in GetRecordsByFormType() 2543 if (formRefreshType == Constants::REFRESH_APP_FORM) { in GetRecordsByFormType() 2547 } else if (formRefreshType == Constants::REFRESH_ATOMIC_FORM) { in GetRecordsByFormType() 2551 } else if (formRefreshType == Constants::REFRESH_SYSTEMAPP_FORM) { in GetRecordsByFormType()
|
H A D | form_mgr_service.cpp | 1691 ErrCode FormMgrService::BatchRefreshForms(const int32_t formRefreshType) in BatchRefreshForms() argument 1699 return FormMgrAdapter::GetInstance().BatchRefreshForms(formRefreshType); in BatchRefreshForms()
|
H A D | form_mgr_adapter.cpp | 3850 ErrCode FormMgrAdapter::BatchRefreshForms(const int32_t formRefreshType) in BatchRefreshForms() argument 3854 …FormDataMgr::GetInstance().GetRecordsByFormType(formRefreshType, visibleFormRecords, invisibleForm… in BatchRefreshForms()
|
/ohos5.0/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() argument
|
H A D | form_mgr_proxy.h | 591 int32_t BatchRefreshForms(const int32_t formRefreshType) override;
|
/ohos5.0/foundation/ability/form_fwk/services/include/ |
H A D | form_task_mgr.h | 305 void PostBatchRefreshForms(const int32_t formRefreshType);
|
H A D | form_data_mgr.h | 724 ErrCode GetRecordsByFormType(const int32_t formRefreshType,
|
H A D | form_mgr_service.h | 627 ErrCode BatchRefreshForms(const int32_t formRefreshType) override;
|
H A D | form_mgr_adapter.h | 625 ErrCode BatchRefreshForms(const int32_t formRefreshType);
|
/ohos5.0/foundation/ability/form_fwk/test/unittest/fms_form_data_mgr_test/ |
H A D | fms_form_data_mgr_test.cpp | 3359 int32_t formRefreshType = Constants::REFRESH_ALL_FORM; variable 3362 …EXPECT_EQ(ERR_OK, formDataMgr_.GetRecordsByFormType(formRefreshType, visibleFormRecords1, inVisibl… 3366 formRefreshType = Constants::REFRESH_APP_FORM; 3369 …EXPECT_EQ(ERR_OK, formDataMgr_.GetRecordsByFormType(formRefreshType, visibleFormRecords2, inVisibl… 3373 formRefreshType = Constants::REFRESH_ATOMIC_FORM; 3376 …EXPECT_EQ(ERR_OK, formDataMgr_.GetRecordsByFormType(formRefreshType, visibleFormRecords3, inVisibl…
|
/ohos5.0/foundation/ability/form_fwk/interfaces/inner_api/src/ |
H A D | form_mgr_stub.cpp | 1581 int32_t formRefreshType = data.ReadInt32(); in HandleBatchRefreshForms() local 1582 ErrCode result = BatchRefreshForms(formRefreshType); in HandleBatchRefreshForms()
|
H A D | form_mgr_proxy.cpp | 2299 int32_t FormMgrProxy::BatchRefreshForms(const int32_t formRefreshType) in BatchRefreshForms() argument 2306 if (!data.WriteInt32(formRefreshType)) { in BatchRefreshForms()
|
/ohos5.0/foundation/ability/form_fwk/test/unittest/fms_form_mgr_adapter_test/ |
H A D | fms_form_mgr_adapter_test2.cpp | 2253 int32_t formRefreshType = Constants::REFRESH_ALL_FORM; variable 2254 EXPECT_EQ(ERR_OK, formMgrAdapter.BatchRefreshForms(formRefreshType));
|