Lines Matching refs:globbuf

2493     glob_t globbuf;  in xpathDocTest()  local
2506 globbuf.gl_offs = 0; in xpathDocTest()
2507 glob(pattern, GLOB_DOOFFS, NULL, &globbuf); in xpathDocTest()
2508 for (i = 0;i < globbuf.gl_pathc;i++) { in xpathDocTest()
2510 baseFilename(globbuf.gl_pathv[i])); in xpathDocTest()
2511 res = xpathCommonTest(globbuf.gl_pathv[i], &result[0], 0, 0); in xpathDocTest()
2515 globfree(&globbuf); in xpathDocTest()
2541 glob_t globbuf; in xptrDocTest() local
2554 globbuf.gl_offs = 0; in xptrDocTest()
2555 glob(pattern, GLOB_DOOFFS, NULL, &globbuf); in xptrDocTest()
2556 for (i = 0;i < globbuf.gl_pathc;i++) { in xptrDocTest()
2558 baseFilename(globbuf.gl_pathv[i])); in xptrDocTest()
2559 res = xpathCommonTest(globbuf.gl_pathv[i], &result[0], 1, 0); in xptrDocTest()
2563 globfree(&globbuf); in xptrDocTest()
3076 glob_t globbuf; in schemasTest() local
3116 globbuf.gl_offs = 0; in schemasTest()
3117 glob(pattern, GLOB_DOOFFS, NULL, &globbuf); in schemasTest()
3118 for (i = 0;i < globbuf.gl_pathc;i++) { in schemasTest()
3121 instance = globbuf.gl_pathv[i]; in schemasTest()
3145 globfree(&globbuf); in schemasTest()
3253 glob_t globbuf; in rngTest() local
3281 globbuf.gl_offs = 0; in rngTest()
3282 glob(pattern, GLOB_DOOFFS, NULL, &globbuf); in rngTest()
3283 for (i = 0;i < globbuf.gl_pathc;i++) { in rngTest()
3286 instance = globbuf.gl_pathv[i]; in rngTest()
3310 globfree(&globbuf); in rngTest()
3340 glob_t globbuf; in rngStreamTest() local
3370 globbuf.gl_offs = 0; in rngStreamTest()
3371 glob(pattern, GLOB_DOOFFS, NULL, &globbuf); in rngStreamTest()
3372 for (i = 0;i < globbuf.gl_pathc;i++) { in rngStreamTest()
3375 instance = globbuf.gl_pathv[i]; in rngStreamTest()
3406 globfree(&globbuf); in rngStreamTest()
4423 glob_t globbuf; in launchTests() local
4425 globbuf.gl_offs = 0; in launchTests()
4426 glob(tst->in, GLOB_DOOFFS, NULL, &globbuf); in launchTests()
4427 for (i = 0;i < globbuf.gl_pathc;i++) { in launchTests()
4428 if (!checkTestFile(globbuf.gl_pathv[i])) in launchTests()
4431 (strstr(globbuf.gl_pathv[i], "ebcdic") != NULL)) || in launchTests()
4433 (strstr(globbuf.gl_pathv[i], "icu_parse_test") != NULL))) in launchTests()
4436 result = resultFilename(globbuf.gl_pathv[i], tst->out, in launchTests()
4446 error = resultFilename(globbuf.gl_pathv[i], tst->out, in launchTests()
4464 res = tst->func(globbuf.gl_pathv[i], result, error, in launchTests()
4469 globbuf.gl_pathv[i]); in launchTests()
4477 globbuf.gl_pathv[i], xmlMemUsed() - mem); in launchTests()
4489 globfree(&globbuf); in launchTests()