Home
last modified time | relevance | path

Searched refs:pathname (Results 1 – 25 of 37) sorted by relevance

12

/PHP-7.4/Zend/
H A Dzend_virtual_cwd.h271 #define VCWD_MKDIR(pathname, mode) virtual_mkdir(pathname, mode) argument
272 #define VCWD_RMDIR(pathname) virtual_rmdir(pathname) argument
273 #define VCWD_OPENDIR(pathname) virtual_opendir(pathname) argument
275 #define VCWD_ACCESS(pathname, mode) virtual_access(pathname, mode) argument
297 #define VCWD_MKDIR(pathname, mode) php_win32_ioutil_mkdir(pathname, mode) argument
298 #define VCWD_RMDIR(pathname) php_win32_ioutil_rmdir(pathname) argument
301 #define VCWD_ACCESS(pathname, mode) tsrm_win32_access(pathname, mode) argument
309 #define VCWD_MKDIR(pathname, mode) mkdir(pathname, mode) argument
310 #define VCWD_RMDIR(pathname) rmdir(pathname) argument
313 #define VCWD_ACCESS(pathname, mode) access(pathname, mode) argument
[all …]
H A Dzend_virtual_cwd.c1326 CWD_API int virtual_access(const char *pathname, int mode) /* {{{ */ in virtual_access() argument
1332 if (virtual_file_ex(&new_state, pathname, NULL, CWD_REALPATH)) { in virtual_access()
1584 CWD_API int virtual_mkdir(const char *pathname, mode_t mode) /* {{{ */ in virtual_mkdir() argument
1590 if (virtual_file_ex(&new_state, pathname, NULL, CWD_FILEPATH)) { in virtual_mkdir()
1605 CWD_API int virtual_rmdir(const char *pathname) /* {{{ */ in virtual_rmdir() argument
1611 if (virtual_file_ex(&new_state, pathname, NULL, CWD_EXPAND)) { in virtual_rmdir()
1630 CWD_API DIR *virtual_opendir(const char *pathname) /* {{{ */ in virtual_opendir() argument
1636 if (virtual_file_ex(&new_state, pathname, NULL, CWD_REALPATH)) { in virtual_opendir()
/PHP-7.4/ext/standard/
H A Dftok.c36 char *pathname, *proj; in PHP_FUNCTION() local
41 Z_PARAM_PATH(pathname, pathname_len) in PHP_FUNCTION()
55 if (php_check_open_basedir(pathname)) { in PHP_FUNCTION()
59 k = ftok(pathname, proj[0]); in PHP_FUNCTION()
/PHP-7.4/win32/
H A Dftok.c28 ftok(const char *pathname, int proj_id) in ftok() argument
34 PHP_WIN32_IOUTIL_INIT_W(pathname) in ftok()
/PHP-7.4/ext/standard/tests/file/
H A Dpathinfo_variaton.phpt32 /* 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 Drealpath_error-win32.phpt12 Description: Returns canonicalized absolute pathname
H A Dreadlink_realpath_variation3.phpt9 Description: Returns canonicalized absolute pathname
H A Dmkdir_rmdir_error.phpt5 /* Prototype: bool mkdir ( string $pathname [, int $mode [, bool $recursive [, resource $context]]…
H A Drealpath_basic3.phpt6 Description: Returns canonicalized absolute pathname
H A Dreadlink_realpath_error-win32.phpt15 Description: Returns canonicalized absolute pathname
H A Dreadlink_realpath_error.phpt15 Description: Returns canonicalized absolute pathname
H A Dmkdir_variation5.phpt12 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])
H A Drealpath_basic-win32.phpt12 Description: Returns canonicalized absolute pathname
H A Dreadlink_realpath_basic2-win32.phpt15 Description: Returns canonicalized absolute pathname
H A Dreadlink_realpath_basic2.phpt15 Description: Returns canonicalized absolute pathname
H A Dmkdir_rmdir_variation2.phpt12 /* Prototype: bool mkdir ( string $pathname [, int $mode [, bool $recursive [, resource $context]]…
H A Dmkdir_variation5-win32.phpt12 /* Prototype : bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])
H A Drealpath_basic-win32-mb.phpt12 Description: Returns canonicalized absolute pathname
H A Drealpath_variation-win32-mb.phpt12 Description: Returns canonicalized absolute pathname
H A Drealpath_variation-win32.phpt12 Description: Returns canonicalized absolute pathname
H A Dreadlink_realpath_basic1.phpt16 Description: Returns canonicalized absolute pathname
/PHP-7.4/TSRM/
H A Dtsrm_win32.c117 return pathname; in tsrm_win32_get_path_sid_key()
136 memcpy(bucket_key + ptc_sid_len, pathname, pathname_len + 1); in tsrm_win32_get_path_sid_key()
210 if(!IS_ABSOLUTE_PATH(pathname, strlen(pathname)+1)) { in tsrm_win32_access()
211 if(tsrm_realpath(pathname, real_path) == NULL) { in tsrm_win32_access()
215 pathname = real_path; in tsrm_win32_access()
218 PHP_WIN32_IOUTIL_INIT_W(pathname) in tsrm_win32_access()
277 bucket = realpath_cache_lookup(pathname, strlen(pathname), t); in tsrm_win32_access()
281 if(tsrm_realpath(pathname, real_path) != NULL) { in tsrm_win32_access()
282 pathname = real_path; in tsrm_win32_access()
283 bucket = realpath_cache_lookup(pathname, strlen(pathname), t); in tsrm_win32_access()
[all …]
H A Dtsrm_win32.h96 char * tsrm_win32_get_path_sid_key(const char *pathname, size_t pathname_len, size_t *key_len);
104 TSRM_API int tsrm_win32_access(const char *pathname, int mode);
/PHP-7.4/ext/ftp/tests/
H A Dftp_mlsd.phpt23 Warning: ftp_mlsd(): Missing pathname in MLSD response in %s on line %d
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_ssl_set.phpt45 'The pathname to a directory that contains trusted SSL CA certificates in PEM format.',

Completed in 35 milliseconds

12