HomeSort by: relevance | last modified time | path
    Searched defs:vpath (Results 1 - 5 of 5) sorted by relevancy

  /src/external/gpl2/gmake/dist/
filedef.h 30 char *vpath; /* VPATH/vpath pathname */ member in struct:file
92 unsigned int ignore_vpath:1;/* Nonzero if we threw out VPATH name. */
164 Don't search using vpath for the file--if it doesn't actually exist,
vpath.c 27 /* Structure used to represent a selective VPATH searchpath. */
29 struct vpath struct
31 struct vpath *next; /* Pointer to next struct in the linked list. */
41 static struct vpath *vpaths;
43 /* Structure for the general VPATH given in the variable. */
45 static struct vpath *general_vpath;
49 static struct vpath *gpaths;
52 static int selective_vpath_search PARAMS ((struct vpath *path, char **file, FILE_TIMESTAMP *mtime_ptr));
54 /* Reverse the chain of selective VPATH lists so they
56 and construct the list from the VPATH variable. *
163 register char **vpath; local
378 register char **vpath = path->searchpath; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libcpp/
mkdeps.cc 95 for (i = vpath.size (); i--;)
96 XDELETEVEC (vpath[i].str);
106 vec<velt> vpath; member in class:mkdeps
187 if (unsigned len = d->vpath.size ())
190 if (!filename_ncmp (d->vpath[i].str, t, d->vpath[i].len))
192 const char *p = t + d->vpath[i].len;
196 /* Do not simplify $(vpath)/../whatever. ??? Might not
202 t = t + d->vpath[i].len + 1;
302 deps_add_vpath (class mkdeps *d, const char *vpath)
    [all...]
  /src/bin/sh/
var.c 119 struct var vpath; variable in typeref:struct:var
160 { &vpath, VSTRFIXED|VTEXTFIXED, "PATH=" _PATH_DEFPATH,
  /src/usr.bin/make/
main.c 1237 * For compatibility, look at the directories in the VPATH variable
1245 char *vpath, savec, *path; local
1246 if (!Var_Exists(SCOPE_CMDLINE, "VPATH"))
1249 vpath = Var_Subst("${VPATH}", SCOPE_CMDLINE, VARE_EVAL);
1251 path = vpath;
1265 free(vpath);

Completed in 34 milliseconds