/php-src/ext/zlib/ |
H A D | zlib_filter.c | 27 unsigned char *outbuf; member 109 stream, estrndup((char *) data->outbuf, bucketlen), bucketlen, 1, 0); in php_zlib_inflate_filter() 112 data->strm.next_out = data->outbuf; in php_zlib_inflate_filter() 130 stream, estrndup((char *) data->outbuf, bucketlen), bucketlen, 1, 0); in php_zlib_inflate_filter() 133 data->strm.next_out = data->outbuf; in php_zlib_inflate_filter() 154 pefree(data->outbuf, data->persistent); in php_zlib_inflate_dtor() 225 stream, estrndup((char *) data->outbuf, bucketlen), bucketlen, 1, 0); in php_zlib_deflate_filter() 228 data->strm.next_out = data->outbuf; in php_zlib_deflate_filter() 249 data->strm.next_out = data->outbuf; in php_zlib_deflate_filter() 268 pefree(data->outbuf, data->persistent); in php_zlib_deflate_dtor() [all …]
|
/php-src/ext/bz2/ |
H A D | bz2_filter.c | 35 char *outbuf; member 140 out_bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0); in php_bz2_decompress_filter() 143 data->strm.next_out = data->outbuf; in php_bz2_decompress_filter() 163 bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0); in php_bz2_decompress_filter() 166 data->strm.next_out = data->outbuf; in php_bz2_decompress_filter() 189 pefree(data->outbuf, data->persistent); in php_bz2_decompress_dtor() 261 data->strm.next_out = data->outbuf; in php_bz2_compress_filter() 276 bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0); in php_bz2_compress_filter() 279 data->strm.next_out = data->outbuf; in php_bz2_compress_filter() 297 pefree(data->outbuf, data->persistent); in php_bz2_compress_dtor() [all …]
|
/php-src/ext/pdo_odbc/ |
H A D | odbc_stmt.c | 358 P->outbuf = NULL; in odbc_stmt_param_hook() 394 P->outbuf, in odbc_stmt_param_hook() 426 if (P->outbuf) { in odbc_stmt_param_hook() 428 char *ptr = P->outbuf; in odbc_stmt_param_hook() 429 char *end = P->outbuf + P->len; in odbc_stmt_param_hook() 451 if (P->outbuf) { in odbc_stmt_param_hook() 459 if (P->outbuf) { in odbc_stmt_param_hook() 470 if (P->outbuf) { in odbc_stmt_param_hook() 483 memcpy(P->outbuf, S->convbuf, P->len); in odbc_stmt_param_hook() 495 if (P->outbuf) { in odbc_stmt_param_hook() [all …]
|
H A D | php_pdo_odbc_int.h | 157 char *outbuf; member
|
/php-src/ext/intl/timezone/ |
H A D | timezone_methods.cpp | 299 char outbuf[3]; in PHP_FUNCTION() local 314 int32_t region_len = TimeZone::getRegion(id, outbuf, sizeof(outbuf), status); in PHP_FUNCTION() 317 RETURN_STRINGL(outbuf, region_len); in PHP_FUNCTION()
|
/php-src/ext/tidy/ |
H A D | tidy.c | 961 TidyBuffer inbuf, outbuf, errbuf; in php_tidy_output_handler() local 982 tidyBufInit(&outbuf); in php_tidy_output_handler() 983 tidySaveBuffer(doc, &outbuf); in php_tidy_output_handler() 984 FIX_BUFFER(&outbuf); in php_tidy_output_handler() 985 output_context->out.data = (char *) outbuf.bp; in php_tidy_output_handler() 986 output_context->out.used = outbuf.size ? outbuf.size-1 : 0; in php_tidy_output_handler()
|
/php-src/ext/ftp/ |
H A D | ftp.h | 63 char outbuf[FTP_BUFSIZE]; /* command output buffer */ member
|
H A D | ftp.c | 1298 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s %s\r\n", cmd, args); in ftp_putcmd() 1304 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s\r\n", cmd); in ftp_putcmd() 1307 data = ftp->outbuf; in ftp_putcmd()
|
/php-src/ext/openssl/ |
H A D | openssl.c | 7868 zend_string *outbuf = NULL; local 7895 outbuf = NULL; 7906 outbuf = base64_str; 7919 outbuf = NULL; 7926 outbuf = NULL; 7931 outbuf = NULL; 7942 return outbuf; 7982 zend_string *outbuf = NULL; local 8020 outbuf = NULL; 8029 outbuf = NULL; [all …]
|
/php-src/ext/libxml/ |
H A D | libxml.c | 1550 xmlOutputBufferPtr outbuf = xmlOutputBufferCreateFilename(filename, NULL, 0); in php_libxml_dump_node_to_file() local 1551 if (!outbuf) { in php_libxml_dump_node_to_file() 1555 xmlNodeDumpOutput(outbuf, doc, node, 0, format, encoding); in php_libxml_dump_node_to_file() 1556 return xmlOutputBufferClose(outbuf); in php_libxml_dump_node_to_file()
|
/php-src/ext/mbstring/ |
H A D | mbstring.c | 6102 static void transfer_encode_mime_bytes(mb_convert_buf *tmpbuf, mb_convert_buf *outbuf, bool base64) in transfer_encode_mime_bytes() argument 6105 MB_CONVERT_BUF_LOAD(outbuf, out, limit); in transfer_encode_mime_bytes() 6109 MB_CONVERT_BUF_ENSURE(outbuf, out, limit, ((e - p) + 2) / 3 * 4); in transfer_encode_mime_bytes() 6133 MB_CONVERT_BUF_ENSURE(outbuf, out, limit, (e - p) * 3); in transfer_encode_mime_bytes() 6145 MB_CONVERT_BUF_STORE(outbuf, out, limit); in transfer_encode_mime_bytes() 6530 …char *p, unsigned char *e, const mbfl_encoding *outcode, mb_convert_buf *outbuf, unsigned int *sta… in mime_header_decode_encoded_word() argument 6634 outcode->from_wchar(wchar_buf, out_len, outbuf, false); in mime_header_decode_encoded_word()
|
/php-src/ext/soap/ |
H A D | soap.c | 1887 zval outbuf; in soap_real_error_handler() local 1890 ZVAL_UNDEF(&outbuf); in soap_real_error_handler() 1905 php_output_get_contents(&outbuf); in soap_real_error_handler() 1911 set_soap_fault(&fault_obj, NULL, code, ZSTR_VAL(buffer), NULL, &outbuf, NULL); in soap_real_error_handler()
|