/PHP-5.6/ext/xmlrpc/libxmlrpc/ |
H A D | encodings.c | 61 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.6/ext/zip/lib/ |
H A D | zip_fread.c | 41 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.6/ext/zlib/ |
H A D | zlib_filter.c | 32 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.6/ext/bz2/ |
H A D | bz2_filter.c | 41 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.6/ext/pdo_odbc/ |
H A D | odbc_stmt.c | 341 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 D | php_pdo_odbc_int.h | 162 char *outbuf; member
|
/PHP-5.6/ext/pdo/ |
H A D | pdo.c | 320 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.6/ext/intl/timezone/ |
H A D | timezone_methods.cpp | 337 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.6/ext/ftp/ |
H A D | ftp.h | 67 char outbuf[FTP_BUFSIZE]; /* command output buffer */ member
|
H A D | ftp.c | 1119 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s %s\r\n", cmd, args); in ftp_putcmd() 1125 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s\r\n", cmd); in ftp_putcmd() 1128 data = ftp->outbuf; in ftp_putcmd()
|
/PHP-5.6/ext/simplexml/ |
H A D | simplexml.c | 1364 xmlOutputBufferPtr outbuf; in SXE_METHOD() local 1393 outbuf = xmlOutputBufferCreateFilename(filename, NULL, 0); in SXE_METHOD() 1395 if (outbuf == NULL) { in SXE_METHOD() 1400 xmlOutputBufferClose(outbuf); in SXE_METHOD() 1425 outbuf = xmlAllocOutputBuffer(NULL); in SXE_METHOD() 1427 if (outbuf == NULL) { in SXE_METHOD() 1432 xmlOutputBufferFlush(outbuf); in SXE_METHOD() 1435 return_len = xmlOutputBufferGetSize(outbuf); in SXE_METHOD() 1437 return_content = (char *)outbuf->buffer->content; in SXE_METHOD() 1438 return_len = outbuf->buffer->use; in SXE_METHOD() [all …]
|
/PHP-5.6/ext/tidy/ |
H A D | tidy.c | 1180 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.6/ext/openssl/ |
H A D | openssl.c | 5235 unsigned char *outbuf, *key; in PHP_FUNCTION() local 5263 outbuf = safe_emalloc(outlen, 1, 1); in PHP_FUNCTION() 5280 outbuf[outlen] = '\0'; in PHP_FUNCTION() 5281 RETVAL_STRINGL_CHECK((char *)outbuf, outlen, 0); in PHP_FUNCTION() 5287 efree(outbuf); in PHP_FUNCTION() 5295 efree(outbuf); in PHP_FUNCTION() 5318 unsigned char *outbuf, *key; in PHP_FUNCTION() local 5360 outbuf = emalloc(outlen + 1); in PHP_FUNCTION() 5374 outbuf[outlen] = '\0'; in PHP_FUNCTION() 5375 RETVAL_STRINGL((char *)outbuf, outlen, 0); in PHP_FUNCTION() [all …]
|
/PHP-5.6/ext/soap/ |
H A D | soap.c | 2185 zval outbuf, outbuflen; local 2192 INIT_ZVAL(outbuf); 2255 zval *outbuf = NULL; local 2289 ALLOC_INIT_ZVAL(outbuf); 2290 php_output_get_contents(outbuf TSRMLS_CC); 2296 set_soap_fault(&fault_obj, NULL, code, buffer, NULL, outbuf, NULL TSRMLS_CC);
|