Home
last modified time | relevance | path

Searched refs:strs_ (Results 1 – 3 of 3) sorted by relevance

/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/
Dhiappevent_verify.cpp132 } else if (type == AppEventParamType::STRVECTOR && vu.strs_.size() > MAX_SIZE_OF_LIST_PARAM) { in CheckListValueSize()
133 vu.strs_.resize(MAX_SIZE_OF_LIST_PARAM); in CheckListValueSize()
216 …it->type == AppEventParamType::STRVECTOR && !CheckStringLengthOfList(it->value.valueUnion.strs_)) { in VerifyAppEvent()
Dhiappevent_base.cpp157 new (&value->valueUnion.strs_) auto(other.valueUnion.strs_); in InitValueByReferType()
208 valueUnion.strs_.~vector(); in ~AppEventParamValue()
387 appEventParam.value.valueUnion.strs_.assign(strs.begin(), strs.end()); in AddParam()
394 appEventParam.value.valueUnion.strs_.assign(strs.begin(), strs.end()); in AddParam()
570 AddVectorToJsonString(jsonStr, param.value.valueUnion.strs_); in AddOthersToJsonString()
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/include/
Dhiappevent_base.h93 std::vector<std::string> strs_; member
128 new (&strs_) std::vector<std::string>; in ValueUnion()