Searched refs:V_import (Results 1 - 7 of 7) sorted by relevance
/ast/src/cmd/nmake/ |
H A D | main.c | 414 setvar(external.make, argv[0], V_import); 416 setvar(external.lib, strdup((s = pathpath(t, argv[0], PATH_EXECUTE, buf, SF_BUFSIZE)) ? s : t), V_import); 417 setvar(external.pwd, internal.pwd, V_import); 418 setvar(external.version, version, V_import); 438 v->property &= ~V_import; 518 v->property &= ~V_import;
|
H A D | dump.c | 435 if (dumpall || !(v->property & V_import) && (!state.list || !isintvar(v->name))) 465 if (v->property & V_import)
|
H A D | make.h | 129 #define freevar(v) do{(v)->property&=(V_free|V_import);*((char**)v)=internal.freevars;internal.freevars=(char*)(v);}while(0) 388 #define V_import (1<<3) /* imported from environment */ macro 406 #define V_CLEAROBJECT (~(V_auxiliary|V_builtin|V_functional|V_import|V_retain|V_scan|V_scope))
|
H A D | object.c | 698 if ((v->property & V_compiled) || state.stateview < 0 && !(v->property & V_frozen) && ((v->property & V_import) || (v->property & (V_oldvalue|V_readonly)) == V_readonly) || state.stateview == 0 && !(v->property & V_retain)) 1702 if ((state.exec || !state.base || state.compileonly) && (v->property & V_frozen) && (!(x = getvar(v->name)) && ((v->property & V_oldvalue) || (v->property & V_import) && *v->value) || x && ((x->property & (V_append|V_readonly)) == (V_append|V_readonly) || ((v->property|x->property) & (V_import|V_readonly)) && !streq(v->value, x->value)) || (v->property & V_functional))) 1704 error((state.exec || state.mam.out) && !state.explain ? -1 : 1, "%s: frozen %svariable %s changed", objfile, ((v->property|(x ? x->property : 0)) & V_import) ? "environment " : ((x ? x->property : 0) & V_readonly) ? "command argument " : null, v->name); 1729 if (!(x = getvar(v->name)) || !(x->property & (V_readonly|V_restored)) && (!(x->property & V_import) || !state.global)) 2327 * state.global++ enables setvar() V_import override
|
H A D | parse.c | 290 if (!p->newv.value || (p->newv.property & V_import)) 294 p->newv.property &= ~V_import; 450 if (!(v->property & V_import) && v->value && strlen(p) <= v->length) 460 v->property |= V_import;
|
H A D | command.c | 611 if ((v = getvar(CO_ENV_ATTRIBUTES)) && !(v->property & V_import))
|
H A D | rule.c | 1810 setvar(external.pwd, internal.pwd, V_import);
|
Completed in 60 milliseconds