Home
last modified time | relevance | path

Searched refs:outbuf (Results 1 – 12 of 12) sorted by relevance

/PHP-8.4/ext/zlib/
H A Dzlib_filter.c27 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-8.4/ext/bz2/
H A Dbz2_filter.c35 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-8.4/ext/pdo_odbc/
H A Dodbc_stmt.c358 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 Dphp_pdo_odbc_int.h157 char *outbuf; member
/PHP-8.4/ext/intl/timezone/
H A Dtimezone_methods.cpp299 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-8.4/ext/tidy/
H A Dtidy.c961 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-8.4/ext/ftp/
H A Dftp.h63 char outbuf[FTP_BUFSIZE]; /* command output buffer */ member
H A Dftp.c1298 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-8.4/ext/openssl/
H A Dopenssl.c7852 zend_string *outbuf = NULL; local
7879 outbuf = NULL;
7890 outbuf = base64_str;
7903 outbuf = NULL;
7910 outbuf = NULL;
7915 outbuf = NULL;
7926 return outbuf;
7966 zend_string *outbuf = NULL; local
8004 outbuf = NULL;
8013 outbuf = NULL;
[all …]
/PHP-8.4/ext/libxml/
H A Dlibxml.c1549 xmlOutputBufferPtr outbuf = xmlOutputBufferCreateFilename(filename, NULL, 0); in php_libxml_dump_node_to_file() local
1550 if (!outbuf) { in php_libxml_dump_node_to_file()
1554 xmlNodeDumpOutput(outbuf, doc, node, 0, format, encoding); in php_libxml_dump_node_to_file()
1555 return xmlOutputBufferClose(outbuf); in php_libxml_dump_node_to_file()
/PHP-8.4/ext/mbstring/
H A Dmbstring.c6102 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-8.4/ext/soap/
H A Dsoap.c1884 zval outbuf; in soap_real_error_handler() local
1887 ZVAL_UNDEF(&outbuf); in soap_real_error_handler()
1902 php_output_get_contents(&outbuf); in soap_real_error_handler()
1908 set_soap_fault(&fault_obj, NULL, code, ZSTR_VAL(buffer), NULL, &outbuf, NULL); in soap_real_error_handler()

Completed in 119 milliseconds