Searched refs:contentLen (Results 1 – 6 of 6) sorted by relevance
/base/telephony/core_service/services/sim/include/ |
D | sim_char_decode.h | 62 int contentLen = sizeof(tempChar); in CharCodeToSequence() local 65 if (memset_s(tempChar, contentLen, 0x00, contentLen) != EOK) { in CharCodeToSequence() 71 if (strcat_s(tempChar, contentLen, flag) != EOK) { in CharCodeToSequence() 84 const int len = contentLen - (i * step) - flagLen; in CharCodeToSequence()
|
/base/update/updater/services/package/pkg_verify/ |
D | openssl_util.cpp | 28 int contentLen = X509_NAME_get_text_by_NID(name, nId, nullptr, 0); in GetTextContentFromX509Name() local 29 if (contentLen <= 0) { in GetTextContentFromX509Name() 33 std::unique_ptr<char[]> textBuffer = std::make_unique<char[]>(contentLen + 1); in GetTextContentFromX509Name() 38 if (X509_NAME_get_text_by_NID(name, nId, textBuffer.get(), contentLen + 1) != contentLen) { in GetTextContentFromX509Name()
|
/base/hiviewdfx/hilog/services/hilogd/ |
D | log_buffer.cpp | 373 size_t contentLen = tag.length() + 1 + msg.length() + 1; in GenerateHilogMsgInside() local 374 hilogMsg.len = static_cast<uint16_t>(sizeof(HilogMsg) + contentLen); in GenerateHilogMsgInside() 376 contentLen = hilogMsg.len - static_cast<uint16_t>(sizeof(HilogMsg)); in GenerateHilogMsgInside() 391 if (memcpy_s(hilogMsg.tag, contentLen, tag.c_str(), hilogMsg.tag_len) != 0) { in GenerateHilogMsgInside() 394 …if (memcpy_s(hilogMsg.tag + hilogMsg.tag_len, contentLen - hilogMsg.tag_len, msg.c_str(), msg.leng… in GenerateHilogMsgInside()
|
/base/startup/init/services/param/trigger/ |
D | trigger_processor.c | 147 static void SendTriggerEvent(int type, const char *content, uint32_t contentLen) in SendTriggerEvent() argument 151 ParamEventSend(g_triggerWorkSpace.eventHandle, (uint64_t)type, content, contentLen); in SendTriggerEvent() 169 void PostTrigger(EventType type, const char *content, uint32_t contentLen) in PostTrigger() argument 171 PARAM_CHECK(content != NULL && contentLen > 0, return, "Invalid param"); in PostTrigger() 172 SendTriggerEvent(type, content, contentLen); in PostTrigger()
|
/base/startup/init/services/include/param/ |
D | init_param.h | 117 void PostTrigger(EventType type, const char *content, uint32_t contentLen);
|
/base/security/appverify/interfaces/innerkits/appverify_lite/src/ |
D | app_verify.c | 487 static int VerifyProfileSignGetRaw(const char *buf, int len, char **profileContent, int *contentLen) in VerifyProfileSignGetRaw() argument 540 *contentLen = (int)inputLen; in VerifyProfileSignGetRaw()
|