Home
last modified time | relevance | path

Searched refs:step (Results 1 - 25 of 64) sorted by relevance

123

/base/startup/bootstrap_lite/services/source/
H A Dbootstrap_service.h23 #define APP_NAME(name, step) ".zinitcall.app." #name #step ".init"
24 #define MODULE_NAME(name, step) ".zinitcall." #name #step ".init"
26 #define APP_CALL(name, step) \
28 InitCall *initcall = (InitCall *)(APP_BEGIN(name, step)); \
29 InitCall *initend = (InitCall *)(APP_END(name, step)); \
35 #define MODULE_CALL(name, step) \
37 InitCall *initcall = (InitCall *)(MODULE_BEGIN(name, step)); \
38 InitCall *initend = (InitCall *)(MODULE_END(name, step)); \
[all...]
H A Dcore_main.h23 #define SYS_NAME(name, step) ".zinitcall.sys." #name #step ".init"
24 #define MODULE_NAME(name, step) ".zinitcall." #name #step ".init"
26 #define SYS_CALL(name, step) \
28 InitCall *initcall = (InitCall *)(SYS_BEGIN(name, step)); \
29 InitCall *initend = (InitCall *)(SYS_END(name, step)); \
35 #define MODULE_CALL(name, step) \
37 InitCall *initcall = (InitCall *)(MODULE_BEGIN(name, step)); \
38 InitCall *initend = (InitCall *)(MODULE_END(name, step)); \
[all...]
/base/update/updateservice/services/firmware/upgrade/mode/src/
H A Dfirmware_manual_check_mode_empty.cpp23 FirmwareStep FirmwareManualCheckMode::GetNextStep(FirmwareStep step) in GetNextStep() argument
25 FIRMWARE_LOGI("GetNextStep %{public}d", static_cast<uint32_t>(step)); in GetNextStep()
26 return step; in GetNextStep()
H A Dfirmware_install_apply_mode_empty.cpp23 FirmwareStep FirmwareInstallApplyMode::GetNextStep(FirmwareStep step) in GetNextStep() argument
25 FIRMWARE_LOGI("GetNextStep %{public}d", static_cast<uint32_t>(step)); in GetNextStep()
26 return step; in GetNextStep()
H A Dfirmware_download_mode_empty.cpp23 FirmwareStep FirmwareDownloadMode::GetNextStep(FirmwareStep step) in GetNextStep() argument
25 FIRMWARE_LOGI("GetNextStep %{public}d", static_cast<uint32_t>(step)); in GetNextStep()
26 return step; in GetNextStep()
H A Dfirmware_manual_check_mode.cpp34 FirmwareStep FirmwareManualCheckMode::GetNextStep(FirmwareStep step) in GetNextStep() argument
36 FIRMWARE_LOGI("GetNextStep %{public}d", static_cast<uint32_t>(step)); in GetNextStep()
38 switch (step) { in GetNextStep()
H A Dfirmware_install_apply_mode.cpp36 FirmwareStep FirmwareInstallApplyMode::GetNextStep(FirmwareStep step) in GetNextStep() argument
38 FIRMWARE_LOGI("GetNextStep %{public}d", static_cast<uint32_t>(step)); in GetNextStep()
40 switch (step) { in GetNextStep()
H A Dfirmware_download_mode.cpp32 FirmwareStep FirmwareDownloadMode::GetNextStep(FirmwareStep step) in GetNextStep() argument
34 FIRMWARE_LOGI("GetNextStep %{public}d", static_cast<uint32_t>(step)); in GetNextStep()
36 switch (step) { in GetNextStep()
/base/security/device_auth/services/legacy/authenticators/src/account_unrelated/pake_task/pake_v1_task/pake_v1_protocol_task/
H A Dpake_v1_client_protocol_task.c225 uint32_t step = ProtocolMessageIn(in); in Process() local
226 if (step == INVALID_MESSAGE) { in Process()
228 step = 1; in Process()
232 step = step + 1; /* when receive peer message code, need to do next step */ in Process()
233 switch (step) { in Process()
246 LOGE("Process step:%d failed, res: %x.", step, res); in Process()
249 if (step ! in Process()
[all...]
H A Dpake_v1_server_protocol_task.c193 uint32_t step = ProtocolMessageIn(in); in Process() local
194 if (step == INVALID_MESSAGE) { in Process()
199 switch (step) { in Process()
212 LOGE("Process step:%d failed, res: %x.", step, res); in Process()
215 res = ServerProtocolMessageOut(out, params->opCode, step); in Process()
/base/web/webview/ohos_adapter/camera_adapter/src/
H A Dvideo_capture_range_adapter_impl.cpp50 void VideoCaptureRangeAdapterImpl::SetStep(double step) in SetStep() argument
52 step_ = step; in SetStep()
H A Dvideo_capture_range_adapter_mock.cpp48 void VideoCaptureRangeAdapterImpl::SetStep(double step) in SetStep() argument
/base/msdp/device_status/intention/cooperate/plugin/src/
H A Di_cooperate_state.cpp35 void ICooperateState::Switch(std::shared_ptr<ICooperateStep> step) in Switch() argument
37 if (step != nullptr) { in Switch()
38 current_ = step; in Switch()
66 void ICooperateState::ICooperateStep::Switch(std::shared_ptr<ICooperateStep> step) in Switch() argument
68 parent_.Switch(step); in Switch()
/base/security/device_auth/services/legacy/authenticators/src/account_unrelated/iso_task/iso_protocol_task/
H A Diso_client_protocol_task.c244 uint32_t step = ProtocolMessageIn(in); in Process() local
245 if (step == INVALID_MESSAGE) { in Process()
247 step = STEP_ONE; in Process()
251 step = step + 1; /* when receive peer message code, need to do next step */ in Process()
252 switch (step) { in Process()
265 LOGE("Process step:%d failed, res: %x.", step, res); in Process()
268 if (step ! in Process()
[all...]
/base/telephony/core_service/services/sim/include/
H A Dsim_char_decode.h81 uint8_t step = w; in CharCodeToSequence() local
84 const int len = contentLen - (i * step) - flagLen; in CharCodeToSequence()
85 if (snprintf_s(tempChar + flagLen + (i * step), len - 1, len - 1, in CharCodeToSequence()
86 (step == CHAR16_LENGTH) ? "%04X" : "%02X", value) < 0) { in CharCodeToSequence()
/base/security/device_auth/services/legacy/authenticators/inc/account_unrelated/
H A Ddas_task_common.h40 int ClientProtocolMessageOut(CJson *out, int opCode, uint32_t step);
41 int ServerProtocolMessageOut(CJson *out, int opCode, uint32_t step);
/base/security/device_auth/services/legacy/authenticators/src/account_unrelated/common/
H A Ddas_task_common.c115 int ClientProtocolMessageOut(CJson *out, int opCode, uint32_t step) in ClientProtocolMessageOut() argument
126 res = AddIntToJson(sendToPeer, FIELD_MESSAGE, step); in ClientProtocolMessageOut()
130 step = step | MESSAGE_PREFIX; in ClientProtocolMessageOut()
131 res = AddIntToJson(sendToPeer, FIELD_MESSAGE, step); in ClientProtocolMessageOut()
140 int ServerProtocolMessageOut(CJson *out, int opCode, uint32_t step) in ServerProtocolMessageOut() argument
151 step = step | MESSAGE_RETURN; in ServerProtocolMessageOut()
152 res = AddIntToJson(sendToPeer, FIELD_MESSAGE, step); in ServerProtocolMessageOut()
156 step in ServerProtocolMessageOut()
[all...]
/base/update/updater/services/applypatch/
H A Dupdate_progress.cpp31 void SetUpdateProgress(float step) in SetUpdateProgress() argument
34 totalProgress += step; in SetUpdateProgress()
/base/msdp/device_status/tools/vdev/src/
H A Dvirtual_mouse.cpp175 double step = FAST_STEP; in Move() local
180 step = total / HALF_VALUE; in Move()
182 step = total; in Move()
185 step = FAST_STEP; in Move()
187 double tx = round(step * static_cast<double>(dx) / delta); in Move()
188 double ty = round(step * static_cast<double>(dy) / delta); in Move()
200 total -= step; in Move()
/base/telephony/sms_mms/services/sms/gsm/
H A Dgsm_sms_tpdu_codec.cpp151 uint8_t step = SLIDE_DATA_STEP; in DebugTpdu() local
154 if (sizeof(tpduTmp) <= (i * step)) { in DebugTpdu()
158 const uint16_t len = sizeof(tpduTmp) - (i * step); in DebugTpdu()
163 if (snprintf_s(tpduTmp + (i * step), len - 1, len - 1, "%02X", oneByte) < 0) { in DebugTpdu()
/base/sensors/sensor/vibration_convert/core/algorithm/frequency_estimation/src/
H A Dfrequency_estimation.cpp80 size_t step = static_cast<size_t>(frmLength - hopLength); in GetZeroCrossingRate() local
81 size_t frameNum = ceil(dataSize / step); in GetZeroCrossingRate()
86 int32_t beginIndex = i * step; in GetZeroCrossingRate()
/base/update/updater/services/include/applypatch/
H A Dupdate_progress.h21 void SetUpdateProgress(float step);
/base/security/device_auth/services/key_agree_sdk/src/
H A Dkey_agree_session.c503 res = AddIntToJson(payload, FIELD_SDK_STEP, spekeSession->step); in PackageMsgForPakeResponse()
505 LOGE("Add step failed, res: %d.", res); in PackageMsgForPakeResponse()
668 static int32_t ProcessStep(ProtocolStep step, SpekeSession *spekeSession, CJson *inParams, KeyAgreeBlob *out) in ProcessStep() argument
671 LOGI("In key agree step: %d.", step); in ProcessStep()
672 switch (step) { in ProcessStep()
698 LOGI("Unkonw step, may key agree is finish!"); in ProcessStep()
713 int32_t step = 0; in ProcessSpekeSession() local
714 if (spekeSession->step == STEP_INIT) { in ProcessSpekeSession()
716 spekeSession->step in ProcessSpekeSession()
[all...]
/base/web/webview/ohos_adapter/camera_adapter/include/
H A Dvideo_capture_range_adapter_impl.h39 void SetStep(double step);
/base/telephony/core_service/utils/vcard/src/
H A Dvcard_manager.cpp220 std::vector<std::shared_ptr<VCardContact>> list, size_t step) in SplitContactsVector()
223 if (step >= list.size()) { in SplitContactsVector()
230 end = static_cast<size_t>(endPtr - curPtr) > step ? (step + curPtr) : endPtr; in SplitContactsVector()
231 step = static_cast<size_t>(endPtr - curPtr) > step ? step : static_cast<size_t>(endPtr - curPtr); in SplitContactsVector()
233 curPtr += step; in SplitContactsVector()
219 SplitContactsVector( std::vector<std::shared_ptr<VCardContact>> list, size_t step) SplitContactsVector() argument

Completed in 9 milliseconds

123