Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/core/common/dfx/hisysevent_adapter/
H A Dsoftbus_hisysevt_transreporter.c79 static char g_pkgVersion[SOFTBUS_HISYSEVT_PARAM_LEN] = "packageVersion1";
148 char packageVersion[SOFTBUS_HISYSEVT_PARAM_LEN];
149 char softbusVersion[SOFTBUS_HISYSEVT_PARAM_LEN];
155 char callerPackageName[SOFTBUS_HISYSEVT_PARAM_LEN];
160 char appName[SOFTBUS_HISYSEVT_PARAM_LEN];
161 char softbusVersion[SOFTBUS_HISYSEVT_PARAM_LEN];
162 char packageVersion[SOFTBUS_HISYSEVT_PARAM_LEN];
169 char apiName[SOFTBUS_HISYSEVT_PARAM_LEN];
685 char appName[SOFTBUS_HISYSEVT_PARAM_LEN]; in SoftbusReportCalledAPIEvt()
686 char softbusVersion[SOFTBUS_HISYSEVT_PARAM_LEN]; in SoftbusReportCalledAPIEvt()
[all …]
H A Dsoftbus_hisysevt_discreporter.c106 static char g_softbusVersion[SOFTBUS_HISYSEVT_PARAM_LEN] = "default softbus version";
107 static char g_packageVersion[SOFTBUS_HISYSEVT_PARAM_LEN] = "default package version";
145 if (strcpy_s(param->paramName, SOFTBUS_HISYSEVT_PARAM_LEN, paramSize[i].paramName) != EOK) { in SetMsgParamNameAndType()
254 errnoRet = strcpy_s(param->paramName, SOFTBUS_HISYSEVT_PARAM_LEN, MODULE_KEY); in SoftBusCreateDiscDetailsMsg()
263 errnoRet = strcpy_s(param->paramName, SOFTBUS_HISYSEVT_PARAM_LEN, DISC_TYPE_KEY); in SoftBusCreateDiscDetailsMsg()
270 errnoRet = strcpy_s(param->paramName, SOFTBUS_HISYSEVT_PARAM_LEN, DURATION_KEY); in SoftBusCreateDiscDetailsMsg()
277 errnoRet = strcpy_s(param->paramName, SOFTBUS_HISYSEVT_PARAM_LEN, REPORT_TIMES_KEY); in SoftBusCreateDiscDetailsMsg()
284 errnoRet = strcpy_s(param->paramName, SOFTBUS_HISYSEVT_PARAM_LEN, DEVICE_NUM_KEY); in SoftBusCreateDiscDetailsMsg()
291 errnoRet = strcpy_s(param->paramName, SOFTBUS_HISYSEVT_PARAM_LEN, DISC_TIMES_KEY); in SoftBusCreateDiscDetailsMsg()
308 errnoRet = strcpy_s(param->paramName, SOFTBUS_HISYSEVT_PARAM_LEN, RANGE_ID_KEY); in SoftBusCreateDiscBleRssiMsg()
[all …]
H A Dsoftbus_hisysevt_nstack.c100 if (strcpy_s(dst, SOFTBUS_HISYSEVT_PARAM_LEN, src) != EOK) { in CopyEventParamVal()
102 SOFTBUS_HISYSEVT_PARAM_LEN, (char *)src); in CopyEventParamVal()
H A Dsoftbus_hisysevt_connreporter.c274 if (strcpy_s(param->paramName, SOFTBUS_HISYSEVT_PARAM_LEN, paramSize[i].paramName) != EOK) { in SetMsgParamNameAndType()
286 …rno_t errnoRet = strcpy_s(param[SOFTBUS_EVT_PARAM_ZERO].paramValue.str, SOFTBUS_HISYSEVT_PARAM_LEN, in SetDevConnResultMsgParamValue()
290 …errnoRet = strcpy_s(param[SOFTBUS_EVT_PARAM_ONE].paramValue.str, SOFTBUS_HISYSEVT_PARAM_LEN, g_pac… in SetDevConnResultMsgParamValue()
314 …rno_t errnoRet = strcpy_s(param[SOFTBUS_EVT_PARAM_ZERO].paramValue.str, SOFTBUS_HISYSEVT_PARAM_LEN, in SetDevProcStepMsgParamValue()
318 …errnoRet = strcpy_s(param[SOFTBUS_EVT_PARAM_ONE].paramValue.str, SOFTBUS_HISYSEVT_PARAM_LEN, g_pac… in SetDevProcStepMsgParamValue()
H A Dsoftbus_hisysevt_bus_center.c396 …if (strcpy_s(param->paramName, SOFTBUS_HISYSEVT_PARAM_LEN, g_devDiscoveryStaticParam[i].paramName)… in SetDevDiscStaticMsgParamName()
558 …if (strcpy_s(param->paramName, SOFTBUS_HISYSEVT_PARAM_LEN, g_appDiscoveryStaticParam[i].paramName)… in SetAppDiscStaticMsgParamName()
693 …if (strcpy_s(param->paramName, SOFTBUS_HISYSEVT_PARAM_LEN, g_softBusFailEvtParam[i].paramName) != … in SetBusCenterFaultMsgParamName()
872 …if (strcpy_s(param->paramName, SOFTBUS_HISYSEVT_PARAM_LEN, g_onlineInfoStaticParam[i].paramName) !… in SetOnlineInfoMsgParamName()
1001 …if (strcpy_s(param->paramName, SOFTBUS_HISYSEVT_PARAM_LEN, g_authResultParam[i].paramName) != EOK)… in SetAuthResultMsgParamName()
1086 …if (strcpy_s(param->paramName, SOFTBUS_HISYSEVT_PARAM_LEN, g_busCenterDurStaticParam[i + 1].paramN… in SetOnlineDurMsgParamName()
1171 …if (strcpy_s(param->paramName, SOFTBUS_HISYSEVT_PARAM_LEN, g_busCenterDurStaticParam[i].paramName)… in SetBusCenterDurMsgParamName()
/ohos5.0/foundation/communication/dsoftbus/adapter/common/include/
H A Dsoftbus_adapter_hisysevent.h29 #define SOFTBUS_HISYSEVT_PARAM_LEN 65 macro
98 char str[SOFTBUS_HISYSEVT_PARAM_LEN];
/ohos5.0/foundation/communication/dsoftbus/adapter/common/dfx/
H A Dsoftbus_adapter_hisysevent.cpp34 …dstParam->v.s = reinterpret_cast<char *>(SoftBusCalloc(sizeof(char) * SOFTBUS_HISYSEVT_PARAM_LEN)); in ConvertToHisEventString()
39 if (strcpy_s(dstParam->v.s, SOFTBUS_HISYSEVT_PARAM_LEN, srcParam->paramValue.str) != EOK) { in ConvertToHisEventString()