Lines Matching defs:capsCnt
59 targetSt->capsCnt = 0;
106 msgSt->capsCnt = 0;
115 int capsCnt = cJSON_GetArraySize(capItem);
116 if (capsCnt <= 0) {
120 if (capsCnt > MAX_CAPABILITY_COUNT) {
122 capsCnt, MAX_CAPABILITY_COUNT);
126 msgSt->caps = (unsigned int *)malloc(sizeof(unsigned int) * capsCnt);
128 APPSPAWN_LOGE("[appspawn] GetCaps, malloc failed! capsCnt[cnt %d].", capsCnt);
132 for (int i = 0; i < capsCnt; ++i) {
150 msgSt->capsCnt = capsCnt;