Home
last modified time | relevance | path

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

/PHP-7.4/ext/xmlrpc/libxmlrpc/
H A Dencodings.c51 char* outbuf = 0; in convert() local
66 outbuf = (char*)emalloc(outlen + 1); in convert()
68 out_ptr = (char*)outbuf; in convert()
76 outbuf = (char*)erealloc(outbuf, outlen + 1); in convert()
77 out_ptr = outbuf + diff; in convert()
80 efree(outbuf); in convert()
81 outbuf = 0; in convert()
91 *new_len = outbuf ? outlen : 0; in convert()
93 if(outbuf) { in convert()
94 outbuf[outlen] = 0; in convert()
[all …]
/PHP-7.4/ext/zlib/
H A Dzlib_filter.c29 unsigned char *outbuf; member
110 stream, estrndup((char *) data->outbuf, bucketlen), bucketlen, 1, 0); in php_zlib_inflate_filter()
113 data->strm.next_out = data->outbuf; in php_zlib_inflate_filter()
131 stream, estrndup((char *) data->outbuf, bucketlen), bucketlen, 1, 0); in php_zlib_inflate_filter()
134 data->strm.next_out = data->outbuf; in php_zlib_inflate_filter()
155 pefree(data->outbuf, data->persistent); in php_zlib_inflate_dtor()
226 stream, estrndup((char *) data->outbuf, bucketlen), bucketlen, 1, 0); in php_zlib_deflate_filter()
229 data->strm.next_out = data->outbuf; in php_zlib_deflate_filter()
250 data->strm.next_out = data->outbuf; in php_zlib_deflate_filter()
269 pefree(data->outbuf, data->persistent); in php_zlib_deflate_dtor()
[all …]
/PHP-7.4/ext/bz2/
H A Dbz2_filter.c37 char *outbuf; member
141 out_bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0); in php_bz2_decompress_filter()
144 data->strm.next_out = data->outbuf; in php_bz2_decompress_filter()
164 bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0); in php_bz2_decompress_filter()
167 data->strm.next_out = data->outbuf; in php_bz2_decompress_filter()
190 pefree(data->outbuf, data->persistent); in php_bz2_decompress_dtor()
262 data->strm.next_out = data->outbuf; in php_bz2_compress_filter()
277 bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0); in php_bz2_compress_filter()
280 data->strm.next_out = data->outbuf; in php_bz2_compress_filter()
298 pefree(data->outbuf, data->persistent); in php_bz2_compress_dtor()
[all …]
/PHP-7.4/ext/pdo_odbc/
H A Dodbc_stmt.c354 P->outbuf = NULL; in odbc_stmt_param_hook()
390 P->outbuf, in odbc_stmt_param_hook()
422 if (P->outbuf) { in odbc_stmt_param_hook()
424 char *ptr = P->outbuf; in odbc_stmt_param_hook()
425 char *end = P->outbuf + P->len; in odbc_stmt_param_hook()
447 if (P->outbuf) { in odbc_stmt_param_hook()
455 if (P->outbuf) { in odbc_stmt_param_hook()
466 if (P->outbuf) { in odbc_stmt_param_hook()
479 memcpy(P->outbuf, S->convbuf, P->len); in odbc_stmt_param_hook()
491 if (P->outbuf) { in odbc_stmt_param_hook()
[all …]
H A Dphp_pdo_odbc_int.h161 char *outbuf; member
/PHP-7.4/ext/pdo/
H A Dpdo.c280 char outbuf[65] = ""; in php_pdo_int64_to_str() local
283 char *dst = outbuf; in php_pdo_int64_to_str()
293 return estrdup(outbuf); in php_pdo_int64_to_str()
314 return estrdup(outbuf); in php_pdo_int64_to_str()
/PHP-7.4/ext/intl/timezone/
H A Dtimezone_methods.cpp324 char outbuf[3]; in PHP_FUNCTION() local
342 int32_t region_len = TimeZone::getRegion(id, outbuf, sizeof(outbuf), status); in PHP_FUNCTION()
345 RETURN_STRINGL(outbuf, region_len); in PHP_FUNCTION()
/PHP-7.4/ext/simplexml/
H A Dsimplexml.c1419 xmlOutputBufferPtr outbuf; in SXE_METHOD() local
1448 outbuf = xmlOutputBufferCreateFilename(filename, NULL, 0); in SXE_METHOD()
1450 if (outbuf == NULL) { in SXE_METHOD()
1455 xmlOutputBufferClose(outbuf); in SXE_METHOD()
1480 outbuf = xmlAllocOutputBuffer(NULL); in SXE_METHOD()
1482 if (outbuf == NULL) { in SXE_METHOD()
1487 xmlOutputBufferFlush(outbuf); in SXE_METHOD()
1490 return_len = xmlOutputBufferGetSize(outbuf); in SXE_METHOD()
1492 return_content = (char *)outbuf->buffer->content; in SXE_METHOD()
1493 return_len = outbuf->buffer->use; in SXE_METHOD()
[all …]
/PHP-7.4/ext/ftp/
H A Dftp.h65 char outbuf[FTP_BUFSIZE]; /* command output buffer */ member
H A Dftp.c1292 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s %s\r\n", cmd, args); in ftp_putcmd()
1298 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s\r\n", cmd); in ftp_putcmd()
1301 data = ftp->outbuf; in ftp_putcmd()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_out.c1277 char *format = NULL, *buffer = NULL, *outbuf = NULL; in phpdbg_rlog_internal() local
1287 rc = phpdbg_xml_vasprintf(&outbuf, format, 0, args); in phpdbg_rlog_internal()
1289 if (outbuf) { in phpdbg_rlog_internal()
1290 rc = phpdbg_mixed_write(fd, outbuf, rc); in phpdbg_rlog_internal()
1291 efree(outbuf); in phpdbg_rlog_internal()
/PHP-7.4/ext/openssl/
H A Dopenssl.c6716 zend_string *outbuf = NULL; in php_openssl_encrypt() local
6743 outbuf = NULL; in php_openssl_encrypt()
6754 outbuf = base64_str; in php_openssl_encrypt()
6767 outbuf = NULL; in php_openssl_encrypt()
6774 outbuf = NULL; in php_openssl_encrypt()
6779 outbuf = NULL; in php_openssl_encrypt()
6790 return outbuf; in php_openssl_encrypt()
6824 zend_string *outbuf = NULL; in php_openssl_decrypt() local
6862 outbuf = NULL; in php_openssl_decrypt()
6871 outbuf = NULL; in php_openssl_decrypt()
[all …]
/PHP-7.4/ext/tidy/
H A Dtidy.c1208 TidyBuffer inbuf, outbuf, errbuf; in php_tidy_output_handler() local
1229 tidyBufInit(&outbuf); in php_tidy_output_handler()
1230 tidySaveBuffer(doc, &outbuf); in php_tidy_output_handler()
1231 FIX_BUFFER(&outbuf); in php_tidy_output_handler()
1232 output_context->out.data = (char *) outbuf.bp; in php_tidy_output_handler()
1233 output_context->out.used = outbuf.size ? outbuf.size-1 : 0; in php_tidy_output_handler()
/PHP-7.4/ext/soap/
H A Dsoap.c2174 zval outbuf; local
2178 ZVAL_UNDEF(&outbuf);
2203 php_output_get_contents(&outbuf);
2209 set_soap_fault(&fault_obj, NULL, code, buffer, NULL, &outbuf, NULL);

Completed in 73 milliseconds