/PHP-7.1/ext/xmlrpc/libxmlrpc/ |
H A D | encodings.c | 62 char* outbuf = 0; in convert() local 79 if(outbuf) { in convert() 80 out_ptr = (char*)outbuf; in convert() 88 outbuf = (char*)realloc(outbuf, outlen + 1); in convert() 89 if(!outbuf) { in convert() 95 free(outbuf); in convert() 96 outbuf = 0; in convert() 107 *new_len = outbuf ? outlen : 0; in convert() 109 if(outbuf) { in convert() 110 outbuf[outlen] = 0; in convert() [all …]
|
/PHP-7.1/ext/zlib/ |
H A D | zlib_filter.c | 31 unsigned char *outbuf; member 112 stream, estrndup((char *) data->outbuf, bucketlen), bucketlen, 1, 0); in php_zlib_inflate_filter() 115 data->strm.next_out = data->outbuf; in php_zlib_inflate_filter() 133 stream, estrndup((char *) data->outbuf, bucketlen), bucketlen, 1, 0); in php_zlib_inflate_filter() 136 data->strm.next_out = data->outbuf; in php_zlib_inflate_filter() 157 pefree(data->outbuf, data->persistent); in php_zlib_inflate_dtor() 224 stream, estrndup((char *) data->outbuf, bucketlen), bucketlen, 1, 0); in php_zlib_deflate_filter() 227 data->strm.next_out = data->outbuf; in php_zlib_deflate_filter() 247 data->strm.next_out = data->outbuf; in php_zlib_deflate_filter() 266 pefree(data->outbuf, data->persistent); in php_zlib_deflate_dtor() [all …]
|
/PHP-7.1/ext/bz2/ |
H A D | bz2_filter.c | 39 char *outbuf; member 145 data->strm.next_out = data->outbuf; in php_bz2_decompress_filter() 165 bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0); in php_bz2_decompress_filter() 168 data->strm.next_out = data->outbuf; in php_bz2_decompress_filter() 191 pefree(data->outbuf, data->persistent); in php_bz2_decompress_dtor() 259 data->strm.next_out = data->outbuf; in php_bz2_compress_filter() 274 bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0); in php_bz2_compress_filter() 277 data->strm.next_out = data->outbuf; in php_bz2_compress_filter() 295 pefree(data->outbuf, data->persistent); in php_bz2_compress_dtor() 337 data->strm.next_out = data->outbuf = (char *) pemalloc(data->outbuf_len, persistent); in php_bz2_filter_create() [all …]
|
/PHP-7.1/ext/zip/lib/ |
H A D | zip_fread.c | 39 zip_fread(zip_file_t *zf, void *outbuf, zip_uint64_t toread) in zip_fread() argument 57 if ((n=zip_source_read(zf->src, outbuf, toread)) < 0) { in zip_fread()
|
/PHP-7.1/ext/pdo_odbc/ |
H A D | odbc_stmt.c | 348 P->outbuf = NULL; in odbc_stmt_param_hook() 384 P->outbuf, in odbc_stmt_param_hook() 416 if (P->outbuf) { in odbc_stmt_param_hook() 418 char *ptr = P->outbuf; in odbc_stmt_param_hook() 419 char *end = P->outbuf + P->len; in odbc_stmt_param_hook() 441 if (P->outbuf) { in odbc_stmt_param_hook() 449 if (P->outbuf) { in odbc_stmt_param_hook() 460 if (P->outbuf) { in odbc_stmt_param_hook() 473 memcpy(P->outbuf, S->convbuf, P->len); in odbc_stmt_param_hook() 485 if (P->outbuf) { in odbc_stmt_param_hook() [all …]
|
H A D | php_pdo_odbc_int.h | 162 char *outbuf; member
|
/PHP-7.1/ext/pdo/ |
H A D | pdo.c | 296 char outbuf[65] = ""; in php_pdo_int64_to_str() local 299 char *dst = outbuf; in php_pdo_int64_to_str() 309 return estrdup(outbuf); in php_pdo_int64_to_str() 330 return estrdup(outbuf); in php_pdo_int64_to_str()
|
/PHP-7.1/ext/intl/timezone/ |
H A D | timezone_methods.cpp | 325 char outbuf[3]; in PHP_FUNCTION() local 343 int32_t region_len = TimeZone::getRegion(id, outbuf, sizeof(outbuf), status); in PHP_FUNCTION() 346 RETURN_STRINGL(outbuf, region_len); in PHP_FUNCTION()
|
/PHP-7.1/ext/ftp/ |
H A D | ftp.h | 67 char outbuf[FTP_BUFSIZE]; /* command output buffer */ member
|
H A D | ftp.c | 1156 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s %s\r\n", cmd, args); in ftp_putcmd() 1162 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s\r\n", cmd); in ftp_putcmd() 1165 data = ftp->outbuf; in ftp_putcmd()
|
/PHP-7.1/ext/simplexml/ |
H A D | simplexml.c | 1426 xmlOutputBufferPtr outbuf; in SXE_METHOD() local 1455 outbuf = xmlOutputBufferCreateFilename(filename, NULL, 0); in SXE_METHOD() 1457 if (outbuf == NULL) { in SXE_METHOD() 1462 xmlOutputBufferClose(outbuf); in SXE_METHOD() 1487 outbuf = xmlAllocOutputBuffer(NULL); in SXE_METHOD() 1489 if (outbuf == NULL) { in SXE_METHOD() 1494 xmlOutputBufferFlush(outbuf); in SXE_METHOD() 1497 return_len = xmlOutputBufferGetSize(outbuf); in SXE_METHOD() 1499 return_content = (char *)outbuf->buffer->content; in SXE_METHOD() 1500 return_len = outbuf->buffer->use; in SXE_METHOD() [all …]
|
/PHP-7.1/sapi/phpdbg/ |
H A D | phpdbg_out.c | 1298 char *format = NULL, *buffer = NULL, *outbuf = NULL; in phpdbg_rlog_internal() local 1308 rc = phpdbg_xml_vasprintf(&outbuf, format, 0, args); in phpdbg_rlog_internal() 1310 if (outbuf) { in phpdbg_rlog_internal() 1311 rc = phpdbg_mixed_write(fd, outbuf, rc); in phpdbg_rlog_internal() 1312 efree(outbuf); in phpdbg_rlog_internal()
|
/PHP-7.1/ext/tidy/ |
H A D | tidy.c | 1164 TidyBuffer inbuf, outbuf, errbuf; in php_tidy_output_handler() local 1185 tidyBufInit(&outbuf); in php_tidy_output_handler() 1186 tidySaveBuffer(doc, &outbuf); in php_tidy_output_handler() 1187 FIX_BUFFER(&outbuf); in php_tidy_output_handler() 1188 output_context->out.data = (char *) outbuf.bp; in php_tidy_output_handler() 1189 output_context->out.used = outbuf.size ? outbuf.size-1 : 0; in php_tidy_output_handler()
|
/PHP-7.1/ext/openssl/ |
H A D | openssl.c | 6388 zend_string *outbuf; in PHP_FUNCTION() local 6424 ZSTR_LEN(outbuf) = outlen; in PHP_FUNCTION() 6425 RETVAL_STR(outbuf); in PHP_FUNCTION() 6430 zend_string_release(outbuf); in PHP_FUNCTION() 6431 outbuf = base64_str; in PHP_FUNCTION() 6455 zend_string_release(outbuf); in PHP_FUNCTION() 6460 zend_string_release(outbuf); in PHP_FUNCTION() 6486 zend_string *outbuf; in PHP_FUNCTION() local 6540 ZSTR_LEN(outbuf) = outlen; in PHP_FUNCTION() 6541 RETVAL_STR(outbuf); in PHP_FUNCTION() [all …]
|
/PHP-7.1/ext/soap/ |
H A D | soap.c | 2209 zval outbuf; local 2213 ZVAL_UNDEF(&outbuf); 2241 php_output_get_contents(&outbuf); 2247 set_soap_fault(&fault_obj, NULL, code, buffer, NULL, &outbuf, NULL);
|