Home
last modified time | relevance | path

Searched refs:buffer (Results 51 – 75 of 342) sorted by relevance

12345678910>>...14

/PHP-8.3/tests/output/
H A Dob_start_basic_006.phpt2 ob_start(): ensure multiple buffer initialization with a single call using arrays is not supported …
78 Notice: ob_start(): Failed to create buffer in %s on line %d
86 Notice: ob_start(): Failed to create buffer in %s on line %d
94 Notice: ob_start(): Failed to create buffer in %s on line %d
102 Notice: ob_start(): Failed to create buffer in %s on line %d
110 Notice: ob_start(): Failed to create buffer in %s on line %d
130 Notice: ob_start(): Failed to create buffer in %s on line %d
H A Dbug70970.phpt12 function obHandler($buffer, $phase = null)
20 return $buffer;
/PHP-8.3/ext/fileinfo/tests/
H A Dgh13344.phpt2 GH-13344 (finfo::buffer(): Failed identify data 0:(null))
8 $mime_type = (new finfo(FILEINFO_MIME))->buffer($data);
/PHP-8.3/ext/tidy/tests/
H A D032.phpt9 $buffer = '<img src="file.png" /><php>';
11 $tidy = tidy_parse_string($buffer);
H A D033.phpt9 $buffer = '<img src="file.png" /><php>';
11 $tidy = tidy_parse_string($buffer);
H A D031.phpt9 $buffer = '<html></html>';
12 $tidy = tidy_parse_string($buffer, $config);
H A D034.phpt9 $buffer = '<img src="file.png" /><php>';
13 $tidy = tidy_parse_string($buffer, $config);
H A Dtidy_error1.phpt9 $buffer = '<html></html>';
13 var_dump($tidy->parseString($buffer, $config));
H A D030.phpt9 $buffer = '<html></html>';
15 $tidy->parseString($buffer, $config);
/PHP-8.3/ext/fileinfo/libmagic/
H A Dfile.h167 struct buffer { struct
524 protected int file_tryelf(struct magic_set *, const struct buffer *);
525 protected int file_trycdf(struct magic_set *, const struct buffer *);
527 protected int file_zmagic(struct magic_set *, const struct buffer *,
530 protected int file_ascmagic(struct magic_set *, const struct buffer *,
534 protected int file_encoding(struct magic_set *, const struct buffer *,
536 protected int file_is_json(struct magic_set *, const struct buffer *);
538 protected int file_is_tar(struct magic_set *, const struct buffer *);
580 protected void buffer_init(struct buffer *, int, const zend_stat_t *,
582 protected void buffer_fini(struct buffer *);
[all …]
/PHP-8.3/ext/spl/tests/
H A Dbug77751.phpt9 ob_start(function ($buffer) use ($logfile) {
10 $logfile->fwrite($buffer);
/PHP-8.3/ext/mysqlnd/
H A Dmysqlnd_protocol_frame_codec.c48 #define STORE_HEADER_SIZE(safe_storage, buffer) COPY_HEADER((safe_storage), (buffer)) argument
49 #define RESTORE_HEADER_SIZE(buffer, safe_storage) STORE_HEADER_SIZE((safe_storage), (buffer)) argument
115 …nd)(MYSQLND_PFC * const pfc, MYSQLND_VIO * const vio, zend_uchar * const buffer, const size_t coun… in MYSQLND_METHOD()
122 zend_uchar * p = (zend_uchar *) buffer; in MYSQLND_METHOD()
320 zend_uchar * p = buffer; in MYSQLND_METHOD()
405 if (!pfc->cmd_buffer.buffer) { in MYSQLND_METHOD()
406 pfc->cmd_buffer.buffer = mnd_pemalloc(pfc->cmd_buffer.length, pfc->persistent); in MYSQLND_METHOD()
408 …pfc->cmd_buffer.buffer = mnd_perealloc(pfc->cmd_buffer.buffer, pfc->cmd_buffer.length, pfc->persis… in MYSQLND_METHOD()
464 if (pfc->cmd_buffer.buffer) { in MYSQLND_METHOD()
466 mnd_pefree(pfc->cmd_buffer.buffer, pfc->persistent); in MYSQLND_METHOD()
[all …]
/PHP-8.3/ext/phar/
H A Dphar.c464 (buffer) += 4
468 (buffer) += 2
472 buffer += 4
475 buffer += 2
758 buffer = b32; in phar_parse_pharfile()
764 if ((*buffer == ' ' || *buffer == '\n') && *(buffer + 1) == '?' && *(buffer + 2) == '>') { in phar_parse_pharfile()
790 buffer = b32; in phar_parse_pharfile()
821 buffer += 2; in phar_parse_pharfile()
1110 buffer += len; in phar_parse_pharfile()
1191 buffer += len; in phar_parse_pharfile()
[all …]
/PHP-8.3/ext/bcmath/libbcmath/src/
H A Dint2num.c38 char buffer[30]; in bc_int2num() local
50 bptr = buffer; in bc_int2num()
/PHP-8.3/ext/fileinfo/
H A Dfileinfo.c293 char *ret_val = NULL, *buffer = NULL; in _php_finfo_get_type() local
310 buffer = Z_STRVAL_P(what); in _php_finfo_get_type()
331 …ameters(ZEND_NUM_ARGS(), getThis(), "Os|lr!", &self, finfo_class_entry, &buffer, &buffer_len, &opt… in _php_finfo_get_type()
346 ret_val = (char *) magic_buffer(magic, buffer, buffer_len); in _php_finfo_get_type()
378 if (buffer == NULL || buffer_len == 0) { in _php_finfo_get_type()
382 if (CHECK_NULL_PATH(buffer, buffer_len)) { in _php_finfo_get_type()
387 wrap = php_stream_locate_url_wrapper(buffer, &tmp2, 0); in _php_finfo_get_type()
394 if (php_stream_stat_path_ex(buffer, 0, &ssb, context) == SUCCESS) { in _php_finfo_get_type()
402 stream = php_stream_open_wrapper_ex(buffer, "rb", REPORT_ERRORS, NULL, context); in _php_finfo_get_type()
/PHP-8.3/ext/date/
H A Dphp_date.c761 length = slprintf(buffer, sizeof(buffer), "%03d", retval); in date_format()
777 length = slprintf(buffer, sizeof(buffer), "%s", "Z"); in date_format()
782 case 'O': length = slprintf(buffer, sizeof(buffer), "%c%02d%s%02d", in date_format()
791 length = slprintf(buffer, sizeof(buffer), "%s", "UTC"); in date_format()
798 length = slprintf(buffer, sizeof(buffer), "%s", offset->abbr); in date_format()
801 length = slprintf(buffer, sizeof(buffer), "%c%02d:%02d", in date_format()
834 default: buffer[0] = format[i]; buffer[1] = '\0'; length = 1; break; in date_format()
4785 length = slprintf(buffer, sizeof(buffer), "%d", (int) t->days); in date_interval_format()
4787 length = slprintf(buffer, sizeof(buffer), "(unknown)"); in date_interval_format()
4793 case '%': length = slprintf(buffer, sizeof(buffer), "%%"); break; in date_interval_format()
[all …]
/PHP-8.3/ext/gd/tests/
H A Dbug73159.phpt17 $buffer = ob_get_clean();
19 $header = unpack('@12/nformat', $buffer);
H A Dbug73157.phpt18 $buffer = ob_get_clean();
20 $header = unpack('@10/nchunk_size', $buffer);
/PHP-8.3/ext/standard/tests/general_functions/
H A Dob_get_flush_error.phpt16 Notice: ob_get_flush(): Failed to delete and flush buffer. No buffer to delete or flush in %s on li…
/PHP-8.3/ext/xmlwriter/tests/
H A D001.phpt2 XMLWriter: libxml2 XML Writer, file buffer, flush
14 // Force to write and empty the buffer
H A DOO_001.phpt2 XMLWriter: libxml2 XML Writer, file buffer, flush
15 // Force to write and empty the buffer
/PHP-8.3/ext/gd/libgd/
H A Dgd_jpeg.c91 char buffer[JMSG_LENGTH_MAX]; in fatal_jpeg_error() local
93 (*cinfo->err->format_message)(cinfo, buffer); in fatal_jpeg_error()
549 unsigned char *buffer; /* start of buffer */ member
617 memset(src->buffer, 0, INPUT_BUF_SIZE); in fill_input_buffer()
620 int got = gdGetBuf(src->buffer + nbytes, INPUT_BUF_SIZE - nbytes, src->infile); in fill_input_buffer()
638 src->buffer[0] = (unsigned char) 0xFF; in fill_input_buffer()
639 src->buffer[1] = (unsigned char) JPEG_EOI; in fill_input_buffer()
643 src->pub.next_input_byte = src->buffer; in fill_input_buffer()
753 unsigned char *buffer; /* start of buffer */ member
772 dest->pub.next_output_byte = dest->buffer; in init_destination()
[all …]
/PHP-8.3/ext/hash/
H A Dphp_hash_md.h27 unsigned char buffer[64]; member
40 unsigned char buffer[16]; member
/PHP-8.3/main/streams/
H A Dcast.c68 static int stream_cookie_reader(void *cookie, char *buffer, int size) in stream_cookie_reader() argument
72 ret = php_stream_read((php_stream*)cookie, buffer, size); in stream_cookie_reader()
76 static int stream_cookie_writer(void *cookie, const char *buffer, int size) in stream_cookie_writer() argument
79 return php_stream_write((php_stream *)cookie, (char *)buffer, size); in stream_cookie_writer()
98 static ssize_t stream_cookie_reader(void *cookie, char *buffer, size_t size) in stream_cookie_reader() argument
102 ret = php_stream_read(((php_stream *)cookie), buffer, size); in stream_cookie_reader()
106 static ssize_t stream_cookie_writer(void *cookie, const char *buffer, size_t size) in stream_cookie_writer() argument
109 return php_stream_write(((php_stream *)cookie), (char *)buffer, size); in stream_cookie_writer()
/PHP-8.3/ext/xsl/
H A Dphp_xsl.c226 char buffer[128]; in PHP_MINFO_FUNCTION() local
233 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION()
234 php_info_print_table_row(2, "libxslt Version", buffer); in PHP_MINFO_FUNCTION()
238 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION()
239 php_info_print_table_row(2, "libxslt compiled against libxml Version", buffer); in PHP_MINFO_FUNCTION()

Completed in 81 milliseconds

12345678910>>...14