Home
last modified time | relevance | path

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

/ohos5.0/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/
H A Dhiappevent_base.cpp117 new (&value->valueUnion.strs_) auto(other.valueUnion.strs_); in InitValueByReferType()
258 return GetValuesStr(value.valueUnion.strs_); in GetStrsParamValueStr()
332 valueUnion.strs_.~vector(); in ~AppEventParamValue()
537 appEventParam.value.valueUnion.strs_.assign(strs.begin(), strs.end()); in AddParam()
544 appEventParam.value.valueUnion.strs_.assign(strs.begin(), strs.end()); in AddParam()
H A Dhiappevent_verify.cpp149 } else if (type == AppEventParamType::STRVECTOR && vu.strs_.size() > MAX_SIZE_OF_LIST_PARAM) { in CheckListValueSize()
150 vu.strs_.resize(MAX_SIZE_OF_LIST_PARAM); in CheckListValueSize()
218 …m.type == AppEventParamType::STRVECTOR && !CheckStringLengthOfList(param.value.valueUnion.strs_)) { in VerifyAppEventParam()
254 && !CheckStringLengthOfList(param.value.valueUnion.strs_, MAX_LENGTH_OF_CUSTOM_PARAM)) { in VerifyCustomAppEventParam()
/ohos5.0/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/include/
H A Dhiappevent_base.h98 std::vector<std::string> strs_; member
130 new (&strs_) std::vector<std::string>; in ValueUnion()