Home
last modified time | relevance | path

Searched refs:out_buf (Results 1 – 6 of 6) sorted by relevance

/PHP-7.1/sapi/fpm/fpm/
H A Dfpm_stdio.c193 int out_buf = 1 + nl - buf; local
194 memmove(buf, buf + out_buf, in_buf - out_buf);
195 in_buf -= out_buf;
/PHP-7.1/ext/iconv/
H A Diconv.c634 zend_string *out_buf; in php_iconv_string()
653 out_p = ZSTR_VAL(out_buf); in php_iconv_string()
674 out_buf = zend_string_extend(out_buf, bsz, 0); in php_iconv_string()
675 out_p = ZSTR_VAL(out_buf); in php_iconv_string()
696 out_buf = zend_string_extend(out_buf, bsz, 0); in php_iconv_string()
731 *out = out_buf; in php_iconv_string()
2642 char *out_buf = NULL; in php_iconv_stream_filter_append_bucket() local
2661 pd = out_buf; in php_iconv_stream_filter_append_bucket()
2714 pd = out_buf; in php_iconv_stream_filter_append_bucket()
2791 pd = out_buf; in php_iconv_stream_filter_append_bucket()
[all …]
/PHP-7.1/ext/mbstring/
H A Dphp_mbregex.c826 smart_str out_buf = {0}; in _php_mb_regex_ereg_replace_exec() local
914 pbuf = &out_buf; in _php_mb_regex_ereg_replace_exec()
990 smart_str_free(&out_buf); in _php_mb_regex_ereg_replace_exec()
997 smart_str_appendl(&out_buf, Z_STRVAL(v), Z_STRLEN(v)); in _php_mb_regex_ereg_replace_exec()
1021 smart_str_appendl(&out_buf, Z_STRVAL(retval), Z_STRLEN(retval)); in _php_mb_regex_ereg_replace_exec()
1037 smart_str_appendl(&out_buf, (char *)pos, 1); in _php_mb_regex_ereg_replace_exec()
1044 smart_str_appendl(&out_buf, (char *)pos, string_lim - pos); in _php_mb_regex_ereg_replace_exec()
1059 smart_str_free(&out_buf); in _php_mb_regex_ereg_replace_exec()
1061 } else if (out_buf.s) { in _php_mb_regex_ereg_replace_exec()
1062 smart_str_0(&out_buf); in _php_mb_regex_ereg_replace_exec()
[all …]
/PHP-7.1/ext/standard/
H A Dfilters.c1475 char *out_buf = NULL; in strfilter_convert_append_bucket() local
1491 if (NULL == (out_buf = pemalloc(out_buf_size, persistent))) { in strfilter_convert_append_bucket()
1495 pd = out_buf; in strfilter_convert_append_bucket()
1549 pd = out_buf; in strfilter_convert_append_bucket()
1560 pd = new_out_buf + (pd - out_buf); in strfilter_convert_append_bucket()
1562 out_buf = new_out_buf; in strfilter_convert_append_bucket()
1621 pd = out_buf; in strfilter_convert_append_bucket()
1631 pd = new_out_buf + (pd - out_buf); in strfilter_convert_append_bucket()
1633 out_buf = new_out_buf; in strfilter_convert_append_bucket()
1656 pefree(out_buf, persistent); in strfilter_convert_append_bucket()
[all …]
/PHP-7.1/main/
H A Dfastcgi.c228 unsigned char out_buf[1024*8]; member
903 req->out_pos = req->out_buf; in fcgi_init_request()
1058 req->out_pos = req->out_buf; in fcgi_read_request()
1519 len = (int)(req->out_pos - req->out_buf);
1533 if (safe_write(req, req->out_buf, len) != len) {
1535 req->out_pos = req->out_buf;
1539 req->out_pos = req->out_buf;
1558 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf);
1568 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf);
1585 limit = (int)(sizeof(req->out_buf) - (req->out_pos - req->out_buf));
[all …]
/PHP-7.1/ext/zlib/
H A Dzlib.c424 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
440 switch (status = php_zlib_inflate_rounds(&Z, max_len, out_buf, out_len)) { in php_zlib_decode()
457 *out_buf = NULL; in php_zlib_decode()
697 char *in_buf, *out_buf; \
708 if (SUCCESS != php_zlib_decode(in_buf, in_len, &out_buf, &out_len, encoding, max_len)) { \
711 RETVAL_STRINGL(out_buf, out_len); \
712 efree(out_buf); \

Completed in 46 milliseconds