Searched refs:out_buf (Results 1 - 8 of 8) sorted by relevance
| /PHP_5_3/ext/iconv/ |
| H A D | iconv.c | 477 char *out_p, *out_buf, *tmp_buf; 497 out_buf = (char *) emalloc(bsz+1); 498 out_p = out_buf; 508 tmp_buf = (char*) erealloc(out_buf, bsz+1); 509 out_p = out_buf = tmp_buf; 530 tmp_buf = (char *) erealloc(out_buf, bsz); 532 out_p = out_buf = tmp_buf; 561 efree(out_buf); 566 *out = out_buf; 2519 char *out_buf local [all...] |
| /PHP_5_3/ext/mbstring/ |
| H A D | php_mbregex.c | 804 smart_str out_buf = { 0 }; local 866 pbuf = &out_buf; 891 smart_str_appendl(&out_buf, pos, (size_t)((OnigUChar *)(string + regs->beg[0]) - pos)); 927 smart_str_appendl(&out_buf, Z_STRVAL(v), Z_STRLEN(v)); 937 smart_str_appendl(&out_buf, pos, 1); 944 smart_str_appendl(&out_buf, pos, string_lim - pos); 959 smart_str_free(&out_buf); 962 smart_str_appendc(&out_buf, '\0'); 963 RETVAL_STRINGL((char *)out_buf.c, out_buf [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | filters.c | 1509 char *out_buf = NULL; local 1525 if (NULL == (out_buf = pemalloc(out_buf_size, persistent))) { 1529 pd = out_buf; 1573 if (NULL == (new_bucket = php_stream_bucket_new(stream, out_buf, (out_buf_size - ocnt), 1, persistent TSRMLS_CC))) { 1580 if (NULL == (out_buf = pemalloc(out_buf_size, persistent))) { 1583 pd = out_buf; 1585 if (NULL == (new_out_buf = perealloc(out_buf, new_out_buf_size, persistent))) { 1586 if (NULL == (new_bucket = php_stream_bucket_new(stream, out_buf, (out_buf_size - ocnt), 1, persistent TSRMLS_CC))) { 1594 pd = new_out_buf + (pd - out_buf); 1596 out_buf [all...] |
| /PHP_5_3/sapi/cgi/ |
| H A D | fastcgi.c | 521 req->out_pos = req->out_buf; 676 req->out_pos = req->out_buf; 1088 len = req->out_pos - req->out_buf; 1102 if (safe_write(req, req->out_buf, len) != len) { 1107 req->out_pos = req->out_buf; 1126 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf); 1136 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf); 1153 limit = sizeof(req->out_buf) [all...] |
| H A D | fastcgi.h | 109 unsigned char out_buf[1024*8]; member in struct:_fcgi_request
|
| /PHP_5_3/sapi/fpm/fpm/ |
| H A D | fastcgi.c | 292 req->out_pos = req->out_buf; 509 req->out_pos = req->out_buf; 930 len = req->out_pos - req->out_buf; 944 if (safe_write(req, req->out_buf, len) != len) { 949 req->out_pos = req->out_buf; 966 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf); 978 } else if (len - limit < sizeof(req->out_buf) - sizeof(fcgi_header)) {
|
| H A D | fastcgi.h | 109 unsigned char out_buf[1024*8]; member in struct:_fcgi_request
|
| H A D | fpm_stdio.c | 170 int out_buf = 1 + nl - buf; local 171 memmove(buf, buf + out_buf, in_buf - out_buf); 172 in_buf -= out_buf;
|
Completed in 15 milliseconds