Symbol: glob
bin/csh/glob.c
393
switch (glob(ptr, gflgs, 0, &globv)) {
distrib/utils/more/command.c
277
(void)edit(glob(p));
distrib/utils/more/extern.h
83
char *glob __P((char *));
include/glob.h
105
int glob(const char * __restrict, int,
lib/libc/compat/gen/compat___glob13.c
19
#undef glob
lib/libc/compat/gen/compat_glob.c
22
__weak_alias(glob,_glob)
lib/libc/compat/gen/compat_glob.c
26
__warn_references(glob,
lib/libc/compat/include/glob.h
41
int glob(const char * __restrict, int,
libexec/ftpd/conf.c
564
if (glob(curclass.notify, GLOB_BRACE|GLOB_LIMIT, NULL, &gl) != 0
libexec/ftpd/ftpd.c
3443
if (glob(whichf, flags, 0, &gl)) {
libexec/ftpd/popen.c
142
if (glob(argv[argc], flags, NULL, &gl)
libexec/makewhatis/makewhatis.c
185
if ((rv = glob(ep->s,
sbin/restore/interactive.c
110
arglist.glob.gl_flags = GLOB_ALTDIRFUNC;
sbin/restore/interactive.c
111
arglist.glob.gl_opendir = (void *)rst_opendir;
sbin/restore/interactive.c
112
arglist.glob.gl_readdir = (void *)glob_readdir;
sbin/restore/interactive.c
113
arglist.glob.gl_closedir = (void *)rst_closedir;
sbin/restore/interactive.c
114
arglist.glob.gl_lstat = glob_stat;
sbin/restore/interactive.c
115
arglist.glob.gl_stat = glob_stat;
sbin/restore/interactive.c
122
globfree(&arglist.glob);
sbin/restore/interactive.c
376
if ((globretval = glob(name, GLOB_ALTDIRFUNC, NULL, &ap->glob)) < 0) {
sbin/restore/interactive.c
393
if (ap->glob.gl_pathc == 0)
sbin/restore/interactive.c
396
ap->argcnt = ap->glob.gl_pathc;
sbin/restore/interactive.c
399
strlcpy(name, ap->glob.gl_pathv[ap->glob.gl_pathc - ap->argcnt], size);
sbin/restore/interactive.c
402
globfree(&ap->glob);
sbin/restore/interactive.c
82
glob_t glob; /* globbing information */
sys/arch/macppc/dev/videopll.c
102
struct videopll_softc *sc = glob;
sys/arch/macppc/dev/videopll.c
108
if (glob == NULL)
sys/arch/macppc/dev/videopll.c
66
static void *glob = NULL;
sys/arch/macppc/dev/videopll.c
92
glob = sc;
tests/lib/libc/gen/t_glob.c
218
switch ((e = glob(p, GLOB_ALTDIRFUNC | flags, NULL, &gl))) {
usr.bin/apropos/apropos.c
133
if ((rv = glob(ep->s, GLOB_BRACE | GLOB_NOSORT, NULL,
usr.bin/ftp/cmds.c
525
if (glob(argv[i], flags, NULL, &gl) || gl.gl_pathc == 0) {
usr.bin/ftp/util.c
637
if (glob(pattern, flags, NULL, &gl) || gl.gl_pathc == 0) {
usr.bin/mail/complete.c
217
if (glob(pattern, flags, NULL, &gl) || gl.gl_pathc == 0) {
usr.bin/man/man.c
1073
if (glob(epath->s, GLOB_BRACE | GLOB_NOSORT, NULL, &pg) != 0)
usr.bin/man/man.c
599
error = glob(buf, GLOB_APPEND | GLOB_BRACE | GLOB_NOSORT, NULL, pg);
usr.bin/man/man.c
641
if ((error = glob(buf,
usr.bin/whatis/whatis.c
122
if ((rv = glob(ep->s, GLOB_BRACE | GLOB_NOSORT, NULL,
usr.sbin/catman/catman.c
271
glob(e_defp->s, GLOB_BRACE | GLOB_NOSORT | gflags, NULL,
usr.sbin/inetd/parse.c
1270
glob_result = glob(full_pattern, GLOB_NOSORT, glob_error, &results);
usr.sbin/mtree/excludes.c
114
if ((e->pathname && MATCH(e->glob, path))
usr.sbin/mtree/excludes.c
115
|| MATCH(e->glob, fname)) {
usr.sbin/mtree/excludes.c
61
const char *glob;
usr.sbin/mtree/excludes.c
94
e->glob = line;
usr.sbin/mtree/excludes.c
95
if (strchr(e->glob, '/') != NULL)