Home
last modified time | relevance | path

Searched refs:strItem (Results 1 - 2 of 2) sorted by relevance

/base/startup/appspawn/lite/
H A Dappspawn_message.c63 static enum OHOSLiteErrorCode ReadStringItem(cJSON *strItem, char **buf, size_t maxLen, size_t minLen) in ReadStringItem() argument
65 if (strItem == NULL || !cJSON_IsString(strItem)) { in ReadStringItem()
69 char *strPtr = cJSON_GetStringValue(strItem); in ReadStringItem()
95 static double ReadNumberItem(cJSON *strItem) in ReadNumberItem() argument
97 if (strItem == NULL || !cJSON_IsNumber(strItem)) { in ReadNumberItem()
101 return cJSON_GetNumberValue(strItem); in ReadNumberItem()
/base/hiviewdfx/hiview/base/utility/
H A Dcjson_util.cpp86 cJSON* strItem = cJSON_GetArrayItem(strArray, index); in GetStringArray() local
87 if (strItem == nullptr || !cJSON_IsString(strItem)) { in GetStringArray()
90 dest.emplace_back(strItem->valuestring); in GetStringArray()

Completed in 2 milliseconds