| /PHP_5_4/ext/xmlrpc/libxmlrpc/ |
| H A D | encodings.c | 61 char* outbuf = 0; local 76 outbuf = (char*)malloc(outlen + 1); 78 if(outbuf) { 79 out_ptr = (char*)outbuf; 84 int diff = out_ptr - outbuf; 87 outbuf = (char*)realloc(outbuf, outlen + 1); 88 if(!outbuf) { 91 out_ptr = outbuf + diff; 94 free(outbuf); [all...] |
| /PHP_5_4/ext/bz2/ |
| H A D | bz2_filter.c | 41 char *outbuf; member in struct:_php_bz2_filter_data 141 out_bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0 TSRMLS_CC); 144 data->strm.next_out = data->outbuf; 164 bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0 TSRMLS_CC); 167 data->strm.next_out = data->outbuf; 190 pefree(data->outbuf, data->persistent); 257 out_bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0 TSRMLS_CC); 260 data->strm.next_out = data->outbuf; 275 bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0 TSRMLS_CC); 278 data->strm.next_out = data->outbuf; [all...] |
| /PHP_5_4/ext/ftp/ |
| H A D | ftp.h | 66 char outbuf[FTP_BUFSIZE]; /* command output buffer */ member in struct:ftpbuf
|
| /PHP_5_4/ext/pdo/ |
| H A D | pdo.c | 320 char outbuf[65] = ""; local 323 char *dst = outbuf; 333 return estrdup(outbuf); 354 return estrdup(outbuf);
|
| /PHP_5_4/ext/pdo_odbc/ |
| H A D | php_pdo_odbc_int.h | 162 char *outbuf; member in struct:__anon168
|
| /PHP_5_4/ext/simplexml/ |
| H A D | simplexml.c | 1361 xmlOutputBufferPtr outbuf; local 1390 outbuf = xmlOutputBufferCreateFilename(filename, NULL, 0); 1392 if (outbuf == NULL) { 1396 xmlNodeDumpOutput(outbuf, (xmlDocPtr) sxe->document->ptr, node, 0, 0, NULL); 1397 xmlOutputBufferClose(outbuf); 1416 outbuf = xmlAllocOutputBuffer(NULL); 1418 if (outbuf == NULL) { 1422 xmlNodeDumpOutput(outbuf, (xmlDocPtr) sxe->document->ptr, node, 0, 0, ((xmlDocPtr) sxe->document->ptr)->encoding); 1423 xmlOutputBufferFlush(outbuf); 1425 RETVAL_STRINGL((char *)xmlOutputBufferGetContent(outbuf), xmlOutputBufferGetSiz [all...] |
| /PHP_5_4/ext/tidy/ |
| H A D | tidy.c | 1180 TidyBuffer inbuf, outbuf, errbuf; local 1197 tidyBufInit(&outbuf); 1198 tidySaveBuffer(doc, &outbuf); 1199 FIX_BUFFER(&outbuf); 1200 output_context->out.data = (char *) outbuf.bp; 1201 output_context->out.used = outbuf.size ? outbuf.size-1 : 0;
|
| /PHP_5_4/ext/zlib/ |
| H A D | zlib_filter.c | 32 char *outbuf; member in struct:_php_zlib_filter_data 121 out_bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0 TSRMLS_CC); 124 data->strm.next_out = data->outbuf; 145 bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0 TSRMLS_CC); 148 data->strm.next_out = data->outbuf; 169 pefree(data->outbuf, data->persistent); 239 out_bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0 TSRMLS_CC); 242 data->strm.next_out = data->outbuf; 258 bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0 TSRMLS_CC); 261 data->strm.next_out = data->outbuf; [all...] |
| /PHP_5_4/ext/openssl/ |
| H A D | openssl.c | 4737 unsigned char *outbuf, *key; local 4765 outbuf = emalloc(outlen + 1); 4776 EVP_EncryptUpdate(&cipher_ctx, outbuf, &i, (unsigned char *)data, data_len); 4779 if (EVP_EncryptFinal(&cipher_ctx, (unsigned char *)outbuf + i, &i)) { 4782 outbuf[outlen] = '\0'; 4783 RETVAL_STRINGL((char *)outbuf, outlen, 0); 4788 base64_str = (char*)php_base64_encode(outbuf, outlen, &base64_str_len); 4789 efree(outbuf); 4793 efree(outbuf); 4816 unsigned char *outbuf, *ke local [all...] |
| /PHP_5_4/ext/soap/ |
| H A D | soap.c | 2149 zval outbuf, outbuflen; local 2156 INIT_ZVAL(outbuf); 2219 zval *outbuf = NULL; local 2253 ALLOC_INIT_ZVAL(outbuf); 2254 php_output_get_contents(outbuf TSRMLS_CC); 2260 set_soap_fault(&fault_obj, NULL, code, buffer, NULL, outbuf, NULL TSRMLS_CC);
|