Home
last modified time | relevance | path

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

/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dencodings.c61 char* outbuf = 0; in convert() local
78 if(outbuf) { in convert()
79 out_ptr = (char*)outbuf; in convert()
87 outbuf = (char*)realloc(outbuf, outlen + 1); in convert()
88 if(!outbuf) { in convert()
94 free(outbuf); in convert()
95 outbuf = 0; in convert()
106 *new_len = outbuf ? outlen : 0; in convert()
108 if(outbuf) { in convert()
109 outbuf[outlen] = 0; in convert()
[all …]
/PHP-5.5/ext/bz2/
H A Dbz2_filter.c41 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 TSRMLS_C… 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 TSRMLS_C… 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-5.5/ext/zlib/
H A Dzlib_filter.c32 char *outbuf; member
120 data->strm.next_out = data->outbuf; in php_zlib_inflate_filter()
141 …bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0 TSRMLS_C… in php_zlib_inflate_filter()
144 data->strm.next_out = data->outbuf; in php_zlib_inflate_filter()
165 pefree(data->outbuf, data->persistent); in php_zlib_inflate_dtor()
234 data->strm.next_out = data->outbuf; in php_zlib_deflate_filter()
250 …bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0 TSRMLS_C… in php_zlib_deflate_filter()
253 data->strm.next_out = data->outbuf; in php_zlib_deflate_filter()
272 pefree(data->outbuf, data->persistent); in php_zlib_deflate_dtor()
313 data->strm.next_out = data->outbuf = (Bytef *) pemalloc(data->outbuf_len, persistent); in php_zlib_filter_create()
[all …]
/PHP-5.5/ext/zip/lib/
H A Dzip_fread.c41 zip_fread(struct zip_file *zf, void *outbuf, zip_uint64_t toread) in zip_fread() argument
59 if ((n=zip_source_read(zf->src, outbuf, toread)) < 0) { in zip_fread()
/PHP-5.5/ext/pdo_odbc/
H A Dodbc_stmt.c341 P->outbuf = NULL; in odbc_stmt_param_hook()
377 P->outbuf, in odbc_stmt_param_hook()
403 if (P->outbuf) { in odbc_stmt_param_hook()
405 char *ptr = P->outbuf; in odbc_stmt_param_hook()
406 char *end = P->outbuf + P->len; in odbc_stmt_param_hook()
428 if (P->outbuf) { in odbc_stmt_param_hook()
436 if (P->outbuf) { in odbc_stmt_param_hook()
447 if (P->outbuf) { in odbc_stmt_param_hook()
471 if (P->outbuf) { in odbc_stmt_param_hook()
472 if (P->outbuf) { in odbc_stmt_param_hook()
[all …]
H A Dphp_pdo_odbc_int.h162 char *outbuf; member
/PHP-5.5/ext/pdo/
H A Dpdo.c320 char outbuf[65] = ""; in php_pdo_int64_to_str() local
323 char *dst = outbuf; in php_pdo_int64_to_str()
333 return estrdup(outbuf); in php_pdo_int64_to_str()
354 return estrdup(outbuf); in php_pdo_int64_to_str()
/PHP-5.5/ext/intl/timezone/
H A Dtimezone_methods.cpp337 char outbuf[3]; in PHP_FUNCTION() local
355 int32_t region_len = TimeZone::getRegion(id, outbuf, sizeof(outbuf), status); in PHP_FUNCTION()
358 RETURN_STRINGL(outbuf, region_len, 1); in PHP_FUNCTION()
/PHP-5.5/ext/ftp/
H A Dftp.h66 char outbuf[FTP_BUFSIZE]; /* command output buffer */ member
H A Dftp.c1114 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s %s\r\n", cmd, args); in ftp_putcmd()
1120 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s\r\n", cmd); in ftp_putcmd()
1123 data = ftp->outbuf; in ftp_putcmd()
/PHP-5.5/ext/simplexml/
H A Dsimplexml.c1364 xmlOutputBufferPtr outbuf; in SXE_METHOD() local
1393 outbuf = xmlOutputBufferCreateFilename(filename, NULL, 0); in SXE_METHOD()
1395 if (outbuf == NULL) { in SXE_METHOD()
1399 xmlNodeDumpOutput(outbuf, (xmlDocPtr) sxe->document->ptr, node, 0, 0, NULL); in SXE_METHOD()
1400 xmlOutputBufferClose(outbuf); in SXE_METHOD()
1419 outbuf = xmlAllocOutputBuffer(NULL); in SXE_METHOD()
1421 if (outbuf == NULL) { in SXE_METHOD()
1426 xmlOutputBufferFlush(outbuf); in SXE_METHOD()
1428 RETVAL_STRINGL((char *)xmlOutputBufferGetContent(outbuf), xmlOutputBufferGetSize(outbuf), 1); in SXE_METHOD()
1430 RETVAL_STRINGL((char *)outbuf->buffer->content, outbuf->buffer->use, 1); in SXE_METHOD()
[all …]
/PHP-5.5/ext/tidy/
H A Dtidy.c1180 TidyBuffer inbuf, outbuf, errbuf; in php_tidy_output_handler() local
1197 tidyBufInit(&outbuf); in php_tidy_output_handler()
1198 tidySaveBuffer(doc, &outbuf); in php_tidy_output_handler()
1199 FIX_BUFFER(&outbuf); in php_tidy_output_handler()
1200 output_context->out.data = (char *) outbuf.bp; in php_tidy_output_handler()
1201 output_context->out.used = outbuf.size ? outbuf.size-1 : 0; in php_tidy_output_handler()
/PHP-5.5/ext/openssl/
H A Dopenssl.c4914 unsigned char *outbuf, *key; in PHP_FUNCTION() local
4942 outbuf = emalloc(outlen + 1); in PHP_FUNCTION()
4959 outbuf[outlen] = '\0'; in PHP_FUNCTION()
4960 RETVAL_STRINGL((char *)outbuf, outlen, 0); in PHP_FUNCTION()
4966 efree(outbuf); in PHP_FUNCTION()
4970 efree(outbuf); in PHP_FUNCTION()
4993 unsigned char *outbuf, *key; in PHP_FUNCTION() local
5035 outbuf = emalloc(outlen + 1); in PHP_FUNCTION()
5049 outbuf[outlen] = '\0'; in PHP_FUNCTION()
5050 RETVAL_STRINGL((char *)outbuf, outlen, 0); in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/soap/
H A Dsoap.c2165 zval outbuf, outbuflen; local
2172 INIT_ZVAL(outbuf);
2235 zval *outbuf = NULL; local
2269 ALLOC_INIT_ZVAL(outbuf);
2270 php_output_get_contents(outbuf TSRMLS_CC);
2276 set_soap_fault(&fault_obj, NULL, code, buffer, NULL, outbuf, NULL TSRMLS_CC);

Completed in 58 milliseconds