Lines Matching refs:globbuf
174 glob_t globbuf; in processPattern() local
178 res = glob(pattern, 0, NULL, &globbuf); in processPattern()
186 for (i = 0; i < globbuf.gl_pathc; i++) { in processPattern()
196 path = globbuf.gl_pathv[i]; in processPattern()
245 globfree(&globbuf); in processPattern()
254 glob_t globbuf; in processXPath() local
262 res = glob(pattern, 0, NULL, &globbuf); in processXPath()
270 for (i = 0; i < globbuf.gl_pathc; i++) { in processXPath()
271 char *path = globbuf.gl_pathv[i]; in processXPath()
326 globfree(&globbuf); in processXPath()
334 glob_t globbuf; in processXPathDir() local
345 if (glob(pattern, 0, NULL, &globbuf) != 0) in processXPathDir()
348 for (i = 0; i < globbuf.gl_pathc; i++) { in processXPathDir()
349 char *path = globbuf.gl_pathv[i]; in processXPathDir()
369 globfree(&globbuf); in processXPathDir()