| /PHP_5_5/ext/zip/ |
| H A D | zip_stream.c | 241 char **opened_path, 301 if (opened_path) { 302 *opened_path = estrdup(path); 237 php_stream_zip_opener(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) argument
|
| /PHP_5_5/Zend/ |
| H A D | zend_stream.h | 65 char *opened_path; member in struct:_zend_file_handle
|
| H A D | zend_language_scanner.c | 269 file_handle->opened_path = NULL; 531 if (file_handle->opened_path) { 532 file_path = file_handle->opened_path; 616 char *opened_path = NULL; local 627 file_handle.opened_path = NULL; 634 if (!file_handle.opened_path) { 635 file_handle.opened_path = opened_path = estrndup(filename->value.str.val, filename->value.str.len); 638 zend_hash_add(&EG(included_files), file_handle.opened_path, strlen(file_handle.opened_path) [all...] |
| /PHP_5_5/ext/bz2/ |
| H A D | bz2.c | 211 char **opened_path, 238 if (opened_path && bz_file) { 239 *opened_path = estrdup(path_copy); 245 stream = php_stream_open_wrapper(path, mode, options | STREAM_WILL_CAST, opened_path); 257 if (opened_path && !bz_file && mode[0] == 'w') { 258 VCWD_UNLINK(*opened_path); 207 _php_stream_bz2open(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) argument
|
| /PHP_5_5/ext/standard/ |
| H A D | ftp_fopen_wrapper.c | 133 static php_stream *php_ftp_fopen_connect(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context, argument 413 php_stream * php_stream_url_wrap_ftp(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) argument 456 return php_stream_url_wrap_http(wrapper, path, mode, options, opened_path, context STREAMS_CC TSRMLS_CC); 464 stream = php_ftp_fopen_connect(wrapper, path, mode, options, opened_path, context, &reuseid, &resource, &use_ssl, &use_ssl_on_data TSRMLS_CC); 694 php_stream * php_stream_ftp_opendir(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) argument 706 stream = php_ftp_fopen_connect(wrapper, path, mode, options, opened_path, context, &reuseid, &resource, &use_ssl, &use_ssl_on_data TSRMLS_CC);
|
| H A D | php_fopen_wrapper.c | 160 php_stream * php_stream_url_wrap_php(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) /* {{{ */ argument 322 if (!(stream = php_stream_open_wrapper(p + 10, mode, options, opened_path))) {
|
| H A D | file.c | 805 char *opened_path; local 824 if ((fd = php_open_temporary_fd_ex(dir, p, &opened_path, 1 TSRMLS_CC)) >= 0) { 826 RETVAL_STRING(opened_path, 0);
|
| H A D | http_fopen_wrapper.c | 87 php_stream *php_stream_url_wrap_http_ex(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context, int redirect_max, int flags STREAMS_DC TSRMLS_DC) /* {{{ */ argument 870 stream = php_stream_url_wrap_http_ex(wrapper, new_path, mode, options, opened_path, context, --redirect_max, HTTP_WRAPPER_REDIRECTED STREAMS_CC TSRMLS_CC); 924 php_stream *php_stream_url_wrap_http(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) /* {{{ */ argument 926 return php_stream_url_wrap_http_ex(wrapper, path, mode, options, opened_path, context, PHP_URL_REDIRECT_MAX, HTTP_WRAPPER_HEADER_INIT STREAMS_CC TSRMLS_CC);
|
| /PHP_5_5/ext/zlib/ |
| H A D | zlib_fopen_wrapper.c | 110 char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) 129 innerstream = php_stream_open_wrapper_ex(path, mode, STREAM_MUST_SEEK | options | STREAM_WILL_CAST, opened_path, context); 109 php_stream_gzopen(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) argument
|
| /PHP_5_5/main/streams/ |
| H A D | glob_wrapper.c | 210 int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) 222 if (opened_path) { 223 *opened_path = estrdup(path); 209 php_glob_stream_opener(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) argument
|
| H A D | memory.c | 601 static php_stream * php_stream_url_wrap_rfc2397(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) /* {{{ */ argument
|
| H A D | plain_wrapper.c | 184 PHPAPI php_stream *_php_stream_fopen_temporary_file(const char *dir, const char *pfx, char **opened_path STREAMS_DC TSRMLS_DC) 186 int fd = php_open_temporary_fd(dir, pfx, opened_path TSRMLS_CC); 204 char *opened_path = NULL; local 205 int fd = php_open_temporary_fd(NULL, "php", &opened_path TSRMLS_CC); 212 stream->orig_path = estrdup(opened_path); 214 self->temp_file_name = opened_path; 855 int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) 862 return php_glob_stream_wrapper.wops->dir_opener(&php_glob_stream_wrapper, path, mode, options, opened_path, context STREAMS_REL_CC TSRMLS_CC); 893 PHPAPI php_stream *_php_stream_fopen(const char *filename, const char *mode, char **opened_path, int options STREAMS_DC TSRMLS_DC) argument 921 if (opened_path) { 854 php_plain_files_dir_opener(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) argument 992 php_plain_files_stream_opener(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) argument 1374 _php_stream_fopen_with_path(char *filename, char *mode, char *path, char **opened_path, int options STREAMS_DC TSRMLS_DC) argument [all...] |
| H A D | userspace.c | 48 static php_stream *user_wrapper_opener(php_stream_wrapper *wrapper, char *filename, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC); 56 int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC); 154 function stream_open($path, $mode, $options, &$opened_path) 335 static php_stream *user_wrapper_opener(php_stream_wrapper *wrapper, char *filename, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) argument 408 if (Z_TYPE_P(zopened) == IS_STRING && opened_path) { 409 *opened_path = estrndup(Z_STRVAL_P(zopened), Z_STRLEN_P(zopened)); 441 int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) 440 user_wrapper_opendir(php_stream_wrapper *wrapper, char *filename, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) argument
|
| H A D | streams.c | 2007 char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) 2016 if (opened_path) { 2017 *opened_path = NULL; 2053 opened_path, context STREAMS_REL_CC TSRMLS_CC); 2071 if (opened_path && !*opened_path && resolved_path) { 2072 *opened_path = resolved_path; 2132 if (opened_path && *opened_path) { 2133 efree(*opened_path); 2006 _php_stream_open_wrapper_ex(char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) argument [all...] |
| /PHP_5_5/ext/phar/ |
| H A D | dirstream.c | 322 php_stream *phar_wrapper_open_dir(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) /* {{{ */ argument
|
| H A D | stream.c | 158 static php_stream * phar_wrapper_open_url(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) /* {{{ */ argument 234 if (opened_path) { 235 spprintf(opened_path, MAXPATHLEN, "phar://%s/%s", idata->phar->fname, idata->internal_file->filename); 252 if (opened_path) { 253 spprintf(opened_path, MAXPATHLEN, "%s", phar->fname); 278 if (opened_path) { 279 spprintf(opened_path, MAXPATHLEN, "%s", phar->fname); 335 if (opened_path) { 336 spprintf(opened_path, MAXPATHLEN, "phar://%s/%s", idata->phar->fname, idata->internal_file->filename);
|
| /PHP_5_5/main/ |
| H A D | php_open_temporary_file.c | 100 char *opened_path; local 141 if (spprintf(&opened_path, 0, "%s%s%sXXXXXX", new_state.cwd, trailing_slash, pfx) >= MAXPATHLEN) { 142 efree(opened_path); 149 if (GetTempFileName(new_state.cwd, pfx, 0, opened_path)) { 152 if (VCWD_CHMOD(opened_path, 0600)) { 153 efree(opened_path); 157 fd = VCWD_OPEN_MODE(opened_path, open_flags, 0600); 161 fd = mkstemp(opened_path); 163 if (mktemp(opened_path)) { 164 fd = VCWD_OPEN(opened_path, open_flag [all...] |
| /PHP_5_5/ext/dba/ |
| H A D | dba.c | 615 char *opened_path, *lock_name; local 829 info->lock.fp = php_stream_open_wrapper(lock_name, lock_file_mode, STREAM_MUST_SEEK|IGNORE_PATH|persistent_flag, &opened_path); 836 info->lock.name = opened_path; 838 info->lock.name = pestrdup(opened_path, persistent); 839 efree(opened_path); 844 info->lock.fp = php_stream_open_wrapper(lock_name, lock_file_mode, STREAM_MUST_SEEK|REPORT_ERRORS|IGNORE_PATH|persistent_flag, &opened_path); 849 info->path = pestrdup(opened_path, persistent); 853 info->lock.name = opened_path; 855 info->lock.name = pestrdup(opened_path, persistent); 856 efree(opened_path); [all...] |