Home
last modified time | relevance | path

Searched refs:stream (Results 526 – 550 of 655) sorted by relevance

1...<<21222324252627

/PHP-5.5/ext/standard/tests/file/
H A Dfread_fwrite_basic.phpt18 opening userspace stream) when 8192 bytes have been read whichever comes first.
H A Dbug38450.phpt2 Bug #38450 (constructor is not called for classes used in userspace stream wrappers)
H A Dbug38450_1.phpt2 Bug #38450 (constructor is not called for classes used in userspace stream wrappers)
H A Dbug38450_3.phpt2 Bug #38450 (constructor is not called for classes used in userspace stream wrappers)
H A Dfile_get_contents_error.phpt53 Warning: file_get_contents(/no/such/file/or/dir): failed to open stream: No such file or directory …
H A Dreadfile_error.phpt59 Warning: readfile(%s/non_existent_file.tmp): failed to open stream: %s in %s on line %d
/PHP-5.5/ext/phar/tests/
H A Ddelete_in_phar_confirm.phpt56 Warning: include(%sdelete_in_phar_confirm.phar.php/b/c.php): failed to open stream: phar error: "b/…
/PHP-5.5/ext/phar/tests/tar/
H A Ddelete_in_phar_confirm.phpt56 Warning: include(%sdelete_in_phar_confirm.phar.tar/b/c.php): failed to open stream: phar error: "b/…
/PHP-5.5/ext/standard/tests/dir/
H A Ddir_basic.phpt62 resource(%d) of type (stream)
/PHP-5.5/ext/standard/tests/strings/
H A Dvfprintf_variation17.phpt6 * Description: Write a formatted string to a stream
H A Dvfprintf_variation13_64bit.phpt10 * Description: Write a formatted string to a stream
H A Dvfprintf_variation13.phpt10 * Description: Write a formatted string to a stream
H A Dvfprintf_variation6.phpt6 * Description: Write a formatted string to a stream
H A Dvfprintf_variation7.phpt6 * Description: Write a formatted string to a stream
H A Dvfprintf_variation10.phpt6 * Description: Write a formatted string to a stream
H A Dvfprintf_variation12.phpt10 * Description: Write a formatted string to a stream
/PHP-5.5/main/streams/
H A Dphp_stream_context.h90 PHPAPI php_stream_context *php_stream_context_set(php_stream *stream, php_stream_context *context);
/PHP-5.5/ext/iconv/
H A Diconv.c2556 php_stream *stream, php_stream_filter *filter, in php_iconv_stream_filter_append_bucket() argument
2621 …if (NULL == (new_bucket = php_stream_bucket_new(stream, out_buf, (out_buf_size - ocnt), 1, persist… in php_iconv_stream_filter_append_bucket()
2634 …if (NULL == (new_bucket = php_stream_bucket_new(stream, out_buf, (out_buf_size - ocnt), 1, persist… in php_iconv_stream_filter_append_bucket()
2698 …if (NULL == (new_bucket = php_stream_bucket_new(stream, out_buf, (out_buf_size - ocnt), 1, persist… in php_iconv_stream_filter_append_bucket()
2711 …if (NULL == (new_bucket = php_stream_bucket_new(stream, out_buf, (out_buf_size - ocnt), 1, persist… in php_iconv_stream_filter_append_bucket()
2744 …if (NULL == (new_bucket = php_stream_bucket_new(stream, out_buf, (out_buf_size - ocnt), 1, persist… in php_iconv_stream_filter_append_bucket()
2763 php_stream *stream, php_stream_filter *filter, in php_iconv_stream_filter_do_filter() argument
2777 if (php_iconv_stream_filter_append_bucket(self, stream, filter, in php_iconv_stream_filter_do_filter()
2779 php_stream_is_persistent(stream) TSRMLS_CC) != SUCCESS) { in php_iconv_stream_filter_do_filter()
2787 if (php_iconv_stream_filter_append_bucket(self, stream, filter, in php_iconv_stream_filter_do_filter()
[all …]
/PHP-5.5/ext/standard/tests/array/
H A Dcurrent_variation2.phpt154 resource(%d) of type (stream)
H A Darray_unique_variation4.phpt129 resource(%d) of type (stream)
/PHP-5.5/ext/hash/tests/
H A Dhash_file_error.phpt55 Warning: hash_file(%s): failed to open stream: No such file or directory in %s on line %d
/PHP-5.5/ext/zip/
H A Dphp_zip.c145 php_stream *stream; in php_zip_extract_file() local
258 stream = php_stream_open_wrapper(fullpath, "w+b", REPORT_ERRORS|ENFORCE_SAFE_MODE, NULL); in php_zip_extract_file()
260 stream = php_stream_open_wrapper(fullpath, "w+b", REPORT_ERRORS, NULL); in php_zip_extract_file()
263 if (stream == NULL) { in php_zip_extract_file()
271 php_stream_close(stream); in php_zip_extract_file()
278 php_stream_write(stream, b, n); in php_zip_extract_file()
281 php_stream_close(stream); in php_zip_extract_file()
2600 php_stream *stream; in ZIPARCHIVE_METHOD() local
2619 stream = php_stream_zip_open(obj->filename, filename, mode STREAMS_CC TSRMLS_CC); in ZIPARCHIVE_METHOD()
2620 if (stream) { in ZIPARCHIVE_METHOD()
[all …]
/PHP-5.5/ext/standard/tests/image/
H A Dgetimagesize.phpt104 string(24) "application/octet-stream"
/PHP-5.5/ext/imap/
H A Dphp_imap.c760 void mail_getquota(MAILSTREAM *stream, char *qroot, QUOTALIST *qlist) in mail_getquota() argument
790 void mail_getacl(MAILSTREAM *stream, char *mailbox, ACLLIST *alist) in mail_getacl() argument
2408 zval *stream, **out; in PHP_FUNCTION() local
2419 ZEND_FETCH_RESOURCE(imap_ptr, pils *, &stream, -1, "imap", le_imap); in PHP_FUNCTION()
4313 static long _php_rfc822_soutr (void *stream, char *string) in _php_rfc822_soutr() argument
4315 smart_str *ret = (smart_str*)stream; in _php_rfc822_soutr()
4824 if (!f(stream, read, buf)) { in php_mail_gets()
4836 if (f(stream, size, buf)) { in php_mail_gets()
4878 PHP_IMAP_EXPORT void mm_flags(MAILSTREAM *stream, unsigned long number) in mm_flags() argument
5064 PHP_IMAP_EXPORT void mm_critical(MAILSTREAM *stream) in mm_critical() argument
[all …]
/PHP-5.5/ext/imap/tests/
H A Dimap_fetch_overview_variation6.phpt66 $part4["subtype"] = "octet-stream";

Completed in 50 milliseconds

1...<<21222324252627