/base/startup/init/services/begetctl/ |
D | main.c | 42 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/ |
D | xcollie_timeout_test.cpp | 151 …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/ |
D | telephony_log_c.h | 45 const char *last = __builtin_strrchr(path, '/'); 46 return (last != NULL) ? (last + 1) : path;
|
/base/telephony/ril_adapter/utils/native/include/ |
D | telephony_log_c.h | 45 const char *last = __builtin_strrchr(path, '/'); 46 return (last != NULL) ? (last + 1) : path;
|
/base/global/i18n_lite/frameworks/i18n/src/ |
D | str_util.cpp | 158 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/ |
D | dslm_credential_utils.c | 78 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 …]
|
D | dslm_credential_utils.h | 37 PublicKey last; member
|
/base/update/packaging_tools/ |
D | blocks_manager.py | 56 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/ |
D | i18n_break_iterator.cpp | 59 int32_t I18nBreakIterator::last() in last() function in OHOS::Global::I18n::I18nBreakIterator 62 return iter->last(); in last()
|
/base/hiviewdfx/hievent_lite/frameworks/ |
D | hiview_event.c | 38 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/ |
D | hiview_def.h | 49 uint8 last : 1; /* Indicates whether the last parameter. */ member
|
/base/global/i18n/frameworks/intl/include/ |
D | i18n_break_iterator.h | 33 int32_t last();
|
/base/global/i18n/frameworks/intl/test/fuzztest/breakiterator_fuzzer/ |
D | breakiterator_fuzzer.cpp | 37 iterator.last(); in DoSomethingInterestingWithMyAPI()
|
/base/telephony/ril_adapter/services/vendor/include/ |
D | at_support.h | 43 Line *last; member
|
/base/update/updater/services/script/script_instruction/ |
D | script_basicinstruction.cpp | 94 string::size_type last = str.find(subStr); in Execute() local 95 if (last == string::npos) { in Execute()
|
/base/account/os_account/tools/acm/src/ |
D | account_command.cpp | 1043 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/ |
D | at_support.c | 210 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/ |
D | zip_helper.cpp | 116 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/ |
D | dslm_oem_property_test.cpp | 804 PublicKey last = {.length = len, .data = dataLast}; variable 807 list.last = last; 817 EXPECT_EQ(0U, list.last.length);
|
/base/inputmethod/imf/services/include/ |
D | peruser_session.h | 67 time_t last {};
|
/base/startup/init/services/begetctl/shell/ |
D | shell_bas.c | 557 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/ |
D | iplugin_template.h | 494 DT last; in MergePolicyData() local 496 if (!serializer_->Deserialize(policyData, last)) { in MergePolicyData() 499 data.push_back(last); in MergePolicyData()
|
/base/request/request/ |
D | README.md | 85 …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/ |
D | peruser_session.cpp | 479 if (difftime(now, manager[index].last) > IME_RESET_TIME_OUT) { in IsRestartIme()
|
/base/sensors/sensor/ |
D | README.md | 112 The sensor JS APIs listen for sensor data changes. If an API is called multiple times, the last cal…
|