Lines Matching refs:caps
52 if (targetSt->caps != NULL) { in FreeMessageSt()
53 free(targetSt->caps); in FreeMessageSt()
54 targetSt->caps = NULL; in FreeMessageSt()
107 msgSt->caps = NULL; in GetCaps()
126 msgSt->caps = (unsigned int *)malloc(sizeof(unsigned int) * capsCnt); in GetCaps()
127 if (msgSt->caps == NULL) { in GetCaps()
136 free(msgSt->caps); in GetCaps()
137 msgSt->caps = NULL; in GetCaps()
140 msgSt->caps[i] = (unsigned int)cJSON_GetNumberValue(capJ); in GetCaps()
141 if (msgSt->caps[i] > CAP_LAST_CAP) { in GetCaps()
143 msgSt->caps[i]); in GetCaps()
144 free(msgSt->caps); in GetCaps()
145 msgSt->caps = NULL; in GetCaps()