Lines Matching refs:path

945     char_u	*path = *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path;  in findfilendir()  local
973 path = p; in findfilendir()
991 0, first, path, in findfilendir()
1633 char_u *path; in f_readdir() local
1648 path = tv_get_string(&argvars[0]); in f_readdir()
1655 ret = readdir_core(&ga, path, FALSE, (void *)expr, in f_readdir()
1687 char_u *path; in f_readdirex() local
1701 path = tv_get_string(&argvars[0]); in f_readdirex()
1708 ret = readdir_core(&ga, path, TRUE, (void *)expr, in f_readdirex()
2867 get_past_head(char_u *path) in get_past_head() argument
2873 if (isalpha(path[0]) && path[1] == ':') in get_past_head()
2874 retval = path + 2; in get_past_head()
2876 retval = path; in get_past_head()
2880 retval = vim_strchr(path, ':'); in get_past_head()
2882 retval = path; in get_past_head()
2884 retval = path; in get_past_head()
3336 char_u *path, in dos_expandpath() argument
3380 path_end = path; in dos_expandpath()
3385 if (path_end >= path + wildoff && rem_backslash(path_end)) in dos_expandpath()
3393 else if (path_end >= path + wildoff in dos_expandpath()
3495 && fnamencmp(path + (s - buf), p, e - s) == 0))) in dos_expandpath()
3551 char_u *path, in mch_expandpath() argument
3554 return dos_expandpath(gap, path, 0, flags, FALSE); in mch_expandpath()
3581 char_u *path, in unix_expandpath() argument
3610 buf = alloc(STRLEN(path) + BASENAMELEN + 5); in unix_expandpath()
3622 path_end = path; in unix_expandpath()
3627 if (path_end >= path + wildoff && rem_backslash(path_end)) in unix_expandpath()
3635 else if (path_end >= path + wildoff in unix_expandpath()
3726 && fnamencmp(path + (s - buf), dp->d_name, e - s) == 0))) in unix_expandpath()