Home
last modified time | relevance | path

Searched refs:step (Results 1 – 25 of 28) sorted by relevance

12

/base/startup/bootstrap_lite/services/source/
Dbootstrap_service.h23 #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 …]
Dcore_main.h23 #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/update/updater/services/script/script_interpreter/
Dscript_lex.l48 loc.step();
52 loc.step(); // 注释
56 loc.step(); // 注释
65 loc.step();
69 loc.step();
/base/security/device_auth/services/authenticators/src/account_unrelated/pake_task/pake_v1_task/pake_v1_protocol_task/
Dpake_v1_client_protocol_task.c216 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()
Dpake_v1_server_protocol_task.c184 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/
Dmeasure_format_patterns.txt1step|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/telephony/core_service/services/sim/include/
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/authenticators/src/account_unrelated/
Ddas_task_common.c117 int ClientProtocolMessageOut(CJson *out, int opCode, uint32_t step) in ClientProtocolMessageOut() argument
128 res = AddIntToJson(sendToPeer, FIELD_MESSAGE, step); in ClientProtocolMessageOut()
132 step = step | MESSAGE_PREFIX; in ClientProtocolMessageOut()
133 res = AddIntToJson(sendToPeer, FIELD_MESSAGE, step); in ClientProtocolMessageOut()
142 int ServerProtocolMessageOut(CJson *out, int opCode, uint32_t step) in ServerProtocolMessageOut() argument
153 step = step | MESSAGE_RETURN; in ServerProtocolMessageOut()
154 res = AddIntToJson(sendToPeer, FIELD_MESSAGE, step); in ServerProtocolMessageOut()
158 step = step | MESSAGE_RETURN; in ServerProtocolMessageOut()
159 step = step | MESSAGE_PREFIX; in ServerProtocolMessageOut()
160 res = AddIntToJson(sendToPeer, FIELD_MESSAGE, step); in ServerProtocolMessageOut()
/base/security/device_auth/services/authenticators/src/account_unrelated/iso_task/iso_protocol_task/
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 != STEP_THREE) { in Process()
269 res = ClientProtocolMessageOut(out, params->opCode, step); in Process()
Diso_server_protocol_task.c214 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/security/device_auth/services/authenticators/inc/account_unrelated/
Ddas_task_common.h35 int ClientProtocolMessageOut(CJson *out, int opCode, uint32_t step);
36 int ServerProtocolMessageOut(CJson *out, int opCode, uint32_t step);
/base/security/device_auth/services/key_agree_sdk/src/
Dkey_agree_session.c503 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 == NULL)) { 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/device_auth/services/authenticators/src/account_related/auth/pake_v2_auth_task/
Dpake_v2_auth_server_task.c241 int32_t step = 0; in ProcessServerTask() local
242 if (GetIntFromJson(in, FIELD_STEP, &step) != HC_SUCCESS) { in ProcessServerTask()
246 LOGI("ProcessServerTask step: %d", step); in ProcessServerTask()
248 switch (step) { in ProcessServerTask()
262 LOGE("Server ProcessServerTask failed, step: %d.", step); in ProcessServerTask()
Dpake_v2_auth_client_task.c241 int32_t step = 0; // step comes from opposite device in ProcessClientTask() local
242 if (GetIntFromJson(in, FIELD_STEP, &step) != HC_SUCCESS) { in ProcessClientTask()
247 switch (step) { in ProcessClientTask()
264 LOGI("End process client, step = %d", step); in ProcessClientTask()
/base/security/device_auth/services/key_agree_sdk/inc/
Dkey_agree_session.h79 ProtocolStep step; member
/base/update/updater/services/fs_manager/
Ddo_partition.cpp255 int step = 1; in AddPartitions() local
266 p2->partNum = userNum + step; in AddPartitions()
277 step++; in AddPartitions()
/base/web/webview/interfaces/kits/napi/webviewcontroller/
Dwebview_controller.h74 bool AccessStep(int32_t step);
100 ErrCode BackOrForward(int32_t step);
Dwebview_controller.cpp71 bool WebviewController::AccessStep(int32_t step) in AccessStep() argument
76 access = nweb_ptr->CanNavigateBackOrForward(step); in AccessStep()
196 ErrCode WebviewController::BackOrForward(int32_t step) in BackOrForward() argument
203 nweb_ptr->NavigateBackOrForward(step); in BackOrForward()
/base/powermgr/battery_statistics/services/native/src/
Dcpu_time_reader.cpp250 uint32_t step = 2; in ReadPolicy() local
251 for (uint32_t i = 0; i < splitedPolicy.size(); i += step) { in ReadPolicy()
404 int32_t step = 2; in DistributeFreqTime() local
405 uidIncrements.at(i)[j] = increments.at(i)[j] / step; in DistributeFreqTime()
/base/telephony/core_service/services/sim/src/
Dusim_dialling_numbers_service.cpp326 std::unique_ptr<int> step = std::make_unique<int>(NEXT); in NextStep() local
327 SendEvent(msgId, step); in NextStep()
/base/telephony/sms_mms/services/gsm/
Dgsm_sms_tpdu_codec.cpp598 uint8_t step = HEX_BYTE_STEP; in DebugTpdu() local
599 const int len = sizeof(tpduTmp) - (i * step); in DebugTpdu()
600 if (snprintf_s(tpduTmp + (i * step), len - 1, len - 1, "%02X", pTpdu[i]) < 0) { in DebugTpdu()
/base/startup/init/services/modules/seccomp/scripts/
Dgenerate_code_from_policy.py429 step = i - index
431 return step - 1
449 step = self.calculate_step(i)
450 self.bpf_policy.append(BPF_JGE.format(self.syscall_nr_policy_list[i], step, 0))
/base/web/webview/test/unittest/common/
Dnweb_create_window.h120 void NavigateBackOrForward(int step) const override in NavigateBackOrForward() argument
/base/web/webview/ohos_nweb/include/
Dnweb.h195 virtual void NavigateBackOrForward(int step) const = 0;
/base/powermgr/battery_statistics/services/native/test/unittest/src/
Dstats_display_test.cpp440 int32_t step = 3; variable
446 brightness = brightnessBegin + step * i;

12