Home
last modified time | relevance | path

Searched refs:AddParam (Results 1 – 6 of 6) sorted by relevance

/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/
Dhiappevent_pack.cpp36 appEventPack->AddParam(key); in AddEventParam()
44 appEventPack->AddParam(key, b); in AddEventParam()
52 appEventPack->AddParam(key, c); in AddEventParam()
60 appEventPack->AddParam(key, s); in AddEventParam()
68 appEventPack->AddParam(key, i); in AddEventParam()
76 appEventPack->AddParam(key, l); in AddEventParam()
84 appEventPack->AddParam(key, l); in AddEventParam()
92 appEventPack->AddParam(key, f); in AddEventParam()
100 appEventPack->AddParam(key, d); in AddEventParam()
108 appEventPack->AddParam(key, s); in AddEventParam()
[all …]
Dhiappevent_c.cpp35 appEventPack->AddParam(name, params); in AddArrayParam()
42 appEventPack->AddParam(name, value->value.bool_v); in AddBoolParamValue()
52 appEventPack->AddParam(name, value->value.int8_v); in AddInt8ParamValue()
62 appEventPack->AddParam(name, value->value.int16_v); in AddInt16ParamValue()
72 appEventPack->AddParam(name, value->value.int32_v); in AddInt32ParamValue()
82 appEventPack->AddParam(name, value->value.int64_v); in AddInt64ParamValue()
92 appEventPack->AddParam(name, value->value.float_v); in AddFloatParamValue()
102 appEventPack->AddParam(name, value->value.double_v); in AddDoubleParamValue()
112 appEventPack->AddParam(name, value->value.str_v); in AddStringParamValue()
Dhiappevent_base.cpp230 void AppEventPack::AddParam(const std::string& key) in AddParam() function in OHOS::HiviewDFX::AppEventPack
236 void AppEventPack::AddParam(const std::string& key, bool b) in AddParam() function in OHOS::HiviewDFX::AppEventPack
243 void AppEventPack::AddParam(const std::string& key, char c) in AddParam() function in OHOS::HiviewDFX::AppEventPack
250 void AppEventPack::AddParam(const std::string& key, int8_t num) in AddParam() function in OHOS::HiviewDFX::AppEventPack
257 void AppEventPack::AddParam(const std::string& key, short s) in AddParam() function in OHOS::HiviewDFX::AppEventPack
264 void AppEventPack::AddParam(const std::string& key, int i) in AddParam() function in OHOS::HiviewDFX::AppEventPack
271 void AppEventPack::AddParam(const std::string& key, long l) in AddParam() function in OHOS::HiviewDFX::AppEventPack
278 void AppEventPack::AddParam(const std::string& key, long long ll) in AddParam() function in OHOS::HiviewDFX::AppEventPack
285 void AppEventPack::AddParam(const std::string& key, float f) in AddParam() function in OHOS::HiviewDFX::AppEventPack
292 void AppEventPack::AddParam(const std::string& key, double d) in AddParam() function in OHOS::HiviewDFX::AppEventPack
[all …]
Dhiappevent_write.cpp216 appEventPack->AddParam("traceid_", static_cast<long long>(hitraceId.GetChainId())); in TraceAppEventPack()
217 appEventPack->AddParam("spanid_", static_cast<long long>(hitraceId.GetSpanId())); in TraceAppEventPack()
218 appEventPack->AddParam("pspanid_", static_cast<long long>(hitraceId.GetParentSpanId())); in TraceAppEventPack()
219 appEventPack->AddParam("trace_flag_", hitraceId.GetFlags()); in TraceAppEventPack()
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/include/
Dhiappevent_base.h161 void AddParam(const std::string& key);
162 void AddParam(const std::string& key, bool b);
163 void AddParam(const std::string& key, int8_t num);
164 void AddParam(const std::string& key, char c);
165 void AddParam(const std::string& key, short s);
166 void AddParam(const std::string& key, int i);
167 void AddParam(const std::string& key, long l);
168 void AddParam(const std::string& key, long long ll);
169 void AddParam(const std::string& key, float f);
170 void AddParam(const std::string& key, double d);
[all …]
/base/startup/init_lite/services/param/service/
Dparam_service.c64 static int AddParam(WorkSpace *workSpace, const char *name, const char *value, uint32_t *dataIndex) in AddParam() function
134 return AddParam((WorkSpace *)workSpace, name, value, dataIndex); in WriteParam()