Home
last modified time | relevance | path

Searched refs:PublishFormErrorCode (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/reference/apis-form-kit/
H A Djs-apis-app-form-formInfo-sys.md121 | code | [PublishFormErrorCode](#publishformerrorcode) | 是 | 否 | 发布卡片加桌错误码。 |
124 ## PublishFormErrorCode section
H A Djs-apis-app-form-formHost-sys.md2822 let res: formInfo.PublishFormResult = {code: formInfo.PublishFormErrorCode.SUCCESS, message: ''};
/ohos5.0/foundation/ability/form_fwk/frameworks/js/napi/form_info/
H A Djs_form_info.cpp185 … objValue, "SUCCESS", CreateJsValue(engine, AppExecFwk::Constants::PublishFormErrorCode::SUCCESS)); in CreateJsPublishFormErrorCode()
187 …bjValue, "NO_SPACE", CreateJsValue(engine, AppExecFwk::Constants::PublishFormErrorCode::NO_SPACE)); in CreateJsPublishFormErrorCode()
189 CreateJsValue(engine, AppExecFwk::Constants::PublishFormErrorCode::PARAM_ERROR)); in CreateJsPublishFormErrorCode()
191 CreateJsValue(engine, AppExecFwk::Constants::PublishFormErrorCode::INTERNAL_ERROR)); in CreateJsPublishFormErrorCode()
/ohos5.0/foundation/ability/form_fwk/interfaces/inner_api/include/
H A Dform_constants.h258 enum class PublishFormErrorCode : int8_t { enum
266 PublishFormErrorCode code;
/ohos5.0/docs/en/application-dev/reference/apis-form-kit/
H A Djs-apis-app-form-formInfo-sys.md120 | code | [PublishFormErrorCode](#publishformerrorcode) | Yes | No | Result code of the operati…
123 ## PublishFormErrorCode section
H A Djs-apis-app-form-formHost-sys.md2819 let res: formInfo.PublishFormResult = {code: formInfo.PublishFormErrorCode.SUCCESS, message: ''};
/ohos5.0/foundation/ability/form_fwk/frameworks/js/napi/form_host/
H A Djs_form_host.cpp522 if (formErrorCode < static_cast<int32_t>(Constants::PublishFormErrorCode::SUCCESS) || in ParseParameter()
523 … formErrorCode > static_cast<int32_t>(Constants::PublishFormErrorCode::INTERNAL_ERROR)) { in ParseParameter()
1796 … publishFormResult.code = static_cast<AppExecFwk::Constants::PublishFormErrorCode>(formErrorCode); in OnSetPublishFormResult()
/ohos5.0/foundation/ability/form_fwk/test/unittest/form_mgr_proxy_test/
H A Dform_mgr_proxy_test.cpp846 Constants::PublishFormResult result {Constants::PublishFormErrorCode::SUCCESS, ""};
/ohos5.0/foundation/ability/form_fwk/test/unittest/fms_form_mgr_service_test/
H A Dfms_form_mgr_service_test2.cpp999 Constants::PublishFormResult result {Constants::PublishFormErrorCode::SUCCESS, ""};
/ohos5.0/foundation/ability/form_fwk/test/unittest/form_mgr_test/
H A Dform_mgr_test.cpp2724 Constants::PublishFormResult result {Constants::PublishFormErrorCode::SUCCESS, ""};
2994 Constants::PublishFormResult errorCodeInfo{Constants::PublishFormErrorCode::SUCCESS, ""};
3588 Constants::PublishFormResult errorCodeInfo{Constants::PublishFormErrorCode::SUCCESS, ""};
/ohos5.0/foundation/ability/form_fwk/interfaces/inner_api/src/
H A Dform_mgr_stub.cpp456 errorCodeInfo.code = (Constants::PublishFormErrorCode)(err) ; in HandleSetPublishFormResult()
/ohos5.0/foundation/ability/form_fwk/test/unittest/fms_form_mgr_adapter_test/
H A Dfms_form_mgr_adapter_test2.cpp2117 Constants::PublishFormResult result {Constants::PublishFormErrorCode::SUCCESS, ""};
/ohos5.0/foundation/ability/form_fwk/services/src/
H A Dform_mgr_adapter.cpp2300 if (errorCodeInfo.code == Constants::PublishFormErrorCode::SUCCESS) { in SetPublishFormResult()