Lines Matching defs:count
312 void FreeStringVector(char **vector, int count)
315 for (int i = 0; i < count; i++) {
341 int count = 0;
343 if (count > itemCounts - 1) {
347 INIT_ERROR_CHECK(expand != NULL, FreeStringVector(items, count);
352 items[count] = (char *)calloc(len + 1, sizeof(char));
353 INIT_CHECK(items[count] != NULL, FreeStringVector(items, count);
355 if (strncpy_s(items[count], len + 1, p, len) != EOK) {
357 FreeStringVector(items, count);
360 count++;
363 *returnCount = count;
538 uint32_t count = 0;
559 count++;
563 INIT_LOGV("ReadFileInDir dirPath %s %d", dirPath, count);