Home
last modified time | relevance | path

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

/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/include/
Dhiappevent_base.h72 struct AppEventParamValue { struct
132 explicit AppEventParamValue(AppEventParamType t); argument
133 AppEventParamValue(const AppEventParamValue& value);
134 ~AppEventParamValue();
136 using AppEventParamValue = struct AppEventParamValue;
141 AppEventParamValue value;
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/
Dhiappevent_base.cpp85 void InitValueByBaseType(AppEventParamValue* value, const AppEventParamValue& other) in InitValueByBaseType()
118 void InitValueByReferType(AppEventParamValue* value, const AppEventParamValue& other) in InitValueByReferType()
158 AppEventParamValue::AppEventParamValue(AppEventParamType t) : type(t), valueUnion(t) in AppEventParamValue() function in OHOS::HiviewDFX::AppEventParamValue
161 AppEventParamValue::AppEventParamValue(const AppEventParamValue& other) : type(other.type) in AppEventParamValue() function in OHOS::HiviewDFX::AppEventParamValue
170 AppEventParamValue::~AppEventParamValue() in ~AppEventParamValue()
Dhiappevent_verify.cpp125 bool CheckListValueSize(AppEventParamType type, AppEventParamValue::ValueUnion& vu) in CheckListValueSize()