Home
last modified time | relevance | path

Searched refs:last (Results 1 – 25 of 32) sorted by relevance

12

/base/startup/init/services/begetctl/
Dmain.c42 const char *last = strrchr(argv[0], '/'); in main() local
44 if (last != NULL) { in main()
45 last = last + 1; in main()
47 last = argv[0]; in main()
53 if ((argc > 1) && (strcmp(last, "begetctl") == 0)) { in main()
/base/hiviewdfx/hicollie/frameworks/native/test/moduletest/common/
Dxcollie_timeout_test.cpp151 …int last = XCollie::GetInstance().SetTimer("TimeoutTimer", 1, nullptr, nullptr, XCOLLIE_FLAG_NOOP); variable
152 ASSERT_EQ(last, INVALID_ID);
165 last = XCollie::GetInstance().SetTimer("TimeoutTimer", 1, nullptr, nullptr, XCOLLIE_FLAG_NOOP);
166 ASSERT_NE(last, INVALID_ID);
167 XCollie::GetInstance().CancelTimer(last);
191 … int last = XCollie::GetInstance().SetTimer("TimeoutTimer", 61, func, nullptr, XCOLLIE_FLAG_NOOP); variable
192 ASSERT_NE(last, INVALID_ID);
/base/telephony/core_service/utils/log/include/
Dtelephony_log_c.h45 const char *last = __builtin_strrchr(path, '/');
46 return (last != NULL) ? (last + 1) : path;
/base/telephony/ril_adapter/utils/native/include/
Dtelephony_log_c.h45 const char *last = __builtin_strrchr(path, '/');
46 return (last != NULL) ? (last + 1) : path;
/base/global/i18n_lite/frameworks/i18n/src/
Dstr_util.cpp158 size_t last = ind; in Parse() local
159 while (last < length) { in Parse()
160 if (str[last] == '_') { in Parse()
163 ++last; in Parse()
165 if (last == ind) { in Parse()
168 return std::string(str + ind, last - ind); in Parse()
/base/security/device_security_level/oem_property/common/
Ddslm_credential_utils.c78 PublicKeyAttestation last; member
134 FREE(list->last.data); in FreeAttestationList()
175 const PublicKeyAttestation *last = &credCb->last; in VerifyCredentialCb() local
195 … ret = EcdsaVerify(&last->publicKey, &last->signature, &intermediate->publicKey, last->algorithm); in VerifyCredentialCb()
203 ret = EcdsaVerify(&payload->payload, &payload->signature, &last->publicKey, TYPE_ECDSA_SHA_384); in VerifyCredentialCb()
205 … ret = EcdsaVerify(&payload->payload, &payload->signature, &last->publicKey, TYPE_ECDSA_SHA_256); in VerifyCredentialCb()
246 FreePublicKeyAttestation(&credCb->last); in DestroyCredentialCb()
429 if (!ParsePublicKeyAttestation(json, PK_ATTEST_INDEX_LAST, &credCb->last)) { in SplitCredentialAttestationList()
458 list->last.data = credCb->last.publicKey.data; in MovePublicKeysToAttestationList()
459 list->last.length = credCb->last.publicKey.length; in MovePublicKeysToAttestationList()
[all …]
Ddslm_credential_utils.h37 PublicKey last; member
/base/update/packaging_tools/
Dblocks_manager.py56 last = -1
63 if last <= start_value <= end_value:
64 last = end_value
71 if last <= int_content:
72 last = int_content + 1
/base/global/i18n/frameworks/intl/src/
Di18n_break_iterator.cpp59 int32_t I18nBreakIterator::last() in last() function in OHOS::Global::I18n::I18nBreakIterator
62 return iter->last(); in last()
/base/hiviewdfx/hievent_lite/frameworks/
Dhiview_event.c38 static uint8 HiEventEncode(uint8 k, int32 v, uint8 last, uint8 *encodeOut);
129 static uint8 HiEventEncode(uint8 k, int32 v, uint8 last, uint8 *encodeOut) in HiEventEncode() argument
136 tag.last = last; in HiEventEncode()
/base/hiviewdfx/hiview_lite/
Dhiview_def.h49 uint8 last : 1; /* Indicates whether the last parameter. */ member
/base/global/i18n/frameworks/intl/include/
Di18n_break_iterator.h33 int32_t last();
/base/global/i18n/frameworks/intl/test/fuzztest/breakiterator_fuzzer/
Dbreakiterator_fuzzer.cpp37 iterator.last(); in DoSomethingInterestingWithMyAPI()
/base/telephony/ril_adapter/services/vendor/include/
Dat_support.h43 Line *last; member
/base/update/updater/services/script/script_instruction/
Dscript_basicinstruction.cpp94 string::size_type last = str.find(subStr); in Execute() local
95 if (last == string::npos) { in Execute()
/base/account/os_account/tools/acm/src/
Daccount_command.cpp1043 size_t last = 0; in AnalyzeConstraintArgument() local
1045 while ((next = constraintsByUser.find(delimiter, last)) != std::string::npos) { in AnalyzeConstraintArgument()
1046 constraint = constraintsByUser.substr(last, next - last); in AnalyzeConstraintArgument()
1050 last = next + 1; in AnalyzeConstraintArgument()
1052 constraint = constraintsByUser.substr(last); in AnalyzeConstraintArgument()
/base/telephony/ril_adapter/services/vendor/src/
Dat_support.c210 if (g_response->last != NULL) { in AddLinkListNode()
211 g_response->last->next = line; in AddLinkListNode()
215 g_response->last = line; in AddLinkListNode()
/base/hiviewdfx/hiview/plugins/faultlogger/service/sanitizer_collector/
Dzip_helper.cpp116 std::sregex_token_iterator first {input.begin(), input.end(), re, -1}, last; in SplitString() local
117 return {first, last}; in SplitString()
/base/security/device_security_level/test/dslm_unit_test/
Ddslm_oem_property_test.cpp804 PublicKey last = {.length = len, .data = dataLast}; variable
807 list.last = last;
817 EXPECT_EQ(0U, list.last.length);
/base/inputmethod/imf/services/include/
Dperuser_session.h67 time_t last {};
/base/startup/init/services/begetctl/shell/
Dshell_bas.c557 int last = 0; in GetRealCmdName() local
560 last = i; in GetRealCmdName()
564 if (last != 0) { in GetRealCmdName()
565 return name + last + 1; in GetRealCmdName()
/base/customization/enterprise_device_management/services/edm/include/
Diplugin_template.h494 DT last; in MergePolicyData() local
496 if (!serializer_->Deserialize(policyData, last)) { in MergePolicyData()
499 data.push_back(last); in MergePolicyData()
/base/request/request/
DREADME.md85 …oad progress. If this API is called multiple times, the callback passed in the last call is used. |
86 …n the result. If this API is called multiple times, the callback passed in the last call is used. |
87 …e error code. If this API is called multiple times, the callback passed in the last call is used. |
136 …oad progress. If this API is called multiple times, the callback passed in the last call is used. |
137 …der response. If this API is called multiple times, the callback passed in the last call is used. |
/base/inputmethod/imf/services/src/
Dperuser_session.cpp479 if (difftime(now, manager[index].last) > IME_RESET_TIME_OUT) { in IsRestartIme()
/base/sensors/sensor/
DREADME.md112 The sensor JS APIs listen for sensor data changes. If an API is called multiple times, the last cal…

12