bin/sh/cd.c
102
if ((dest = *argptr) == NULL && (dest = bltinlookup("HOME", 1)) == NULL)
bin/sh/cd.c
105
dest = bltinlookup("OLDPWD", 1);
bin/sh/cd.c
113
(path = bltinlookup("CDPATH", 1)) == NULL)
bin/sh/eval.c
1262
path = bltinlookup("PATH", 1);
bin/sh/exec.c
848
return typecmd_impl(argc, argv, TYPECMD_TYPE, bltinlookup("PATH", 1));
bin/sh/expand.c
686
val = bltinlookup(var, 1);
bin/sh/histedit.c
327
(editor = bltinlookup("FCEDIT", 1)) == NULL &&
bin/sh/histedit.c
328
(editor = bltinlookup("EDITOR", 1)) == NULL)
bin/sh/miscbltin.c
223
if ((ifs = bltinlookup("IFS", 1)) == NULL)
bin/sh/var.c
479
loc = bltinlookup("LC_ALL", 0);
bin/sh/var.c
487
locdef = bltinlookup("LANG", 0);
bin/sh/var.c
489
loc = bltinlookup(locale_names[i], 0);
bin/sh/var.h
119
char *bltinlookup(const char *, int);