Symbol: glob
headers/posix/glob.h
88
int glob(const char *, int, int (*)(const char *, int), glob_t *);
src/apps/text_search/Grepper.cpp
111
fGlob = strdup(glob);
src/apps/text_search/Grepper.cpp
91
Grepper::Grepper(const char* pattern, const char* glob, const Model* model,
src/apps/text_search/Grepper.h
16
Grepper(const char* pattern, const char* glob, const Model* model,
src/bin/network/ftpd/ftpcmd.y
1741
if (glob(s, flags, NULL, &gl) == 0 && gl.gl_pathc != 0) {
src/bin/network/ftpd/ftpd.c
3222
if (glob(whichf, flags, 0, &gl)) {
src/bin/network/ftpd/popen.c
106
if (glob(argv[argc], flags, NULL, &gl))
src/bin/rmattr.cpp
63
glob_t glob;
src/bin/rmattr.cpp
64
memset(&glob, 0, sizeof(glob_t));
src/bin/rmattr.cpp
66
glob.gl_closedir = (void (*)(void *))fs_close_attr_dir;
src/bin/rmattr.cpp
67
glob.gl_readdir = (dirent* (*)(void*))fs_read_attr_dir;
src/bin/rmattr.cpp
68
glob.gl_opendir = open_attr_dir;
src/bin/rmattr.cpp
69
glob.gl_lstat = stat_attr;
src/bin/rmattr.cpp
70
glob.gl_stat = stat_attr;
src/bin/rmattr.cpp
75
int result = ::glob(attribute, GLOB_ALTDIRFUNC, NULL, &glob);
src/bin/rmattr.cpp
83
for (int i = 0; i < glob.gl_pathc; i++) {
src/bin/rmattr.cpp
84
if (fs_remove_attr(fd, glob.gl_pathv[i]) != 0)
src/bin/rmindex.cpp
142
glob_t glob;
src/bin/rmindex.cpp
143
memset(&glob, 0, sizeof(glob_t));
src/bin/rmindex.cpp
145
glob.gl_closedir = (void (*)(void *))fs_close_index_dir;
src/bin/rmindex.cpp
146
glob.gl_readdir = (dirent *(*)(void *))fs_read_index_dir;
src/bin/rmindex.cpp
147
glob.gl_opendir = open_index_dir;
src/bin/rmindex.cpp
148
glob.gl_lstat = stat_index;
src/bin/rmindex.cpp
149
glob.gl_stat = stat_index;
src/bin/rmindex.cpp
154
int result = ::glob(indexPattern, GLOB_ALTDIRFUNC, NULL, &glob);
src/bin/rmindex.cpp
162
for (int i = 0; i < glob.gl_pathc; i++) {
src/bin/rmindex.cpp
163
if (remove_index(device, glob.gl_pathv[i], verbose) != 0)
src/kits/package/manager/PackageManager.cpp
580
if (glob(globPath.String(), GLOB_NOSORT, NULL, &globbuf) == 0) {