Searched refs:globbuf (Results 1 – 5 of 5) sorted by relevance
/third_party/libxml2/fuzz/ |
D | genSeed.c | 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() [all …]
|
D | testFuzzer.c | 72 glob_t globbuf; in testFuzzer() local 76 if (glob(pattern, 0, NULL, &globbuf) != 0) { in testFuzzer() 84 for (i = 0; i < globbuf.gl_pathc; i++) { in testFuzzer() 85 const char *path = globbuf.gl_pathv[i]; in testFuzzer() 102 globfree(&globbuf); in testFuzzer()
|
/third_party/libxml2/ |
D | testrecurse.c | 823 glob_t globbuf; in launchTests() local 825 globbuf.gl_offs = 0; in launchTests() 826 glob(tst->in, GLOB_DOOFFS, NULL, &globbuf); in launchTests() 827 for (i = 0;i < globbuf.gl_pathc;i++) { in launchTests() 828 if (!checkTestFile(globbuf.gl_pathv[i])) in launchTests() 831 result = resultFilename(globbuf.gl_pathv[i], tst->out, in launchTests() 841 error = resultFilename(globbuf.gl_pathv[i], tst->out, in launchTests() 859 res = tst->func(globbuf.gl_pathv[i], result, error, in launchTests() 864 globbuf.gl_pathv[i]); in launchTests() 872 globbuf.gl_pathv[i], xmlMemUsed() - mem); in launchTests() [all …]
|
D | runtest.c | 2565 glob_t globbuf; in xpathDocTest() local 2580 globbuf.gl_offs = 0; in xpathDocTest() 2581 glob(pattern, GLOB_DOOFFS, NULL, &globbuf); in xpathDocTest() 2582 for (i = 0;i < globbuf.gl_pathc;i++) { in xpathDocTest() 2584 baseFilename(globbuf.gl_pathv[i])); in xpathDocTest() 2587 res = xpathCommonTest(globbuf.gl_pathv[i], &result[0], 0, 0); in xpathDocTest() 2591 globfree(&globbuf); in xpathDocTest() 2617 glob_t globbuf; in xptrDocTest() local 2632 globbuf.gl_offs = 0; in xptrDocTest() 2633 glob(pattern, GLOB_DOOFFS, NULL, &globbuf); in xptrDocTest() [all …]
|
/third_party/chromium/patch/ |
D | 0001-cve.patch | 125234 glob_t globbuf; 125253 globbuf.gl_offs = 0; 125254 glob(pattern, GLOB_DOOFFS, NULL, &globbuf); 125255 for (i = 0;i < globbuf.gl_pathc;i++) { 125257 - baseFilename(globbuf.gl_pathv[i])); 125259 + subdir, baseFilename(globbuf.gl_pathv[i])); 125262 res = xpathCommonTest(globbuf.gl_pathv[i], &result[0], 1, 0); 125345 globbuf.gl_offs = 0; 125346 glob(pattern, GLOB_DOOFFS, NULL, &globbuf); 125347 for (i = 0;i < globbuf.gl_pathc;i++) { [all …]
|