Lines Matching refs:flagCount
68 int flagCount = 0;
71 char **vector = SplitStringExt(flagBuffer, ",", &flagCount, maxCount);
72 BEGET_CHECK_RETURN_VALUE(vector != NULL && flagCount != 0, 0);
74 for (int j = 0; j < flagCount; j++) {
80 FreeStringVector(vector, flagCount);
456 int flagCount = 0;
464 char **flagsVector = SplitStringExt(mountFlag, ",", &flagCount, maxCount);
466 if (flagsVector == NULL || flagCount == 0) {
471 for (int i = 0; i < flagCount; i++) {
485 if (i == flagCount - 1) { // last flags, do not need to append ','
496 FreeStringVector(flagsVector, flagCount);