Home
last modified time | relevance | path

Searched refs:buffer (Results 176 – 200 of 321) sorted by relevance

12345678910>>...13

/PHP-8.0/sapi/phpdbg/
H A Dphpdbg_prompt.h23 void phpdbg_string_init(char *buffer);
/PHP-8.0/ext/xmlwriter/tests/
H A DOO_003.phpt29 // Force to write and empty the buffer
H A D011.phpt23 // Force to write and empty the buffer
H A D012.phpt25 // Force to write and empty the buffer
H A DOO_008.phpt24 // Force to write and empty the buffer
H A DOO_010.phpt24 // Force to write and empty the buffer
H A D010.phpt35 // Force to write and empty the buffer
H A DOO_011.phpt26 // Force to write and empty the buffer
H A D007.phpt26 // Force to write and empty the buffer
H A D008.phpt27 // Force to write and empty the buffer
/PHP-8.0/sapi/fpm/tests/
H A Dlog-bwp-msg-flush-split-real.phpt2 FPM: Buffered worker output plain log with msg with flush split in buffer
H A Dlog-bwp-msg-flush-split-fallback.phpt2 FPM: Buffered worker output plain log with msg with flush split in buffer
/PHP-8.0/ext/phar/
H A Dtar.c311 # define PHAR_GET_32(buffer) \ in phar_parse_tarfile() argument
312 (((((unsigned char*)(buffer))[3]) << 24) \ in phar_parse_tarfile()
313 | ((((unsigned char*)(buffer))[2]) << 16) \ in phar_parse_tarfile()
314 | ((((unsigned char*)(buffer))[1]) << 8) \ in phar_parse_tarfile()
315 | (((unsigned char*)(buffer))[0])) in phar_parse_tarfile()
317 # define PHAR_GET_32(buffer) (uint32_t) *(buffer) in phar_parse_tarfile() argument
1246 # define PHAR_SET_32(var, buffer) \ in phar_tar_flush() argument
1248 | ((((unsigned char*)&(buffer))[2]) << 16) \ in phar_tar_flush()
1249 | ((((unsigned char*)&(buffer))[1]) << 8) \ in phar_tar_flush()
1250 | (((unsigned char*)&(buffer))[0])) in phar_tar_flush()
[all …]
/PHP-8.0/ext/standard/tests/strings/
H A Dsetlocale_basic2.phpt17 // start the buffering of next command to internal output buffer
23 // get the contents from the internal output buffer
26 // fflush and end the output buffering to internal output buffer
/PHP-8.0/main/
H A Dmain.c878 char *buffer; in php_printf() local
882 size = vspprintf(&buffer, 0, format, args); in php_printf()
883 ret = PHPWRITE(buffer, size); in php_printf()
884 efree(buffer); in php_printf()
896 char *buffer; in php_printf_unchecked() local
901 ret = PHPWRITE(buffer, size); in php_printf_unchecked()
902 efree(buffer); in php_printf_unchecked()
948 efree(buffer); in php_verror()
951 buffer = ZSTR_VAL(replace_buffer); in php_verror()
954 buffer = ""; in php_verror()
[all …]
/PHP-8.0/ext/opcache/jit/dynasm/
H A Ddasm_proto.h70 DASM_FDEF int dasm_encode(Dst_DECL, void *buffer);
/PHP-8.0/ext/standard/tests/streams/
H A Dset_file_buffer.phpt2 int set_file_buffer ( resource $stream , int $buffer );
/PHP-8.0/ext/oci8/
H A Doci8_interface.c312 char *buffer = NULL; in PHP_FUNCTION() local
330 zend_string *ret = zend_string_init(buffer, buffer_len, 0); in PHP_FUNCTION()
331 if (buffer) in PHP_FUNCTION()
332 efree(buffer); in PHP_FUNCTION()
347 char *buffer; in PHP_FUNCTION() local
371 efree(buffer); in PHP_FUNCTION()
824 char *buffer; in PHP_FUNCTION() local
896 if (buffer) in PHP_FUNCTION()
897 efree(buffer); in PHP_FUNCTION()
900 if (buffer) { in PHP_FUNCTION()
[all …]
/PHP-8.0/ext/mbstring/tests/
H A Dbug77381.phpt2 Bug #77381 (heap buffer overflow in multibyte match_at)
/PHP-8.0/ext/phar/tests/
H A D010.phpt2 Phar::mapPhar buffer overrun
/PHP-8.0/ext/phar/tests/tar/
H A Dbignames_overflow.phpt2 Phar: tar with huge filenames, buffer overflow
/PHP-8.0/ext/zip/
H A Dphp_zip.c1309 zend_string *buffer; in PHP_FUNCTION() local
1326 n = zip_fread(zr_rsrc->zf, ZSTR_VAL(buffer), ZSTR_LEN(buffer)); in PHP_FUNCTION()
1329 ZSTR_LEN(buffer) = n; in PHP_FUNCTION()
1330 RETURN_NEW_STR(buffer); in PHP_FUNCTION()
1884 zend_string *buffer; local
1909 memcpy(ze_obj->buffers[pos], ZSTR_VAL(buffer), ZSTR_LEN(buffer) + 1);
2810 zend_string *buffer; local
2850 n = zip_fread(zf, ZSTR_VAL(buffer), ZSTR_LEN(buffer));
2852 zend_string_efree(buffer);
2858 ZSTR_LEN(buffer) = n;
[all …]
/PHP-8.0/ext/exif/tests/
H A Dbug78910.phpt2 Bug #78910: Heap-buffer-overflow READ in exif (OSS-Fuzz #19044)
/PHP-8.0/ext/gd/libgd/
H A Dgdtest.c17 static int fwriteWrapper (void *context, const char *buffer, int len);
406 fwriteWrapper (void *context, const char *buffer, int len) in fwriteWrapper() argument
408 return fwrite (buffer, 1, len, (FILE *) context); in fwriteWrapper()
/PHP-8.0/ext/openssl/tests/
H A Dstream_server_reneg_limit.phpt59 $buffer = fread($sock, 1024);
60 if (strlen($buffer)) {

Completed in 82 milliseconds

12345678910>>...13