Home
last modified time | relevance | path

Searched refs:pStr (Results 1 – 2 of 2) sorted by relevance

/hal_nxp-3.6.0/mcux/mcux-sdk/middleware/issdk/drivers/host/
Ddata_format_json.c38 int32_t JSON_Serialize(char *pStr, char *pDataTagStr, char *pDataValue, json_format_t type, bool en… in JSON_Serialize() argument
43 if (NULL != pStr) in JSON_Serialize()
45 if (0 == strlen(pStr)) in JSON_Serialize()
48 strcat(pStr, gpJsonHeader); in JSON_Serialize()
52 strcat(pStr, ","); in JSON_Serialize()
55 strcat(pStr, "\""); in JSON_Serialize()
56 strcat(pStr, pDataTagStr); in JSON_Serialize()
57 strcat(pStr, "\":"); in JSON_Serialize()
58 strcat(pStr, pDataValue); in JSON_Serialize()
63 strcat(pStr, gpJsonFooter); in JSON_Serialize()
Ddata_format_json.h49 int32_t JSON_Serialize(char *pStr, char *pDataTagStr, char *pDataValue, json_format_t type, bool en…