Lines Matching full:the_glob
839 glob_t the_glob;840 memset(&the_glob, 0, sizeof(the_glob));841 int ret = ::glob(pattern.c_str(), 0, NULL, &the_glob);845 for (size_t n = 0; n < the_glob.gl_pathc; ++n) {846 filepath.assign(the_glob.gl_pathv[n]);851 globfree(&the_glob);