Searched refs:globbuf (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10.1/libxml2-26/libxml2/
H A Dtestrecurse.c823 glob_t globbuf; local
825 globbuf.gl_offs = 0;
826 glob(tst->in, GLOB_DOOFFS, NULL, &globbuf);
827 for (i = 0;i < globbuf.gl_pathc;i++) {
828 if (!checkTestFile(globbuf.gl_pathv[i]))
831 result = resultFilename(globbuf.gl_pathv[i], tst->out,
841 error = resultFilename(globbuf.gl_pathv[i], tst->out,
859 res = tst->func(globbuf.gl_pathv[i], result, error,
864 globbuf.gl_pathv[i]);
872 globbuf
[all...]
H A Druntest.c2409 glob_t globbuf; local
2422 globbuf.gl_offs = 0;
2423 glob(pattern, GLOB_DOOFFS, NULL, &globbuf);
2424 for (i = 0;i < globbuf.gl_pathc;i++) {
2426 baseFilename(globbuf.gl_pathv[i]));
2427 res = xpathCommonTest(globbuf.gl_pathv[i], &result[0], 0, 0);
2431 globfree(&globbuf);
2457 glob_t globbuf; local
2470 globbuf.gl_offs = 0;
2471 glob(pattern, GLOB_DOOFFS, NULL, &globbuf);
2992 glob_t globbuf; local
3169 glob_t globbuf; local
3256 glob_t globbuf; local
4327 glob_t globbuf; local
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dtestrecurse.c831 glob_t globbuf; local
833 globbuf.gl_offs = 0;
834 glob(tst->in, GLOB_DOOFFS, NULL, &globbuf);
835 for (i = 0;i < globbuf.gl_pathc;i++) {
836 if (!checkTestFile(globbuf.gl_pathv[i]))
839 result = resultFilename(globbuf.gl_pathv[i], tst->out,
849 error = resultFilename(globbuf.gl_pathv[i], tst->out,
867 res = tst->func(globbuf.gl_pathv[i], result, error,
872 globbuf.gl_pathv[i]);
880 globbuf
[all...]
H A Druntest.c2413 glob_t globbuf; local
2426 globbuf.gl_offs = 0;
2427 glob(pattern, GLOB_DOOFFS, NULL, &globbuf);
2428 for (i = 0;i < globbuf.gl_pathc;i++) {
2430 baseFilename(globbuf.gl_pathv[i]));
2431 res = xpathCommonTest(globbuf.gl_pathv[i], &result[0], 0, 0);
2435 globfree(&globbuf);
2461 glob_t globbuf; local
2474 globbuf.gl_offs = 0;
2475 glob(pattern, GLOB_DOOFFS, NULL, &globbuf);
2996 glob_t globbuf; local
3173 glob_t globbuf; local
3260 glob_t globbuf; local
4321 glob_t globbuf; local
[all...]
/macosx-10.10.1/rsync-45/rsync/
H A Dutil.c539 glob_t globbuf; local
551 memset(&globbuf, 0, sizeof globbuf);
553 glob(s, 0, NULL, &globbuf);
554 if (MAX((int)globbuf.gl_pathc, 1) > maxargs - argc) {
555 maxargs += globbuf.gl_pathc + MAX_ARGS;
561 if (globbuf.gl_pathc == 0)
566 for (i = 0; i < (int)globbuf.gl_pathc; i++) {
567 if (!(argv[argc++] = strdup(globbuf.gl_pathv[i])))
571 globfree(&globbuf);
[all...]

Completed in 135 milliseconds