globbuf           313 ext/opcache/zend_accelerator_blacklist.c 	glob_t globbuf;
globbuf           317 ext/opcache/zend_accelerator_blacklist.c 	memset(&globbuf, 0, sizeof(glob_t));
globbuf           319 ext/opcache/zend_accelerator_blacklist.c 	ret = glob(filename, 0, NULL, &globbuf);
globbuf           321 ext/opcache/zend_accelerator_blacklist.c 	if (ret == GLOB_NOMATCH || !globbuf.gl_pathc) {
globbuf           323 ext/opcache/zend_accelerator_blacklist.c 	if (!globbuf.gl_pathc) {
globbuf           327 ext/opcache/zend_accelerator_blacklist.c 		for(i=0 ; i<globbuf.gl_pathc; i++) {
globbuf           328 ext/opcache/zend_accelerator_blacklist.c 			zend_accel_blacklist_loadone(blacklist, globbuf.gl_pathv[i]);
globbuf           330 ext/opcache/zend_accelerator_blacklist.c 		globfree(&globbuf);
globbuf           441 ext/standard/dir.c 	glob_t globbuf;
globbuf           479 ext/standard/dir.c 	memset(&globbuf, 0, sizeof(glob_t));
globbuf           480 ext/standard/dir.c 	globbuf.gl_offs = 0;
globbuf           481 ext/standard/dir.c 	if (0 != (ret = glob(pattern, flags & GLOB_FLAGMASK, NULL, &globbuf))) {
globbuf           499 ext/standard/dir.c 	if (!globbuf.gl_pathc || !globbuf.gl_pathv) {
globbuf           518 ext/standard/dir.c 	for (n = 0; n < globbuf.gl_pathc; n++) {
globbuf           520 ext/standard/dir.c 			if (php_check_open_basedir_ex(globbuf.gl_pathv[n], 0)) {
globbuf           536 ext/standard/dir.c 			if (0 != VCWD_STAT(globbuf.gl_pathv[n], &s)) {
globbuf           544 ext/standard/dir.c 		add_next_index_string(return_value, globbuf.gl_pathv[n]+cwd_skip);
globbuf           547 ext/standard/dir.c 	globfree(&globbuf);
globbuf           501 ext/zip/php_zip.c 	glob_t globbuf;
globbuf           533 ext/zip/php_zip.c 	globbuf.gl_offs = 0;
globbuf           534 ext/zip/php_zip.c 	if (0 != (ret = glob(pattern, flags & GLOB_FLAGMASK, NULL, &globbuf))) {
globbuf           553 ext/zip/php_zip.c 	if (!globbuf.gl_pathc || !globbuf.gl_pathv) {
globbuf           560 ext/zip/php_zip.c 	strncpy(cwd, globbuf.gl_pathv[0], MAXPATHLEN);
globbuf           566 ext/zip/php_zip.c 	for (n = 0; n < globbuf.gl_pathc; n++) {
globbuf           578 ext/zip/php_zip.c 			if (0 != VCWD_STAT(globbuf.gl_pathv[n], &s)) {
globbuf           586 ext/zip/php_zip.c 		add_next_index_string(return_value, globbuf.gl_pathv[n]+cwd_skip);
globbuf           589 ext/zip/php_zip.c 	globfree(&globbuf);
globbuf           590 ext/zip/php_zip.c 	return globbuf.gl_pathc;