Home
last modified time | relevance | path

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

/ohos5.0/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/
H A Dhiappevent_base.cpp60 value->valueUnion.b_ = other.valueUnion.b_; in InitValueByBaseType()
63 value->valueUnion.c_ = other.valueUnion.c_; in InitValueByBaseType()
66 value->valueUnion.sh_ = other.valueUnion.sh_; in InitValueByBaseType()
69 value->valueUnion.i_ = other.valueUnion.i_; in InitValueByBaseType()
72 value->valueUnion.ll_ = other.valueUnion.ll_; in InitValueByBaseType()
75 value->valueUnion.f_ = other.valueUnion.f_; in InitValueByBaseType()
78 value->valueUnion.d_ = other.valueUnion.d_; in InitValueByBaseType()
96 new (&value->valueUnion.bs_) auto(other.valueUnion.bs_); in InitValueByReferType()
99 new (&value->valueUnion.cs_) auto(other.valueUnion.cs_); in InitValueByReferType()
105 new (&value->valueUnion.is_) auto(other.valueUnion.is_); in InitValueByReferType()
[all …]
H A Dhiappevent_verify.cpp211 …if (param.type == AppEventParamType::STRING && !CheckStrParamLength(param.value.valueUnion.str_, m… in VerifyAppEventParam()
218 …m.type == AppEventParamType::STRVECTOR && !CheckStringLengthOfList(param.value.valueUnion.strs_)) { in VerifyAppEventParam()
225 …aram.type > AppEventParamType::STRING && !CheckListValueSize(param.type, param.value.valueUnion)) { in VerifyAppEventParam()
247 && !CheckStrParamLength(param.value.valueUnion.str_, MAX_LENGTH_OF_CUSTOM_PARAM)) { in VerifyCustomAppEventParam()
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.h138 } valueUnion; member