/base/startup/bootstrap_lite/services/source/ |
D | bootstrap_service.h | 23 #define APP_NAME(name, step) ".zinitcall.app." #name #step ".init" argument 24 #define MODULE_NAME(name, step) ".zinitcall." #name #step ".init" argument 26 #define APP_CALL(name, step) \ argument 28 InitCall *initcall = (InitCall *)(APP_BEGIN(name, step)); \ 29 InitCall *initend = (InitCall *)(APP_END(name, step)); \ 35 #define MODULE_CALL(name, step) \ argument 37 InitCall *initcall = (InitCall *)(MODULE_BEGIN(name, step)); \ 38 InitCall *initend = (InitCall *)(MODULE_END(name, step)); \ 45 #define APP_BEGIN(name, step) \ argument 51 #define APP_END(name, step) \ argument [all …]
|
D | core_main.h | 23 #define SYS_NAME(name, step) ".zinitcall.sys." #name #step ".init" argument 24 #define MODULE_NAME(name, step) ".zinitcall." #name #step ".init" argument 26 #define SYS_CALL(name, step) \ argument 28 InitCall *initcall = (InitCall *)(SYS_BEGIN(name, step)); \ 29 InitCall *initend = (InitCall *)(SYS_END(name, step)); \ 35 #define MODULE_CALL(name, step) \ argument 37 InitCall *initcall = (InitCall *)(MODULE_BEGIN(name, step)); \ 38 InitCall *initend = (InitCall *)(MODULE_END(name, step)); \ 46 #define SYS_BEGIN(name, step) \ argument 52 #define SYS_END(name, step) \ argument [all …]
|
/base/msdp/device_status/intention/cooperate/plugin/src/ |
D | i_cooperate_state.cpp | 27 void ICooperateState::Switch(std::shared_ptr<ICooperateStep> step) in Switch() argument 29 if (step != nullptr) { in Switch() 30 current_ = step; in Switch() 44 void ICooperateState::ICooperateStep::Switch(std::shared_ptr<ICooperateStep> step) in Switch() argument 46 parent_.Switch(step); in Switch()
|
/base/update/updater/services/script/script_interpreter/ |
D | script_lex.l | 48 loc.step(); 52 loc.step(); // 注释 56 loc.step(); // 注释 65 loc.step(); 69 loc.step();
|
/base/security/device_auth/services/legacy/authenticators/src/account_unrelated/pake_task/pake_v1_task/pake_v1_protocol_task/ |
D | pake_v1_client_protocol_task.c | 216 uint32_t step = ProtocolMessageIn(in); in Process() local 217 if (step == INVALID_MESSAGE) { in Process() 219 step = 1; in Process() 223 step = step + 1; /* when receive peer message code, need to do next step */ in Process() 224 switch (step) { in Process() 237 LOGE("Process step:%d failed, res: %x.", step, res); in Process() 240 if (step != STEP_THREE) { in Process() 241 res = ClientProtocolMessageOut(out, params->opCode, step); in Process()
|
D | pake_v1_server_protocol_task.c | 184 uint32_t step = ProtocolMessageIn(in); in Process() local 185 if (step == INVALID_MESSAGE) { in Process() 190 switch (step) { in Process() 203 LOGE("Process step:%d failed, res: %x.", step, res); in Process() 206 res = ServerProtocolMessageOut(out, params->opCode, step); in Process()
|
/base/global/i18n_lite/tools/i18n-dat-tool/src/main/java/resource/ |
D | measure_format_patterns.txt | 1 …step|jump|ft|km|lap|in|cm|stroke|mi|yd", "%s %s", "#", "", "", "", "", "", "", "", "", "", "", "",… 2 zh-Hans "16", "h|min|kcal|time|bpm|m|step|jump|ft|km|lap|in|cm|stroke|mi|yd", "%s %s", "#", "", "",…
|
/base/security/device_auth/services/legacy/authenticators/src/account_unrelated/ |
D | das_task_common.c | 100 int ClientProtocolMessageOut(CJson *out, int opCode, uint32_t step) in ClientProtocolMessageOut() argument 111 res = AddIntToJson(sendToPeer, FIELD_MESSAGE, step); in ClientProtocolMessageOut() 115 step = step | MESSAGE_PREFIX; in ClientProtocolMessageOut() 116 res = AddIntToJson(sendToPeer, FIELD_MESSAGE, step); in ClientProtocolMessageOut() 125 int ServerProtocolMessageOut(CJson *out, int opCode, uint32_t step) in ServerProtocolMessageOut() argument 136 step = step | MESSAGE_RETURN; in ServerProtocolMessageOut() 137 res = AddIntToJson(sendToPeer, FIELD_MESSAGE, step); in ServerProtocolMessageOut() 141 step = step | MESSAGE_RETURN; in ServerProtocolMessageOut() 142 step = step | MESSAGE_PREFIX; in ServerProtocolMessageOut() 143 res = AddIntToJson(sendToPeer, FIELD_MESSAGE, step); in ServerProtocolMessageOut()
|
/base/telephony/core_service/services/sim/include/ |
D | sim_char_decode.h | 81 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/src/account_unrelated/iso_task/iso_protocol_task/ |
D | iso_client_protocol_task.c | 244 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 != STEP_THREE) { in Process() 269 res = ClientProtocolMessageOut(out, params->opCode, step); in Process()
|
D | iso_server_protocol_task.c | 214 uint32_t step = ProtocolMessageIn(in); in Process() local 215 if (step == INVALID_MESSAGE) { in Process() 219 switch (step) { in Process() 232 LOGE("Process step:%d failed, res: %x.", step, res); in Process() 235 res = ServerProtocolMessageOut(out, params->opCode, step); in Process()
|
/base/update/updateservice/services/firmware/upgrade/mode/src/ |
D | firmware_manual_check_mode.cpp | 33 FirmwareStep FirmwareManualCheckMode::GetNextStep(FirmwareStep step) in GetNextStep() argument 35 FIRMWARE_LOGI("GetNextStep %{public}d", static_cast<uint32_t>(step)); in GetNextStep() 37 switch (step) { in GetNextStep()
|
D | firmware_install_apply_mode.cpp | 37 FirmwareStep FirmwareInstallApplyMode::GetNextStep(FirmwareStep step) in GetNextStep() argument 39 FIRMWARE_LOGI("GetNextStep %{public}d", static_cast<uint32_t>(step)); in GetNextStep() 41 switch (step) { in GetNextStep()
|
D | firmware_download_mode.cpp | 33 FirmwareStep FirmwareDownloadMode::GetNextStep(FirmwareStep step) in GetNextStep() argument 35 FIRMWARE_LOGI("GetNextStep %{public}d", static_cast<uint32_t>(step)); in GetNextStep() 37 switch (step) { in GetNextStep()
|
/base/msdp/device_status/tools/vdev/src/ |
D | virtual_mouse.cpp | 173 double step = FAST_STEP; in Move() local 178 step = total / HALF_VALUE; in Move() 180 step = total; in Move() 183 step = FAST_STEP; in Move() 185 double tx = round(step * static_cast<double>(dx) / delta); in Move() 186 double ty = round(step * static_cast<double>(dy) / delta); in Move() 198 total -= step; in Move()
|
D | virtual_touchscreen.cpp | 171 double step { STEP_LENGTH }; in Move() local 173 step = total / HALF_VALUE; in Move() 175 …slots_[slot].coord.x += static_cast<int32_t>(round(step * (tcoord.x - slots_[slot].coord.x) / tota… in Move() 176 …slots_[slot].coord.y += static_cast<int32_t>(round(step * (tcoord.y - slots_[slot].coord.y) / tota… in Move()
|
/base/security/device_auth/services/legacy/authenticators/inc/account_unrelated/ |
D | das_task_common.h | 40 int ClientProtocolMessageOut(CJson *out, int opCode, uint32_t step); 41 int ServerProtocolMessageOut(CJson *out, int opCode, uint32_t step);
|
/base/telephony/sms_mms/services/sms/gsm/ |
D | gsm_sms_tpdu_codec.cpp | 152 uint8_t step = SLIDE_DATA_STEP; in DebugTpdu() local 155 if (sizeof(tpduTmp) <= (i * step)) { in DebugTpdu() 159 const uint16_t len = sizeof(tpduTmp) - (i * step); in DebugTpdu() 164 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/ |
D | frequency_estimation.cpp | 80 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/applypatch/ |
D | update_progress.cpp | 31 void SetUpdateProgress(float step) in SetUpdateProgress() argument 34 totalProgress += step; in SetUpdateProgress()
|
/base/msdp/device_status/intention/cooperate/plugin/include/ |
D | i_cooperate_state.h | 50 void Switch(std::shared_ptr<ICooperateStep> step); 59 void Switch(std::shared_ptr<ICooperateStep> step);
|
/base/telephony/core_service/utils/vcard/src/ |
D | vcard_manager.cpp | 220 std::vector<std::shared_ptr<VCardContact>> list, size_t step) in SplitContactsVector() argument 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()
|
/base/security/device_auth/services/key_agree_sdk/src/ |
D | key_agree_session.c | 503 res = AddIntToJson(payload, FIELD_SDK_STEP, spekeSession->step); in PackageMsgForPakeResponse() 668 static int32_t ProcessStep(ProtocolStep step, SpekeSession *spekeSession, CJson *inParams, KeyAgree… in ProcessStep() argument 671 LOGI("In key agree step: %d.", step); in ProcessStep() 672 switch (step) { in ProcessStep() 713 int32_t step = 0; in ProcessSpekeSession() local 714 if (spekeSession->step == STEP_INIT) { in ProcessSpekeSession() 716 spekeSession->step = STEP_ONE; in ProcessSpekeSession() 727 if (GetIntFromJson(inParams, FIELD_SDK_STEP, &step) != HC_SUCCESS) { in ProcessSpekeSession() 729 spekeSession->step = STEP_ONE; in ProcessSpekeSession() 731 spekeSession->step = step + 1; in ProcessSpekeSession() [all …]
|
/base/security/asset/services/db_operator/src/ |
D | table.rs | 157 let ret = stmt.step()?; in exist() 218 stmt.step()?; in insert_row() 238 stmt.step()?; in delete_row() 267 stmt.step()?; in update_row() 302 while stmt.step()? == SQLITE_ROW { in query_row() 336 stmt.step()?; in count_datas()
|
/base/update/updater/services/include/applypatch/ |
D | update_progress.h | 21 void SetUpdateProgress(float step);
|