Lines Matching refs:r_path
214 static int resolvePath(char **r_path);
3434 * Arguments: r_path - pointer to pointer to malloc()ed storage containing
3437 * Output: r_path - is realloc()ed as necessary
3444 resolvePath(char **r_path)
3455 assert(r_path != (char **)NULL);
3459 if (*r_path == '\0') {
3465 removeLeadingWhitespace(r_path);
3472 if (realpath(*r_path, resolvedPath) != NULL) {
3473 free(*r_path);
3474 *r_path = strdup(resolvedPath);
3482 mbPathlen = strlen(*r_path);
3490 if ((wcPathlen = mbstowcs(wcPath, *r_path, mbPathlen)) == -1) {
3520 if (wcstombs(*r_path, wcPath, mbPathlen) == -1) {