Lines Matching refs:vms_fmatch
75 static char_u **vms_fmatch = NULL; variable
384 if (NULL == vms_fmatch) { in vms_wproc()
385 vms_fmatch = ALLOC_MULT(char_u *, EXPL_ALLOC_INC); in vms_wproc()
386 if (!vms_fmatch) in vms_wproc()
403 if (0 == STRCMP((char_u *)name,vms_fmatch[i])) in vms_wproc()
407 char_u **old_vms_fmatch = vms_fmatch; in vms_wproc()
411 vms_fmatch = vim_realloc(old_vms_fmatch, in vms_wproc()
413 if (!vms_fmatch) in vms_wproc()
420 vms_fmatch[vms_match_num] = vim_strsave((char_u *)name); in vms_wproc()
481 if (!(flags & EW_NOTFOUND) && mch_getperm(vms_fmatch[i]) < 0) in mch_expand_wildcards()
485 dir = (mch_isdir(vms_fmatch[i])); in mch_expand_wildcards()
491 && !mch_can_exe(vms_fmatch[i], NULL, !(flags & EW_SHELLCMD))) in mch_expand_wildcards()
511 (*file)[*num_file++] = vms_fmatch[i]; in mch_expand_wildcards()
536 if (mch_getperm(vms_fmatch[i]) >= 0) // add existing file in mch_expandpath()
537 addfile(gap, vms_fmatch[i], flags); in mch_expandpath()