Searched refs:out_buf (Results 1 – 5 of 5) sorted by relevance
/php-src/ext/iconv/ |
H A D | iconv.c | 444 zend_string *out_buf; in php_iconv_string() local 463 out_p = ZSTR_VAL(out_buf); in php_iconv_string() 484 out_buf = zend_string_extend(out_buf, bsz, 0); in php_iconv_string() 485 out_p = ZSTR_VAL(out_buf); in php_iconv_string() 506 out_buf = zend_string_extend(out_buf, bsz, 0); in php_iconv_string() 541 *out = out_buf; in php_iconv_string() 2351 char *out_buf = NULL; in php_iconv_stream_filter_append_bucket() local 2368 pd = out_buf; in php_iconv_stream_filter_append_bucket() 2418 pd = out_buf; in php_iconv_stream_filter_append_bucket() 2479 pd = out_buf; in php_iconv_stream_filter_append_bucket() [all …]
|
/php-src/ext/standard/ |
H A D | filters.c | 1323 char *out_buf = NULL; in strfilter_convert_append_bucket() local 1339 out_buf = pemalloc(out_buf_size, persistent); in strfilter_convert_append_bucket() 1341 pd = out_buf; in strfilter_convert_append_bucket() 1393 pd = out_buf; in strfilter_convert_append_bucket() 1396 pd = new_out_buf + (pd - out_buf); in strfilter_convert_append_bucket() 1398 out_buf = new_out_buf; in strfilter_convert_append_bucket() 1455 pd = out_buf; in strfilter_convert_append_bucket() 1458 pd = new_out_buf + (pd - out_buf); in strfilter_convert_append_bucket() 1460 out_buf = new_out_buf; in strfilter_convert_append_bucket() 1483 pefree(out_buf, persistent); in strfilter_convert_append_bucket() [all …]
|
/php-src/main/ |
H A D | fastcgi.c | 222 unsigned char out_buf[1024*8]; member 891 req->out_pos = req->out_buf; in fcgi_init_request() 1046 req->out_pos = req->out_buf; in fcgi_read_request() 1516 len = (int)(req->out_pos - req->out_buf); 1530 if (safe_write(req, req->out_buf, len) != len) { 1532 req->out_pos = req->out_buf; 1536 req->out_pos = req->out_buf; 1555 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf); 1565 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf); 1582 limit = (int)(sizeof(req->out_buf) - (req->out_pos - req->out_buf)); [all …]
|
/php-src/ext/mbstring/ |
H A D | php_mbregex.c | 999 smart_str out_buf = {0}; in _php_mb_regex_ereg_replace_exec() local 1057 pbuf = &out_buf; in _php_mb_regex_ereg_replace_exec() 1076 smart_str_appendl(&out_buf, (char *)pos, (size_t)((OnigUChar *)(string + regs->beg[0]) - pos)); in _php_mb_regex_ereg_replace_exec() 1106 smart_str_appendl(&out_buf, Z_STRVAL(retval), Z_STRLEN(retval)); in _php_mb_regex_ereg_replace_exec() 1124 smart_str_appendl(&out_buf, (char *)pos, 1); in _php_mb_regex_ereg_replace_exec() 1131 smart_str_appendl(&out_buf, (char *)pos, string_lim - pos); in _php_mb_regex_ereg_replace_exec() 1146 smart_str_free(&out_buf); in _php_mb_regex_ereg_replace_exec() 1150 RETURN_STR(smart_str_extract(&out_buf)); in _php_mb_regex_ereg_replace_exec()
|
/php-src/ext/zlib/ |
H A D | zlib.c | 469 static int php_zlib_decode(const char *in_buf, size_t in_len, char **out_buf, size_t *out_len, int … in php_zlib_decode() argument 485 switch (status = php_zlib_inflate_rounds(&Z, max_len, out_buf, out_len)) { in php_zlib_decode() 502 *out_buf = NULL; in php_zlib_decode() 737 char *in_buf, *out_buf; \ 748 if (SUCCESS != php_zlib_decode(in_buf, in_len, &out_buf, &out_len, encoding, max_len)) { \ 751 RETVAL_STRINGL(out_buf, out_len); \ 752 efree(out_buf); \
|
Completed in 28 milliseconds