Lines Matching refs:gJsonObjectSysCap
73 …lOsCapLength(char *convertedBuffer, char *contextBuffer, struct JsonObjectSysCap gJsonObjectSysCap, in FillOsCapLength() argument
82 apiVerItem = cJSON_GetObjectItem(gJsonObjectSysCap.cjsonObjectRoot, "api_version"); in FillOsCapLength()
97 arrayItemPtr = cJSON_GetArrayItem(gJsonObjectSysCap.sysCapPtr, (int)i); in FillOsCapLength()
140 struct JsonObjectSysCap gJsonObjectSysCap; in RPCIDEncode() local
141 gJsonObjectSysCap.cjsonObjectRoot = NULL; in RPCIDEncode()
142 gJsonObjectSysCap.sysCapPtr = NULL; in RPCIDEncode()
150 gJsonObjectSysCap.cjsonObjectRoot = cJSON_ParseWithLength(contextBuffer, bufferLen); in RPCIDEncode()
151 if (gJsonObjectSysCap.cjsonObjectRoot == NULL) { in RPCIDEncode()
156 gJsonObjectSysCap.sysCapPtr = cJSON_GetObjectItem(gJsonObjectSysCap.cjsonObjectRoot, "syscap"); in RPCIDEncode()
157 if (gJsonObjectSysCap.sysCapPtr == NULL || !cJSON_IsArray(gJsonObjectSysCap.sysCapPtr)) { in RPCIDEncode()
162 ret = cJSON_GetArraySize(gJsonObjectSysCap.sysCapPtr); in RPCIDEncode()
178 ret = FillOsCapLength(convertedBuffer, contextBuffer, gJsonObjectSysCap, sysCapSize, ret); in RPCIDEncode()