Home
last modified time | relevance | path

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

/PHP-8.3/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.3/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.3/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.h159 char *outbuf; member
/PHP-8.3/ext/intl/timezone/
H A Dtimezone_methods.cpp304 char outbuf[3]; in PHP_FUNCTION() local
320 int32_t region_len = TimeZone::getRegion(id, outbuf, sizeof(outbuf), status); in PHP_FUNCTION()
323 RETURN_STRINGL(outbuf, region_len); in PHP_FUNCTION()
/PHP-8.3/ext/tidy/
H A Dtidy.c965 TidyBuffer inbuf, outbuf, errbuf; in php_tidy_output_handler() local
986 tidyBufInit(&outbuf); in php_tidy_output_handler()
987 tidySaveBuffer(doc, &outbuf); in php_tidy_output_handler()
988 FIX_BUFFER(&outbuf); in php_tidy_output_handler()
989 output_context->out.data = (char *) outbuf.bp; in php_tidy_output_handler()
990 output_context->out.used = outbuf.size ? outbuf.size-1 : 0; in php_tidy_output_handler()
/PHP-8.3/ext/simplexml/
H A Dsimplexml.c1376 xmlOutputBufferPtr outbuf; in PHP_METHOD() local
1404 outbuf = xmlOutputBufferCreateFilename(filename, NULL, 0); in PHP_METHOD()
1406 if (outbuf == NULL) { in PHP_METHOD()
1411 xmlOutputBufferClose(outbuf); in PHP_METHOD()
1428 outbuf = xmlAllocOutputBuffer(NULL); in PHP_METHOD()
1430 if (outbuf == NULL) { in PHP_METHOD()
1435 xmlOutputBufferFlush(outbuf); in PHP_METHOD()
1438 return_len = xmlOutputBufferGetSize(outbuf); in PHP_METHOD()
1440 return_content = (char *)outbuf->buffer->content; in PHP_METHOD()
1441 return_len = outbuf->buffer->use; in PHP_METHOD()
[all …]
/PHP-8.3/ext/ftp/
H A Dftp.h63 char outbuf[FTP_BUFSIZE]; /* command output buffer */ member
H A Dftp.c1278 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s %s\r\n", cmd, args); in ftp_putcmd()
1284 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s\r\n", cmd); in ftp_putcmd()
1287 data = ftp->outbuf; in ftp_putcmd()
/PHP-8.3/ext/openssl/
H A Dopenssl.c7628 zend_string *outbuf = NULL; in php_openssl_encrypt() local
7655 outbuf = NULL; in php_openssl_encrypt()
7666 outbuf = base64_str; in php_openssl_encrypt()
7679 outbuf = NULL; in php_openssl_encrypt()
7686 outbuf = NULL; in php_openssl_encrypt()
7691 outbuf = NULL; in php_openssl_encrypt()
7702 return outbuf; in php_openssl_encrypt()
7742 zend_string *outbuf = NULL; in php_openssl_decrypt() local
7780 outbuf = NULL; in php_openssl_decrypt()
7789 outbuf = NULL; in php_openssl_decrypt()
[all …]
/PHP-8.3/ext/mbstring/
H A Dmbstring.c5810 static void transfer_encode_mime_bytes(mb_convert_buf *tmpbuf, mb_convert_buf *outbuf, bool base64) in transfer_encode_mime_bytes() argument
5813 MB_CONVERT_BUF_LOAD(outbuf, out, limit); in transfer_encode_mime_bytes()
5817 MB_CONVERT_BUF_ENSURE(outbuf, out, limit, ((e - p) + 2) / 3 * 4); in transfer_encode_mime_bytes()
5841 MB_CONVERT_BUF_ENSURE(outbuf, out, limit, (e - p) * 3); in transfer_encode_mime_bytes()
5853 MB_CONVERT_BUF_STORE(outbuf, out, limit); in transfer_encode_mime_bytes()
6238 …char *p, unsigned char *e, const mbfl_encoding *outcode, mb_convert_buf *outbuf, unsigned int *sta… in mime_header_decode_encoded_word() argument
6342 outcode->from_wchar(wchar_buf, out_len, outbuf, false); in mime_header_decode_encoded_word()
/PHP-8.3/ext/soap/
H A Dsoap.c1770 zval outbuf; local
1773 ZVAL_UNDEF(&outbuf);
1788 php_output_get_contents(&outbuf);
1794 set_soap_fault(&fault_obj, NULL, code, ZSTR_VAL(buffer), NULL, &outbuf, NULL);

Completed in 79 milliseconds