Home
last modified time | relevance | path

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

/PHP-8.2/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.2/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.2/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.2/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.2/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.2/ext/simplexml/
H A Dsimplexml.c1385 xmlOutputBufferPtr outbuf; in PHP_METHOD() local
1413 outbuf = xmlOutputBufferCreateFilename(filename, NULL, 0); in PHP_METHOD()
1415 if (outbuf == NULL) { in PHP_METHOD()
1420 xmlOutputBufferClose(outbuf); in PHP_METHOD()
1437 outbuf = xmlAllocOutputBuffer(NULL); in PHP_METHOD()
1439 if (outbuf == NULL) { in PHP_METHOD()
1444 xmlOutputBufferFlush(outbuf); in PHP_METHOD()
1447 return_len = xmlOutputBufferGetSize(outbuf); in PHP_METHOD()
1449 return_content = (char *)outbuf->buffer->content; in PHP_METHOD()
1450 return_len = outbuf->buffer->use; in PHP_METHOD()
[all …]
/PHP-8.2/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.2/ext/openssl/
H A Dopenssl.c7426 zend_string *outbuf = NULL; in php_openssl_encrypt() local
7453 outbuf = NULL; in php_openssl_encrypt()
7464 outbuf = base64_str; in php_openssl_encrypt()
7477 outbuf = NULL; in php_openssl_encrypt()
7484 outbuf = NULL; in php_openssl_encrypt()
7489 outbuf = NULL; in php_openssl_encrypt()
7500 return outbuf; in php_openssl_encrypt()
7540 zend_string *outbuf = NULL; in php_openssl_decrypt() local
7578 outbuf = NULL; in php_openssl_decrypt()
7587 outbuf = NULL; in php_openssl_decrypt()
[all …]
/PHP-8.2/ext/soap/
H A Dsoap.c1771 zval outbuf; local
1774 ZVAL_UNDEF(&outbuf);
1789 php_output_get_contents(&outbuf);
1795 set_soap_fault(&fault_obj, NULL, code, ZSTR_VAL(buffer), NULL, &outbuf, NULL);

Completed in 84 milliseconds