globbuf           334 ext/opcache/zend_accelerator_blacklist.c 	glob_t globbuf;
globbuf           338 ext/opcache/zend_accelerator_blacklist.c 	memset(&globbuf, 0, sizeof(glob_t));
globbuf           340 ext/opcache/zend_accelerator_blacklist.c 	ret = glob(filename, 0, NULL, &globbuf);
globbuf           342 ext/opcache/zend_accelerator_blacklist.c 	if (ret == GLOB_NOMATCH || !globbuf.gl_pathc) {
globbuf           344 ext/opcache/zend_accelerator_blacklist.c 	if (!globbuf.gl_pathc) {
globbuf           348 ext/opcache/zend_accelerator_blacklist.c 		for(i=0 ; i<globbuf.gl_pathc; i++) {
globbuf           349 ext/opcache/zend_accelerator_blacklist.c 			zend_accel_blacklist_loadone(blacklist, globbuf.gl_pathv[i]);
globbuf           351 ext/opcache/zend_accelerator_blacklist.c 		globfree(&globbuf);
globbuf           434 ext/standard/dir.c 	glob_t globbuf;
globbuf           472 ext/standard/dir.c 	memset(&globbuf, 0, sizeof(glob_t));
globbuf           473 ext/standard/dir.c 	globbuf.gl_offs = 0;
globbuf           474 ext/standard/dir.c 	if (0 != (ret = glob(pattern, flags & GLOB_FLAGMASK, NULL, &globbuf))) {
globbuf           492 ext/standard/dir.c 	if (!globbuf.gl_pathc || !globbuf.gl_pathv) {
globbuf           511 ext/standard/dir.c 	for (n = 0; n < globbuf.gl_pathc; n++) {
globbuf           513 ext/standard/dir.c 			if (php_check_open_basedir_ex(globbuf.gl_pathv[n], 0 TSRMLS_CC)) {
globbuf           529 ext/standard/dir.c 			if (0 != VCWD_STAT(globbuf.gl_pathv[n], &s)) {
globbuf           537 ext/standard/dir.c 		add_next_index_string(return_value, globbuf.gl_pathv[n]+cwd_skip, 1);
globbuf           540 ext/standard/dir.c 	globfree(&globbuf);
globbuf           538 ext/zip/php_zip.c 	glob_t globbuf;
globbuf           570 ext/zip/php_zip.c 	globbuf.gl_offs = 0;
globbuf           571 ext/zip/php_zip.c 	if (0 != (ret = glob(pattern, flags & GLOB_FLAGMASK, NULL, &globbuf))) {
globbuf           590 ext/zip/php_zip.c 	if (!globbuf.gl_pathc || !globbuf.gl_pathv) {
globbuf           597 ext/zip/php_zip.c 	strncpy(cwd, globbuf.gl_pathv[0], MAXPATHLEN);
globbuf           603 ext/zip/php_zip.c 	for (n = 0; n < globbuf.gl_pathc; n++) {
globbuf           615 ext/zip/php_zip.c 			if (0 != VCWD_STAT(globbuf.gl_pathv[n], &s)) {
globbuf           623 ext/zip/php_zip.c 		add_next_index_string(return_value, globbuf.gl_pathv[n]+cwd_skip, 1);
globbuf           626 ext/zip/php_zip.c 	globfree(&globbuf);
globbuf           627 ext/zip/php_zip.c 	return globbuf.gl_pathc;