| /PHP_5_4/TSRM/ |
| H A D | readdir.h | 34 char *dir; /* the dir we are reading */ member in struct:__anon3
|
| /PHP_5_4/build/ |
| H A D | config-stubs | 5 dir=$1; shift 6 for stubfile in $dir/*/config0.m4 $dir/*/config.m4 $dir/*/config9.m4; do
|
| /PHP_5_4/ext/phar/phar/ |
| H A D | pharcommand.inc | 249 self::notice("PEAR package PHP_Archive: corrupt or inaccessible base dir: $php_dir.\n"); 634 $dir = new RecursiveDirectoryIterator($input); 635 $dir = new RecursiveIteratorIterator($dir); 638 $dir = new RegexIterator($dir, $regex); 642 $dir = new InvertedRegexIterator($dir, $invregex); 646 foreach($dir as $file) { 648 self::phar_add_file($phar, $level, $dir [all...] |
| /PHP_5_4/ext/phar/tests/zip/files/ |
| H A D | zipmaker.php.inc | 56 * @param string $dir 58 function mkdir($dir) 60 $this->zip->addEmptyDir($dir);
|
| /PHP_5_4/ext/spl/examples/ |
| H A D | autoload.inc | 13 * Tries to load class $classname from directory $dir. 15 function __load_class($classname, $dir) 17 $file = $dir . '/' . $classname . '.inc'; 39 foreach($inc as $dir) 41 if (__load_class($classname, $dir))
|
| H A D | phar_from_dir.php | 33 $dir = new RecursiveDirectoryIterator($argv[2]); variable 34 $dir = new RecursiveIteratorIterator($dir); variable 37 $dir = new RegexIterator($dir, '/'.$argv[3].'/'); variable 42 foreach($dir as $file)
|
| /PHP_5_4/ext/zip/tests/ |
| H A D | utils.inc | 10 function rmdir_rf($dir) { 11 if ($handle = opendir($dir)) { 14 if (is_dir($dir . '/' . $item)) { 15 rmdir_rf($dir . '/' . $item); 17 unlink($dir . '/' . $item); 22 rmdir($dir);
|
| /PHP_5_4/ |
| H A D | ltmain.sh | 311 # func_extract_an_archive dir oldlib 1545 -inst-prefix-dir) 1563 dir=`$echo "X$arg" | $Xsed -e 's/^-L//'` 1565 case $dir in 1568 absdir=`cd "$dir" && pwd` 1570 $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2 1571 absdir="$dir" 1572 notinst_path="$notinst_path $dir" 1574 dir="$absdir" 1578 *" -L$dir "*) ;; [all...] |
| /PHP_5_4/scripts/dev/ |
| H A D | check_parameters.php | 359 foreach($dirs as $dir) { 360 if (is_dir($dir)) { 361 if (!is_readable($dir)) { 362 echo "ERROR: directory '", $dir ,"' is not readable\n"; 366 echo "ERROR: bogus directory '", $dir ,"'\n"; 371 foreach ($dirs as $dir) { 372 recurse(realpath($dir));
|
| H A D | extern_c.php | 3 function scan_dir($dir) { 4 if (!is_dir($dir)) return; 6 foreach (glob("$dir/*") as $file) { 39 foreach ($_SERVER["argv"] as $dir) { 40 scan_dir($dir);
|
| H A D | find_tested.php | 178 function get_phpt_files($dir, &$phpt_file_count, &$all_phpt) 180 $thisdir = dir($dir.'/'); //include the trailing slash
|
| /PHP_5_4/scripts/ |
| H A D | php-config.in | 54 --extension-dir) 56 --include-dir) 64 --man-dir) 78 --extension-dir [$extension_dir] 79 --include-dir [$include_dir] 80 --man-dir [$man_dir]
|
| /PHP_5_4/win32/build/ |
| H A D | confutils.js | 516 // returns the dir in which the file was found,
652 // It is common practice to put libs under one of these dir names
865 // if true, add the dir part of the header_name to the include path
890 * the dir part.... */
1312 function ADD_SOURCES(dir, file_list, target, obj_dir)
1336 dir = dir.replace(new RegExp("/", "g"), "\\");
1342 /* if module dir is not a child of the main source dir,
1350 var build_dir = dir [all...] |
| /PHP_5_4/win32/ |
| H A D | readdir.c | 22 DIR *opendir(const char *dir) argument 31 if (!VCWD_REALPATH(dir, resolved_path_buff)) { 63 dp->dir = strdup(resolved_path_buff); 128 if (dp->dir) 129 free(dp->dir); 148 filespec = (char *)malloc(strlen(dp->dir) + 2 + 1); 153 strcpy(filespec, dp->dir);
|
| H A D | readdir.h | 38 char *dir; /* the dir we are reading */ member in struct:__anon554
|
| /PHP_5_4/ext/fileinfo/libmagic/ |
| H A D | apptype.c | 49 char path[_MAX_PATH], drive[_MAX_DRIVE], dir[_MAX_DIR], local 61 _splitpath(filename, drive, dir, fname, ext); 63 (*dir == '\0') ? "./" : dir,
|
| H A D | readcdf.c | 229 cdf_dir_t dir; local 261 if ((i = cdf_read_dir(&info, &h, &sat, &dir)) == -1) { 266 if ((i = cdf_read_short_stream(&info, &h, &sat, &dir, &sst)) == -1) { 271 cdf_dump_dir(&info, &h, &sat, &ssat, &sst, &dir); 274 if ((i = cdf_read_summary_info(&info, &h, &sat, &ssat, &sst, &dir, 294 for (j = 0; j < dir.dir_len; j++) { 295 d = &dir.dir_tab[j]; 315 free(dir.dir_tab);
|
| /PHP_5_4/ext/ftp/ |
| H A D | ftp.h | 128 int ftp_chdir(ftpbuf_t *ftp, const char *dir); 136 char* ftp_mkdir(ftpbuf_t *ftp, const char *dir); 139 int ftp_rmdir(ftpbuf_t *ftp, const char *dir);
|
| /PHP_5_4/ext/gettext/ |
| H A D | gettext.c | 55 ZEND_ARG_INFO(0, dir) 244 /* {{{ proto string bindtextdomain(string domain_name, string dir) 245 Bind to the text domain domain_name, looking for translations in dir. Returns the current domain */ 248 char *domain, *dir; local 252 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &domain, &domain_len, &dir, &dir_len) == FAILURE) { 263 if (dir[0] != '\0' && strcmp(dir, "0")) { 264 if (!VCWD_REALPATH(dir, dir_name)) {
|
| /PHP_5_4/ext/standard/ |
| H A D | php_dir.h | 25 PHP_MINIT_FUNCTION(dir); variable 26 PHP_RINIT_FUNCTION(dir); variable
|
| /PHP_5_4/main/ |
| H A D | php_open_temporary_file.c | 247 * Unlike tempnam(), the supplied dir argument takes precedence 252 PHPAPI int php_open_temporary_fd_ex(const char *dir, const char *pfx, char **opened_path_p, zend_bool open_basedir_check TSRMLS_DC) argument 264 if (!dir || *dir == '\0') { 276 fd = php_do_open_temporary_file(dir, pfx, opened_path_p TSRMLS_CC); 284 PHPAPI int php_open_temporary_fd(const char *dir, const char *pfx, char **opened_path_p TSRMLS_DC) argument 286 return php_open_temporary_fd_ex(dir, pfx, opened_path_p, 0 TSRMLS_CC); 289 PHPAPI FILE *php_open_temporary_file(const char *dir, const char *pfx, char **opened_path_p TSRMLS_DC) argument 292 int fd = php_open_temporary_fd(dir, pfx, opened_path_p TSRMLS_CC);
|
| H A D | php_open_temporary_file.h | 25 PHPAPI FILE *php_open_temporary_file(const char *dir, const char *pfx, char **opened_path_p TSRMLS_DC); 26 PHPAPI int php_open_temporary_fd_ex(const char *dir, const char *pfx, char **opened_path_p, zend_bool open_basedir_check TSRMLS_DC); 27 PHPAPI int php_open_temporary_fd(const char *dir, const char *pfx, char **opened_path_p TSRMLS_DC);
|
| H A D | php_scandir.h | 28 #include <sys/dir.h>
|
| /PHP_5_4/ext/spl/ |
| H A D | spl_directory.c | 95 if (intern->u.dir.dirp) { 96 php_stream_close(intern->u.dir.dirp); 97 intern->u.dir.dirp = NULL; 99 if (intern->u.dir.sub_path) { 100 efree(intern->u.dir.sub_path); 190 if (php_stream_is(intern->u.dir.dirp ,&php_glob_stream_ops)) { 191 return php_glob_stream_get_path(intern->u.dir.dirp, 0, len); 214 slash, intern->u.dir.entry.d_name); 222 if (!intern->u.dir.dirp || !php_stream_readdir(intern->u.dir [all...] |
| /PHP_5_4/main/streams/ |
| H A D | php_stream_plain_wrapper.h | 48 PHPAPI php_stream *_php_stream_fopen_temporary_file(const char *dir, const char *pfx, char **opened_path STREAMS_DC TSRMLS_DC); 49 #define php_stream_fopen_temporary_file(dir, pfx, opened_path) _php_stream_fopen_temporary_file((dir), (pfx), (opened_path) STREAMS_CC TSRMLS_CC)
|