Home
last modified time | relevance | path

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

/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/include/
Dhiappevent_base.h156 void AddParam(const std::string& key);
157 void AddParam(const std::string& key, bool b);
158 void AddParam(const std::string& key, int8_t num);
159 void AddParam(const std::string& key, char c);
160 void AddParam(const std::string& key, int16_t s);
161 void AddParam(const std::string& key, int i);
162 void AddParam(const std::string& key, int64_t ll);
163 void AddParam(const std::string& key, float f);
164 void AddParam(const std::string& key, double d);
165 void AddParam(const std::string& key, const char *s);
[all …]
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/
Dhiappevent_c.cpp36 appEventPack->AddParam(name, params); in AddArrayParam()
43 appEventPack->AddParam(name, value->value.bool_v); in AddBoolParamValue()
53 appEventPack->AddParam(name, value->value.int8_v); in AddInt8ParamValue()
63 appEventPack->AddParam(name, value->value.int16_v); in AddInt16ParamValue()
73 appEventPack->AddParam(name, value->value.int32_v); in AddInt32ParamValue()
83 appEventPack->AddParam(name, value->value.int64_v); in AddInt64ParamValue()
93 appEventPack->AddParam(name, value->value.float_v); in AddFloatParamValue()
103 appEventPack->AddParam(name, value->value.double_v); in AddDoubleParamValue()
113 appEventPack->AddParam(name, value->value.str_v); in AddStringParamValue()
Dhiappevent_write.cpp74 appEventPack->AddParam("traceid_", static_cast<int64_t>(hitraceId.GetChainId())); in TraceAppEventPack()
75 appEventPack->AddParam("spanid_", static_cast<int64_t>(hitraceId.GetSpanId())); in TraceAppEventPack()
76 appEventPack->AddParam("pspanid_", static_cast<int64_t>(hitraceId.GetParentSpanId())); in TraceAppEventPack()
77 appEventPack->AddParam("trace_flag_", hitraceId.GetFlags()); in TraceAppEventPack()
Dhiappevent_base.cpp221 void AppEventPack::AddParam(const std::string& key) in AddParam() function in OHOS::HiviewDFX::AppEventPack
227 void AppEventPack::AddParam(const std::string& key, bool b) in AddParam() function in OHOS::HiviewDFX::AppEventPack
234 void AppEventPack::AddParam(const std::string& key, char c) in AddParam() function in OHOS::HiviewDFX::AppEventPack
241 void AppEventPack::AddParam(const std::string& key, int8_t num) in AddParam() function in OHOS::HiviewDFX::AppEventPack
248 void AppEventPack::AddParam(const std::string& key, int16_t s) in AddParam() function in OHOS::HiviewDFX::AppEventPack
255 void AppEventPack::AddParam(const std::string& key, int i) in AddParam() function in OHOS::HiviewDFX::AppEventPack
262 void AppEventPack::AddParam(const std::string& key, int64_t ll) in AddParam() function in OHOS::HiviewDFX::AppEventPack
269 void AppEventPack::AddParam(const std::string& key, float f) in AddParam() function in OHOS::HiviewDFX::AppEventPack
276 void AppEventPack::AddParam(const std::string& key, double d) in AddParam() function in OHOS::HiviewDFX::AppEventPack
283 void AppEventPack::AddParam(const std::string& key, const char *s) in AddParam() function in OHOS::HiviewDFX::AppEventPack
[all …]
Dlibhiappevent_base.map5 …"OHOS::HiviewDFX::AppEventPack::AddParam(std::__h::basic_string<char, std::__h::char_traits<char>,…
6 …"OHOS::HiviewDFX::AppEventPack::AddParam(std::__h::basic_string<char, std::__h::char_traits<char>,…
7 …"OHOS::HiviewDFX::AppEventPack::AddParam(std::__h::basic_string<char, std::__h::char_traits<char>,…
8 …"OHOS::HiviewDFX::AppEventPack::AddParam(std::__h::basic_string<char, std::__h::char_traits<char>,…
9 …"OHOS::HiviewDFX::AppEventPack::AddParam(std::__h::basic_string<char, std::__h::char_traits<char>,…
10 …"OHOS::HiviewDFX::AppEventPack::AddParam(std::__h::basic_string<char, std::__h::char_traits<char>,…
11 …"OHOS::HiviewDFX::AppEventPack::AddParam(std::__h::basic_string<char, std::__h::char_traits<char>,…
53 …"OHOS::HiviewDFX::AppEventPack::AddParam(std::__1::basic_string<char, std::__1::char_traits<char>,…
54 …"OHOS::HiviewDFX::AppEventPack::AddParam(std::__1::basic_string<char, std::__1::char_traits<char>,…
55 …"OHOS::HiviewDFX::AppEventPack::AddParam(std::__1::basic_string<char, std::__1::char_traits<char>,…
[all …]
/base/hiviewdfx/hiappevent/frameworks/js/napi/src/
Dnapi_hiappevent_builder.cpp120 appEventPack_->AddParam(key, bools); in AddArrayParam2EventPack()
126 appEventPack_->AddParam(key, doubles); in AddArrayParam2EventPack()
132 appEventPack_->AddParam(key, strs); in AddArrayParam2EventPack()
136 appEventPack_->AddParam(key); in AddArrayParam2EventPack()
155 appEventPack_->AddParam(key, NapiUtil::GetBoolean(env, value)); in AddParam2EventPack()
158 appEventPack_->AddParam(key, NapiUtil::GetDouble(env, value)); in AddParam2EventPack()
161 appEventPack_->AddParam(key, NapiUtil::GetString(env, value, MAX_STRING_LEN)); in AddParam2EventPack()
/base/startup/init/services/param/base/
Dparam_comm.c254 static int AddParam(WorkSpace *workSpace, uint8_t type, const char *name, const char *value, uint32… in AddParam() function
344 ret = AddParam((WorkSpace *)workSpace, type, name, value, dataIndex); in WriteParam()