/base/update/updateservice/services/firmware/upgrade/executor/include/ |
H A D | firmware_install_executor.h | 38 void HandleInstallProgress(const FirmwareComponent &component, const Progress &progress);
|
/base/request/request/frameworks/cj/ffi/include/ |
H A D | cj_request_ffi.h | 128 CProgress progress; member 200 FFI_EXPORT RetError FfiOHOSRequestTaskProgressOn(char *event, const char *taskId, void (*callback)(CProgress progress));
|
/base/update/updateservice/services/firmware/data/db/include/ |
H A D | firmware_component.h | 57 int32_t progress = 0; member 84 .append("progress=").append(std::to_string(progress)); in ToString()
|
H A D | firmware_task.h | 31 int32_t progress = 0; member 57 .append("progress=").append(std::to_string(progress)).append(",") in ToString()
|
H A D | firmware_component_operator.h | 47 bool UpdateProgressByUrl(const std::string &url, UpgradeStatus status, int32_t progress);
|
H A D | firmware_task_operator.h | 49 bool UpdateProgressByTaskId(const std::string &taskId, UpgradeStatus status, int32_t progress);
|
/base/update/updateservice/services/firmware/data/db/src/ |
H A D | firmware_task_operator.cpp | 41 bool FirmwareTaskOperator::UpdateProgressByTaskId(const std::string &taskId, UpgradeStatus status, int32_t progress) in UpdateProgressByTaskId() argument 45 values.PutInt(COLUMN_TASK_PROGRESS, progress); in UpdateProgressByTaskId()
|
H A D | firmware_task_operator_empty.cpp | 41 bool FirmwareTaskOperator::UpdateProgressByTaskId(const std::string &taskId, UpgradeStatus status, int32_t progress) in UpdateProgressByTaskId() argument
|
H A D | firmware_task_table.cpp | 65 GetColumnValue(resultSet, COLUMN_TASK_PROGRESS, value.progress); in ParseDbValue() 99 PutColumnValue(dbValue, COLUMN_TASK_PROGRESS, value.progress); in BuildDbValue()
|
H A D | firmware_component_table.cpp | 89 GetColumnValue(resultSet, COLUMN_COMPONENT_PROGRESS, value.progress); in ParseDbValue() 115 PutColumnValue(dbValue, COLUMN_COMPONENT_PROGRESS, value.progress); in BuildDbValue()
|
/base/update/updateservice/frameworks/js/napi/update/include/ |
H A D | update_client.h | 23 #include "progress.h" 67 void NotifyDownloadProgress(const BusinessError &businessError, const Progress &progress); 68 void NotifyUpgradeProgresss(const BusinessError &businessError, const Progress &progress);
|
/base/update/updateservice/services/firmware/upgrade/mode/include/ |
H A D | firmware_iexecute_mode.h | 25 #include "progress.h" 43 virtual void SetDownloadProgress(const Progress &progress) {}; in SetDownloadProgress() argument
|
H A D | firmware_download_mode.h | 28 #include "progress.h" 42 void SetDownloadProgress(const Progress &progress) final;
|
/base/request/request/frameworks/native/src/ |
H A D | response_message_receiver.cpp | 320 if (StateFromParcel(notifyData->progress.state, parcel, size) != 0) { in NotifyDataFromParcel() 324 if (Uint32FromParcel(notifyData->progress.index, parcel, size) != 0) { in NotifyDataFromParcel() 328 if (Uint64FromParcel(notifyData->progress.processed, parcel, size) != 0) { in NotifyDataFromParcel() 332 if (Uint64FromParcel(notifyData->progress.totalProcessed, parcel, size) != 0) { in NotifyDataFromParcel() 336 if (VecInt64FromParcel(notifyData->progress.sizes, parcel, size) != 0) { in NotifyDataFromParcel() 340 if (ProgressExtrasFromParcel(notifyData->progress.extras, parcel, size) != 0) { in NotifyDataFromParcel()
|
/base/notification/distributed_notification_service/frameworks/js/napi/src/ |
H A D | common_convert_liveview.cpp | 81 // progress: NotificationProgress in SetNotificationLocalLiveViewContent() 83 napi_value progress = nullptr; in SetNotificationLocalLiveViewContent() local 84 napi_create_object(env, &progress); in SetNotificationLocalLiveViewContent() 85 if (!SetProgress(env, localLiveViewContent->GetProgress(), progress)) { in SetNotificationLocalLiveViewContent() 89 napi_set_named_property(env, result, "progress", progress); in SetNotificationLocalLiveViewContent() 142 napi_value Common::SetProgress(const napi_env &env, const NotificationProgress &progress, napi_value &result) in SetProgress() argument 148 napi_create_int32(env, progress.GetCurrentValue(), &value); in SetProgress() 152 napi_create_int32(env, progress.GetMaxValue(), &value); in SetProgress() 156 napi_get_boolean(env, progress in SetProgress() 690 NotificationProgress progress; GetNotificationLocalLiveViewProgress() local [all...] |
/base/request/request/frameworks/cj/ffi/src/ |
H A D | cj_request_ffi.cpp | 31 RetError FfiOHOSRequestTaskProgressOn(char *event, const char *taskId, void (*callback)(CProgress progress)) in FfiOHOSRequestTaskProgressOn() argument
|
H A D | cj_listener_list.cpp | 66 it->second->cb_(Convert2CProgress(notifyData->progress)); in OnMessageReceive()
|
/base/print/print_fwk/frameworks/ohscan/include/ |
H A D | ohscan.h | 32 * obtain the page scanning progress and set scanned image parameters, and so on. 108 * @brief Indicates the progress of scanning a picture by the scanner. 113 /** Picture progress from 0 to 100. */ 114 int32_t progress; member 285 * @brief This API can get the progress of the scanner scanning the picture.A non-null value must be passed in, 286 * and the scan progress will be written to the structure to which the pointer points. 289 * @param scannerId The id for querying the image scanning progress of the scanner. 291 * @return {@link Scan_ERROR_NONE} Indicates the scanner has successfully queried the progress of the scanned image.
|
/base/notification/distributed_notification_service/interfaces/inner_api/ |
H A D | notification_local_live_view_content.h | 85 * @brief Sets the progress to be included in a local live view notification. 87 * @param progress Indicates the type to be included. 89 void SetProgress(NotificationProgress progress); 92 * @brief Get the progress of a local live view notification.
|
/base/update/updateservice/services/firmware/upgrade/install/include/ |
H A D | firmware_install.h | 25 #include "progress.h" 32 Progress progress; member
|
/base/update/updateservice/interfaces/inner_api/feature/update/model/task/src/ |
H A D | task_body.cpp | 61 jsonBuilder.Append("progress", progress); in GetJsonBuilder()
|
/base/update/updateservice/services/firmware/upgrade/mode/src/ |
H A D | firmware_download_mode.cpp | 188 void FirmwareDownloadMode::SetDownloadProgress(const Progress &progress) in SetDownloadProgress() argument 190 downloadDataProcessor_.SetDownloadProgress(progress); in SetDownloadProgress()
|
/base/request/request/frameworks/js/napi/include/ |
H A D | js_common.h | 203 Progress progress;
member 222 Progress progress;
member 239 Progress progress;
member
|
/base/update/updater/test/unittest/script/script_instruction/ |
H A D | script_updateprocesser_unittest.cpp | 93 constexpr float progress = 1.0f; in TestUpdateProcesserSetProcess() local 94 context.AddInputParam(std::make_shared<FloatValue>(progress)); in TestUpdateProcesserSetProcess() 100 ss << "set_progress " << progress; in TestUpdateProcesserSetProcess() local
|
/base/hiviewdfx/hidumper/services/native/include/ |
H A D | raw_param.h | 44 void UpdateProgress(uint64_t progress);
|