• Home
  • Raw
  • Download

Lines Matching refs:bufEnd

282 …L_STATIC int UTIL_prepareFileList(const char *dirName, char** bufStart, size_t* pos, char** bufEnd)  in UTIL_prepareFileList()  argument
318 …nbFiles += UTIL_prepareFileList(path, bufStart, pos, bufEnd); /* Recursively call "UTIL_prepareFi… in UTIL_prepareFileList()
322 if (*bufStart + *pos + pathLength >= *bufEnd) { in UTIL_prepareFileList()
323 ptrdiff_t newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE; in UTIL_prepareFileList()
325 *bufEnd = *bufStart + newListSize; in UTIL_prepareFileList()
328 if (*bufStart + *pos + pathLength < *bufEnd) { in UTIL_prepareFileList()
329 strncpy(*bufStart + *pos, path, *bufEnd - (*bufStart + *pos)); in UTIL_prepareFileList()
346 …L_STATIC int UTIL_prepareFileList(const char *dirName, char** bufStart, size_t* pos, char** bufEnd) in UTIL_prepareFileList() argument
373 …nbFiles += UTIL_prepareFileList(path, bufStart, pos, bufEnd); /* Recursively call "UTIL_prepareFi… in UTIL_prepareFileList()
376 if (*bufStart + *pos + pathLength >= *bufEnd) { in UTIL_prepareFileList()
377 ptrdiff_t newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE; in UTIL_prepareFileList()
379 *bufEnd = *bufStart + newListSize; in UTIL_prepareFileList()
382 if (*bufStart + *pos + pathLength < *bufEnd) { in UTIL_prepareFileList()
383 strncpy(*bufStart + *pos, path, *bufEnd - (*bufStart + *pos)); in UTIL_prepareFileList()
403 …L_STATIC int UTIL_prepareFileList(const char *dirName, char** bufStart, size_t* pos, char** bufEnd) in UTIL_prepareFileList() argument
405 (void)bufStart; (void)bufEnd; (void)pos; in UTIL_prepareFileList()