/PHP-7.2/Zend/ |
H A D | zend_virtual_cwd.h | 266 #define VCWD_MKDIR(pathname, mode) virtual_mkdir(pathname, mode) argument 267 #define VCWD_RMDIR(pathname) virtual_rmdir(pathname) argument 268 #define VCWD_OPENDIR(pathname) virtual_opendir(pathname) argument 270 #define VCWD_ACCESS(pathname, mode) virtual_access(pathname, mode) argument 292 #define VCWD_MKDIR(pathname, mode) php_win32_ioutil_mkdir(pathname, mode) argument 293 #define VCWD_RMDIR(pathname) php_win32_ioutil_rmdir(pathname) argument 296 #define VCWD_ACCESS(pathname, mode) tsrm_win32_access(pathname, mode) argument 304 #define VCWD_MKDIR(pathname, mode) mkdir(pathname, mode) argument 305 #define VCWD_RMDIR(pathname) rmdir(pathname) argument 308 #define VCWD_ACCESS(pathname, mode) access(pathname, mode) argument [all …]
|
H A D | zend_virtual_cwd.c | 1524 CWD_API int virtual_access(const char *pathname, int mode) /* {{{ */ in virtual_access() argument 1530 if (virtual_file_ex(&new_state, pathname, NULL, CWD_REALPATH)) { in virtual_access() 1782 CWD_API int virtual_mkdir(const char *pathname, mode_t mode) /* {{{ */ in virtual_mkdir() argument 1788 if (virtual_file_ex(&new_state, pathname, NULL, CWD_FILEPATH)) { in virtual_mkdir() 1803 CWD_API int virtual_rmdir(const char *pathname) /* {{{ */ in virtual_rmdir() argument 1809 if (virtual_file_ex(&new_state, pathname, NULL, CWD_EXPAND)) { in virtual_rmdir() 1828 CWD_API DIR *virtual_opendir(const char *pathname) /* {{{ */ in virtual_opendir() argument 1834 if (virtual_file_ex(&new_state, pathname, NULL, CWD_REALPATH)) { in virtual_opendir()
|
/PHP-7.2/ext/standard/ |
H A D | ftok.c | 38 char *pathname, *proj; in PHP_FUNCTION() local 43 Z_PARAM_PATH(pathname, pathname_len) in PHP_FUNCTION() 57 if (php_check_open_basedir(pathname)) { in PHP_FUNCTION() 61 k = ftok(pathname, proj[0]); in PHP_FUNCTION()
|
/PHP-7.2/ext/spl/examples/ |
H A D | nocvsdir.php | 50 foreach($it as $pathname => $file) 52 echo $pathname."\n";
|
H A D | directoryfilterdots.inc | 17 * This Iterator takes a pathname from which it creates a RecursiveDirectoryIterator
|
/PHP-7.2/win32/ |
H A D | ftok.c | 27 ftok(const char *pathname, int proj_id) in ftok() argument 33 PHP_WIN32_IOUTIL_INIT_W(pathname) in ftok()
|
/PHP-7.2/TSRM/ |
H A D | tsrm_win32.c | 119 return pathname; in tsrm_win32_get_path_sid_key() 212 PHP_WIN32_IOUTIL_INIT_W(pathname) in tsrm_win32_access() 227 if(!IS_ABSOLUTE_PATH(pathname, strlen(pathname)+1)) { in tsrm_win32_access() 229 if(tsrm_realpath(pathname, real_path) == NULL) { in tsrm_win32_access() 232 pathname = real_path; in tsrm_win32_access() 233 PHP_WIN32_IOUTIL_REINIT_W(pathname); in tsrm_win32_access() 236 if(php_win32_ioutil_access(pathname, mode)) { in tsrm_win32_access() 296 bucket = realpath_cache_lookup(pathname, strlen(pathname), t); in tsrm_win32_access() 302 pathname = real_path; in tsrm_win32_access() 303 bucket = realpath_cache_lookup(pathname, strlen(pathname), t); in tsrm_win32_access() [all …]
|
H A D | tsrm_win32.h | 98 char * tsrm_win32_get_path_sid_key(const char *pathname, size_t pathname_len, size_t *key_len); 106 TSRM_API int tsrm_win32_access(const char *pathname, int mode);
|
/PHP-7.2/ext/standard/tests/file/ |
H A D | pathinfo_variaton.phpt | 32 /* pathname containing numeric string */ 38 /* pathname as boolean */ 42 /* pathname as an array */ 46 /* pathname as object */ 49 /* pathname as spaces */ 53 /* empty pathname */ 57 /* pathname as NULL */ 64 /* pathname as members of object */ 71 /* pathname as member of array */
|
H A D | mkdir_variation1-win32.phpt | 2 Test mkdir() function : usage variation: try invalid pathname 12 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]]) 80 // loop through each element of the array for pathname
|
H A D | mkdir_variation1.phpt | 2 Test mkdir() function : usage variation: try invalid pathname 12 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]]) 79 // loop through each element of the array for pathname
|
H A D | mkdir_variation3.phpt | 7 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]]) 25 $pathname = 'mkdirVar3.tmp'; 110 $h = mkdir($pathname, $mode, $value); 113 rmdir($pathname);
|
H A D | mkdir_variation2.phpt | 9 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]]) 27 $pathname = 'mkdirVar2.tmp'; 105 $h = mkdir($pathname, $value); 108 rmdir($pathname);
|
H A D | realpath_error-win32.phpt | 12 Description: Returns canonicalized absolute pathname
|
H A D | mkdir_variation4.phpt | 7 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]]) 25 $pathname = 'mkdirVar4.tmp'; 116 $h = mkdir($pathname, $mode, $recursive, $value); 119 rmdir($pathname);
|
H A D | readlink_realpath_variation3.phpt | 15 Description: Returns canonicalized absolute pathname
|
H A D | mkdir_rmdir_error.phpt | 5 /* Prototype: bool mkdir ( string $pathname [, int $mode [, bool $recursive [, resource $context]]…
|
H A D | realpath_basic3.phpt | 6 Description: Returns canonicalized absolute pathname
|
H A D | mkdir_variation5.phpt | 12 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])
|
H A D | readlink_realpath_basic2.phpt | 15 Description: Returns canonicalized absolute pathname
|
H A D | readlink_realpath_error.phpt | 15 Description: Returns canonicalized absolute pathname
|
H A D | realpath_basic-win32.phpt | 12 Description: Returns canonicalized absolute pathname
|
H A D | mkdir_rmdir_variation2.phpt | 21 /* Prototype: bool mkdir ( string $pathname [, int $mode [, bool $recursive [, resource $context]]…
|
/PHP-7.2/ext/ftp/tests/ |
H A D | ftp_mlsd.phpt | 23 Warning: ftp_mlsd(): Missing pathname in MLSD response in %s on line %d
|
/PHP-7.2/ext/mysqli/tests/ |
H A D | mysqli_ssl_set.phpt | 45 'The pathname to a directory that contains trusted SSL CA certificates in PEM format.',
|