Home
last modified time | relevance | path

Searched refs:globbuf (Results 1 – 4 of 4) sorted by relevance

/PHP-8.2/ext/standard/
H A Ddir.c410 glob_t globbuf; in PHP_FUNCTION() local
451 memset(&globbuf, 0, sizeof(glob_t)); in PHP_FUNCTION()
452 globbuf.gl_offs = 0; in PHP_FUNCTION()
453 if (0 != (ret = glob(pattern, flags & GLOB_FLAGMASK, NULL, &globbuf))) { in PHP_FUNCTION()
471 if (!globbuf.gl_pathc || !globbuf.gl_pathv) { in PHP_FUNCTION()
480 for (n = 0; n < (size_t)globbuf.gl_pathc; n++) { in PHP_FUNCTION()
482 if (php_check_open_basedir_ex(globbuf.gl_pathv[n], 0)) { in PHP_FUNCTION()
498 if (0 != VCWD_STAT(globbuf.gl_pathv[n], &s)) { in PHP_FUNCTION()
506 ZVAL_STRING(&tmp, globbuf.gl_pathv[n]+cwd_skip); in PHP_FUNCTION()
510 globfree(&globbuf); in PHP_FUNCTION()
/PHP-8.2/ext/opcache/
H A Dzend_accelerator_blacklist.c324 glob_t globbuf; local
328 memset(&globbuf, 0, sizeof(glob_t));
330 ret = glob(filename, 0, NULL, &globbuf);
332 if (ret == GLOB_NOMATCH || !globbuf.gl_pathc) {
334 if (!globbuf.gl_pathc) {
338 for(i=0 ; i<globbuf.gl_pathc; i++) {
339 zend_accel_blacklist_loadone(blacklist, globbuf.gl_pathv[i]);
341 globfree(&globbuf);
/PHP-8.2/ext/zip/
H A Dphp_zip.c609 glob_t globbuf; in php_zip_glob() local
642 globbuf.gl_offs = 0; in php_zip_glob()
643 if (0 != (ret = glob(pattern, flags & GLOB_FLAGMASK, NULL, &globbuf))) { in php_zip_glob()
662 if (!globbuf.gl_pathc || !globbuf.gl_pathv) { in php_zip_glob()
669 if (ZIP_OPENBASEDIR_CHECKPATH(globbuf.gl_pathv[0])) { in php_zip_glob()
674 for (n = 0; n < globbuf.gl_pathc; n++) { in php_zip_glob()
686 if (0 != VCWD_STAT(globbuf.gl_pathv[n], &s)) { in php_zip_glob()
694 add_next_index_string(return_value, globbuf.gl_pathv[n]+cwd_skip); in php_zip_glob()
697 ret = globbuf.gl_pathc; in php_zip_glob()
698 globfree(&globbuf); in php_zip_glob()
/PHP-8.2/ext/ffi/
H A Dffi.c5211 glob_t globbuf; local
5215 memset(&globbuf, 0, sizeof(glob_t));
5217 ret = glob(filename, 0, NULL, &globbuf);
5219 if (ret == GLOB_NOMATCH || !globbuf.gl_pathc) {
5221 if (!globbuf.gl_pathc) {
5225 for(i=0 ; i<globbuf.gl_pathc; i++) {
5226 zend_ffi *ffi = zend_ffi_load(globbuf.gl_pathv[i], 1);
5228 globfree(&globbuf);
5233 globfree(&globbuf);

Completed in 37 milliseconds