Home
last modified time | relevance | path

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

/PHP-8.1/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.1/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.1/ext/pdo_odbc/
H A Dodbc_stmt.c349 P->outbuf = NULL; in odbc_stmt_param_hook()
385 P->outbuf, in odbc_stmt_param_hook()
417 if (P->outbuf) { in odbc_stmt_param_hook()
419 char *ptr = P->outbuf; in odbc_stmt_param_hook()
420 char *end = P->outbuf + P->len; in odbc_stmt_param_hook()
442 if (P->outbuf) { in odbc_stmt_param_hook()
450 if (P->outbuf) { in odbc_stmt_param_hook()
461 if (P->outbuf) { in odbc_stmt_param_hook()
474 memcpy(P->outbuf, S->convbuf, P->len); in odbc_stmt_param_hook()
486 if (P->outbuf) { in odbc_stmt_param_hook()
[all …]
H A Dphp_pdo_odbc_int.h159 char *outbuf; member
/PHP-8.1/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.1/ext/simplexml/
H A Dsimplexml.c1382 xmlOutputBufferPtr outbuf; in PHP_METHOD() local
1410 outbuf = xmlOutputBufferCreateFilename(filename, NULL, 0); in PHP_METHOD()
1412 if (outbuf == NULL) { in PHP_METHOD()
1417 xmlOutputBufferClose(outbuf); in PHP_METHOD()
1434 outbuf = xmlAllocOutputBuffer(NULL); in PHP_METHOD()
1436 if (outbuf == NULL) { in PHP_METHOD()
1441 xmlOutputBufferFlush(outbuf); in PHP_METHOD()
1444 return_len = xmlOutputBufferGetSize(outbuf); in PHP_METHOD()
1446 return_content = (char *)outbuf->buffer->content; in PHP_METHOD()
1447 return_len = outbuf->buffer->use; in PHP_METHOD()
[all …]
/PHP-8.1/ext/ftp/
H A Dftp.h63 char outbuf[FTP_BUFSIZE]; /* command output buffer */ member
H A Dftp.c1254 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s %s\r\n", cmd, args); in ftp_putcmd()
1260 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s\r\n", cmd); in ftp_putcmd()
1263 data = ftp->outbuf; in ftp_putcmd()
/PHP-8.1/ext/tidy/
H A Dtidy.c946 TidyBuffer inbuf, outbuf, errbuf; in php_tidy_output_handler() local
967 tidyBufInit(&outbuf); in php_tidy_output_handler()
968 tidySaveBuffer(doc, &outbuf); in php_tidy_output_handler()
969 FIX_BUFFER(&outbuf); in php_tidy_output_handler()
970 output_context->out.data = (char *) outbuf.bp; in php_tidy_output_handler()
971 output_context->out.used = outbuf.size ? outbuf.size-1 : 0; in php_tidy_output_handler()
/PHP-8.1/ext/openssl/
H A Dopenssl.c7525 zend_string *outbuf = NULL; in php_openssl_encrypt() local
7552 outbuf = NULL; in php_openssl_encrypt()
7563 outbuf = base64_str; in php_openssl_encrypt()
7576 outbuf = NULL; in php_openssl_encrypt()
7583 outbuf = NULL; in php_openssl_encrypt()
7588 outbuf = NULL; in php_openssl_encrypt()
7599 return outbuf; in php_openssl_encrypt()
7639 zend_string *outbuf = NULL; in php_openssl_decrypt() local
7677 outbuf = NULL; in php_openssl_decrypt()
7686 outbuf = NULL; in php_openssl_decrypt()
[all …]
/PHP-8.1/ext/soap/
H A Dsoap.c1816 zval outbuf; local
1819 ZVAL_UNDEF(&outbuf);
1834 php_output_get_contents(&outbuf);
1840 set_soap_fault(&fault_obj, NULL, code, ZSTR_VAL(buffer), NULL, &outbuf, NULL);

Completed in 79 milliseconds