Home
last modified time | relevance | path

Searched refs:limitLen (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/base/hiviewdfx/hiappevent/test/unittest/common/native/
H A Dhiappevent_app_event_test.cpp112 constexpr size_t limitLen = 32; variable
114 event5.AddParam(std::string(limitLen, 'a'), TEST_INT_VALUE);
117 event6.AddParam(std::string(limitLen + 1, 'a'), TEST_INT_VALUE);
168 constexpr size_t limitLen = 32; variable
169 std::vector<std::string> keys(limitLen + 1);
170 std::vector<std::string> values(limitLen + 1);
172 for (size_t i = 0; i <= limitLen; i++) {
183 for (size_t i = 0; i < limitLen; i++) {
212 constexpr size_t limitLen = 48; variable
242 constexpr size_t limitLen = 32; variable
[all …]
H A Dhiappevent_inner_api_test.cpp563 constexpr size_t limitLen = 256; variable
564 config.name = std::string(limitLen, 'a');
581 constexpr size_t limitLen = 8 * 1024; variable
584 .routeInfo = std::string(limitLen, 'a'),
611 constexpr size_t limitLen = 8 * 1024; variable
614 .appId = std::string(limitLen, 'a'),
700 constexpr size_t limitLen = 256; variable
704 std::string(limitLen, 'a'), "id1"
742 constexpr size_t limitLen = 256; variable
746 std::string(limitLen, 'a'), "id1"
[all …]
H A Dhiappevent_native_test.cpp541 constexpr size_t limitLen = 32; variable
542 … res = OH_HiAppEvent_Write(std::string(limitLen, 'a').c_str(), TEST_EVENT_NAME, SECURITY, nullptr);
544 …res = OH_HiAppEvent_Write(std::string(limitLen + 1, 'a').c_str(), TEST_EVENT_NAME, SECURITY, nullp…
547 std::string invalidDomain = std::string(limitLen - 1, 'a') + "_";
/ohos5.0/commonlibrary/ets_utils/js_util_module/util/
H A Djs_textdecoder.h33 this->limitLen = limLen; in DecodeArr()
37 size_t limitLen = 0; member
H A Djs_textdecoder.cpp236 if (decArr.limitLen > 0) { in SetBomFlag()
/ohos5.0/base/useriam/user_auth_framework/frameworks/js/napi/user_auth/inc/
H A Duser_auth_napi_helper.h47 size_t limitLen, std::vector<uint8_t> &array);
/ohos5.0/base/useriam/user_auth_framework/frameworks/js/napi/user_auth/src/
H A Duser_auth_napi_helper.cpp349 size_t limitLen, std::vector<uint8_t> &array) in GetUint8ArrayValue() argument
375 if (length > limitLen) { in GetUint8ArrayValue()