Home
last modified time | relevance | path

Searched defs:path (Results 1 – 25 of 80) sorted by relevance

1234

/PHP-7.1/Zend/
H A Dzend_virtual_cwd.h70 #define COPY_WHEN_ABSOLUTE(path) 2 argument
71 #define IS_UNC_PATH(path, len) \ argument
73 #define IS_ABSOLUTE_PATH(path, len) \ argument
86 #define IS_ABSOLUTE_PATH(path, len) \ argument
109 #define COPY_WHEN_ABSOLUTE(path) 0 argument
113 #define IS_ABSOLUTE_PATH(path, len) \ argument
216 char *path; member
271 #define VCWD_CHDIR(path) virtual_chdir(path) argument
278 #define VCWD_UNLINK(path) virtual_unlink(path) argument
319 #define VCWD_UNLINK(path) unlink(path) argument
[all …]
H A Dzend_virtual_cwd.c673 CWD_API void realpath_cache_del(const char *path, int path_len) /* {{{ */ in realpath_cache_del()
1482 CWD_API int virtual_chdir(const char *path) /* {{{ */ in virtual_chdir()
1488 CWD_API int virtual_chdir_file(const char *path, int (*p_chdir)(const char *path)) /* {{{ */ in virtual_chdir_file()
1583 CWD_API int virtual_filepath(const char *path, char **filepath) /* {{{ */ in virtual_filepath()
1589 CWD_API FILE *virtual_fopen(const char *path, const char *mode) /* {{{ */ in virtual_fopen()
1725 CWD_API int virtual_open(const char *path, int flags, ...) /* {{{ */ in virtual_open()
1761 CWD_API int virtual_creat(const char *path, mode_t mode) /* {{{ */ in virtual_creat()
1816 CWD_API int virtual_stat(const char *path, zend_stat_t *buf) /* {{{ */ in virtual_stat()
1834 CWD_API int virtual_lstat(const char *path, zend_stat_t *buf) /* {{{ */ in virtual_lstat()
1852 CWD_API int virtual_unlink(const char *path) /* {{{ */ in virtual_unlink()
[all …]
/PHP-7.1/ext/phar/tests/files/
H A Dpear2coverage.phar.php532 function coverageInfo($path)
542 function retrieveCoverage($path)
649 protected $aggregator;
814 function coverageInfo($path)
824 function retrieveCoverage($path)
930 protected $pathCovered = array();
1200 }
1237 }
1271 return $id[0];
1323 $stmt->bindValue(':md5', $md5);
[all …]
/PHP-7.1/win32/
H A Dioutil.h122 #define PHP_WIN32_IOUTIL_INIT_W(path) \ argument
130 #define PHP_WIN32_IOUTIL_REINIT_W(path) do { \ argument
246 #define php_win32_ioutil_access_cond(path, mode) _waccess(pathw, mode) argument
247 #define php_win32_ioutil_unlink_cond(path) php_win32_ioutil_unlink_w(pathw) argument
248 #define php_win32_ioutil_rmdir_cond(path) php_win32_ioutil_rmdir_w(pathw) argument
250 __forceinline static int php_win32_ioutil_access(const char *path, mode_t mode) in php_win32_ioutil_access()
275 __forceinline static int php_win32_ioutil_open(const char *path, int flags, ...) in php_win32_ioutil_open()
310 __forceinline static int php_win32_ioutil_unlink(const char *path) in php_win32_ioutil_unlink()
336 __forceinline static int php_win32_ioutil_rmdir(const char *path) in php_win32_ioutil_rmdir()
H A Dioutil.c189 PW32IO int php_win32_ioutil_open_w(const wchar_t *path, int flags, ...) in php_win32_ioutil_open_w()
307 PW32IO int php_win32_ioutil_mkdir(const char *path, mode_t mode) in php_win32_ioutil_mkdir()
361 PW32IO int php_win32_ioutil_unlink_w(const wchar_t *path) in php_win32_ioutil_unlink_w()
377 PW32IO int php_win32_ioutil_rmdir_w(const wchar_t *path) in php_win32_ioutil_rmdir_w()
393 PW32IO int php_win32_ioutil_chdir_w(const wchar_t *path) in php_win32_ioutil_chdir_w()
463 PW32IO size_t php_win32_ioutil_dirname(char *path, size_t len) in php_win32_ioutil_dirname()
H A Dregistry.c78 static int LoadDirectory(HashTable *directories, HKEY key, char *path, int path_len, HashTable *par… in LoadDirectory()
182 void UpdateIniFromRegistry(char *path) in UpdateIniFromRegistry()
/PHP-7.1/main/
H A Dfopen_wrappers.c138 PHPAPI int php_check_specific_open_basedir(const char *basedir, const char *path)
277 PHPAPI int php_check_open_basedir(const char *path)
284 PHPAPI int php_check_open_basedir_ex(const char *path, int warn)
333 static FILE *php_fopen_and_set_opened_path(const char *path, const char *mode, zend_string **opened…
479 PHPAPI zend_string *php_resolve_path(const char *filename, int filename_length, const char *path)
626 PHPAPI FILE *php_fopen_with_path(const char *filename, const char *mode, const char *path, zend_str…
H A Dphp_streams.h70 #define php_stream_fopen_with_path_rel(filename, mode, path, opened, options) _php_stream_fopen_wit… argument
81 #define php_stream_open_wrapper_rel(path, mode, options, opened) _php_stream_open_wrapper_ex((path)… argument
82 #define php_stream_open_wrapper_ex_rel(path, mode, options, opened, context) _php_stream_open_wrapp… argument
347 #define php_stream_stat_path(path, ssb) _php_stream_stat_path((path), 0, (ssb), NULL) argument
348 #define php_stream_stat_path_ex(path, flags, ssb, context) _php_stream_stat_path((path), (flags), (… argument
351 #define php_stream_mkdir(path, mode, options, context) _php_stream_mkdir(path, mode, options, conte… argument
354 #define php_stream_rmdir(path, options, context) _php_stream_rmdir(path, options, context) argument
357 #define php_stream_opendir(path, options, context) _php_stream_opendir((path), (options), (context)… argument
568 #define php_stream_open_wrapper(path, mode, options, opened) _php_stream_open_wrapper_ex((path), (m… argument
569 #define php_stream_open_wrapper_ex(path, mode, options, opened, context) _php_stream_open_wrapper_e… argument
/PHP-7.1/main/streams/
H A Dglob_wrapper.c44 char *path; member
112 static void php_glob_stream_path_split(glob_s_t *pglob, const char *path, int get_path, const char … in php_glob_stream_path_split()
144 const char *path; in php_glob_stream_read() local
209 static php_stream *php_glob_stream_opener(php_stream_wrapper *wrapper, const char *path, const char… in php_glob_stream_opener()
H A Dphp_stream_plain_wrapper.h34 #define php_stream_fopen_with_path(filename, mode, path, opened) _php_stream_fopen_with_path((filen… argument
55 #define php_stream_open_wrapper_as_file(path, mode, options, opened_path) _php_stream_open_wrapper_… argument
/PHP-7.1/ext/ftp/
H A Dftp.c692 ftp_nlist(ftpbuf_t *ftp, const char *path) in ftp_nlist()
701 ftp_list(ftpbuf_t *ftp, const char *path, int recursive) in ftp_list()
836 ftp_get(ftpbuf_t *ftp, php_stream *outstream, const char *path, ftptype_t type, zend_long resumepos) in ftp_get()
928 ftp_put(ftpbuf_t *ftp, const char *path, php_stream *instream, ftptype_t type, zend_long startpos) in ftp_put()
1006 ftp_size(ftpbuf_t *ftp, const char *path) in ftp_size()
1027 ftp_mdtm(ftpbuf_t *ftp, const char *path) in ftp_mdtm()
1075 ftp_delete(ftpbuf_t *ftp, const char *path) in ftp_delete()
1851 ftp_genlist(ftpbuf_t *ftp, const char *cmd, const char *path) in ftp_genlist()
1956 ftp_nb_get(ftpbuf_t *ftp, php_stream *outstream, const char *path, ftptype_t type, zend_long resume… in ftp_nb_get()
2073 ftp_nb_put(ftpbuf_t *ftp, const char *path, php_stream *instream, ftptype_t type, zend_long startpo… in ftp_nb_put()
/PHP-7.1/ext/standard/
H A Dhead.c80 PHPAPI int php_setcookie(zend_string *name, zend_string *value, time_t expires, zend_string *path, … in php_setcookie()
196 zend_string *name, *value = NULL, *path = NULL, *domain = NULL; in PHP_FUNCTION() local
217 zend_string *name, *value = NULL, *path = NULL, *domain = NULL; in PHP_FUNCTION() local
H A Dfilestat.c110 static int php_disk_total_space(char *path, double *space) /* {{{ */ in php_disk_total_space()
186 char *path; in PHP_FUNCTION() local
204 static int php_disk_free_space(char *path, double *space) /* {{{ */ in php_disk_free_space()
283 char *path; in PHP_FUNCTION() local
/PHP-7.1/ext/zip/
H A Dzip_stream.c125 const char *path = stream->orig_path; in php_zip_ops_stat() local
210 php_stream *php_stream_zip_open(const char *filename, const char *path, const char *mode STREAMS_DC) in php_stream_zip_open()
260 const char *path, in php_stream_zip_opener()
/PHP-7.1/ext/zip/lib/
H A Dmkstemp.c53 _zip_mkstemp(char *path) in _zip_mkstemp()
/PHP-7.1/ext/spl/examples/
H A Dnocvsdir.php32 function __construct($path)
/PHP-7.1/ext/
H A Dext_skel_win32.php21 $path = getenv("PATH"); variable
/PHP-7.1/ext/phar/
H A Dutil.c170 int phar_mount_entry(phar_archive_data *phar, char *filename, int filename_len, char *path, int pat… in phar_mount_entry()
249 char *path, *fname, *arch, *entry, *test; in phar_find_in_include_path() local
345 int phar_get_entry_data(phar_entry_data **ret, char *fname, int fname_len, char *path, int path_len… in phar_get_entry_data()
511 phar_entry_data *phar_get_or_create_entry_data(char *fname, int fname_len, char *path, int path_len… in phar_get_or_create_entry_data()
1202 phar_entry_info *phar_get_entry_info(phar_archive_data *phar, char *path, int path_len, char **erro… in phar_get_entry_info()
1212 phar_entry_info *phar_get_entry_info_dir(phar_archive_data *phar, char *path, int path_len, char di… in phar_get_entry_info_dir()
H A Dshortarc.php245 static function extractFile($path, $entry, $fp)
/PHP-7.1/ext/pcre/
H A Dupgrade-pcre.php32 function recurse($path)
/PHP-7.1/ext/fileinfo/libmagic/
H A Dapptype.c49 char path[_MAX_PATH], drive[_MAX_DRIVE], dir[_MAX_DIR], in file_os2_apptype() local
/PHP-7.1/ext/opcache/
H A Dzend_accelerator_blacklist.h28 char *path; member
/PHP-7.1/ext/bz2/
H A Dphp_bz2.h57 #define php_stream_bz2open(wrapper, path, mode, options, opened_path) _php_stream_bz2open((wrapper)… argument
/PHP-7.1/sapi/phpdbg/
H A Dphpdbg_webdata_transfer.c106 char path[MAXPATHLEN]; in phpdbg_webdata_compress() local
/PHP-7.1/scripts/dev/
H A Dcheck_parameters.php299 function recurse($path)

Completed in 73 milliseconds

1234