| /PHP_TRUNK/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_TRUNK/ext/zip/lib/ |
| H A D | zip_fread.c | 43 zip_fread(struct zip_file *zf, void *outbuf, zip_uint64_t toread) 61 if ((n=zip_source_read(zf->src, outbuf, toread)) < 0) {
|
| /PHP_TRUNK/ext/intl/timezone/ |
| H A D | timezone_methods.cpp | 337 char outbuf[3]; local 355 int32_t region_len = TimeZone::getRegion(id, outbuf, sizeof(outbuf), status); 358 RETURN_STRINGL(outbuf, region_len, 1);
|
| /PHP_TRUNK/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_TRUNK/ext/ftp/ |
| H A D | ftp.c | 1118 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s %s\r\n", cmd, args); 1124 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s\r\n", cmd); 1127 data = ftp->outbuf;
|
| H A D | ftp.h | 66 char outbuf[FTP_BUFSIZE]; /* command output buffer */ member in struct:ftpbuf
|
| /PHP_TRUNK/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_TRUNK/ext/pdo_odbc/ |
| H A D | odbc_stmt.c | 335 P->outbuf = NULL; 358 P->outbuf = emalloc(P->len + (P->is_unicode ? 2:1)); 371 P->outbuf, 397 if (P->outbuf) { 399 char *ptr = P->outbuf; 400 char *end = P->outbuf + P->len; 422 if (P->outbuf) { 430 if (P->outbuf) { 432 memcpy(P->outbuf, Z_STRVAL_P(param->parameter), P->len); 441 if (P->outbuf) { [all...] |
| H A D | php_pdo_odbc_int.h | 162 char *outbuf; member in struct:__anon167
|
| /PHP_TRUNK/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_TRUNK/ext/zlib/ |
| H A D | zlib_filter.c | 32 char *outbuf; member in struct:_php_zlib_filter_data 117 out_bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0 TSRMLS_CC); 120 data->strm.next_out = data->outbuf; 141 bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0 TSRMLS_CC); 144 data->strm.next_out = data->outbuf; 165 pefree(data->outbuf, data->persistent); 231 out_bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0 TSRMLS_CC); 234 data->strm.next_out = data->outbuf; 250 bucket = php_stream_bucket_new(stream, estrndup(data->outbuf, bucketlen), bucketlen, 1, 0 TSRMLS_CC); 253 data->strm.next_out = data->outbuf; [all...] |
| /PHP_TRUNK/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_TRUNK/ext/openssl/ |
| H A D | openssl.c | 5097 unsigned char *outbuf, *key; local 5125 outbuf = emalloc(outlen + 1); 5136 EVP_EncryptUpdate(&cipher_ctx, outbuf, &i, (unsigned char *)data, data_len); 5139 if (EVP_EncryptFinal(&cipher_ctx, (unsigned char *)outbuf + i, &i)) { 5142 outbuf[outlen] = '\0'; 5143 RETVAL_STRINGL((char *)outbuf, outlen, 0); 5148 base64_str = (char*)php_base64_encode(outbuf, outlen, &base64_str_len); 5149 efree(outbuf); 5153 efree(outbuf); 5176 unsigned char *outbuf, *ke local [all...] |
| /PHP_TRUNK/ext/soap/ |
| H A D | soap.c | 2155 zval outbuf, outbuflen; local 2162 INIT_ZVAL(outbuf); 2225 zval *outbuf = NULL; local 2259 ALLOC_INIT_ZVAL(outbuf); 2260 php_output_get_contents(outbuf TSRMLS_CC); 2266 set_soap_fault(&fault_obj, NULL, code, buffer, NULL, outbuf, NULL TSRMLS_CC);
|