bin/sh/cd.c
108
if ((dest = *argptr) == NULL && (dest = bltinlookup("HOME", 1)) == NULL)
bin/sh/cd.c
113
dest = bltinlookup("OLDPWD", 1);
bin/sh/cd.c
121
(path = bltinlookup("CDPATH", 1)) == NULL)
bin/sh/eval.c
1268
path = bltinlookup("PATH", 1);
bin/sh/exec.c
822
return typecmd_impl(argc, argv, TYPECMD_TYPE, bltinlookup("PATH", 1));
bin/sh/expand.c
692
val = bltinlookup(var, 1);
bin/sh/histedit.c
256
(editor = bltinlookup("FCEDIT", 1)) == NULL &&
bin/sh/histedit.c
257
(editor = bltinlookup("EDITOR", 1)) == NULL)
bin/sh/miscbltin.c
220
if ((ifs = bltinlookup("IFS", 1)) == NULL)
bin/sh/var.c
487
loc = bltinlookup("LC_ALL", 0);
bin/sh/var.c
495
locdef = bltinlookup("LANG", 0);
bin/sh/var.c
497
loc = bltinlookup(locale_names[i], 0);
bin/sh/var.h
122
char *bltinlookup(const char *, int);