Lines Matching refs:buf
193 PHP_JSON_API int php_json_encode_ex(smart_str *buf, zval *val, int options, zend_long depth) /* {{{… in php_json_encode_ex() argument
201 return_code = php_json_encode_zval(buf, val, options, &encoder); in php_json_encode_ex()
208 PHP_JSON_API int php_json_encode(smart_str *buf, zval *val, int options) /* {{{ */ in php_json_encode() argument
210 return php_json_encode_ex(buf, val, options, JSON_G(encode_max_depth)); in php_json_encode()
272 smart_str buf = {0}; in PHP_FUNCTION() local
285 php_json_encode_zval(&buf, parameter, (int)options, &encoder); in PHP_FUNCTION()
290 smart_str_free(&buf); in PHP_FUNCTION()
295 smart_str_free(&buf); in PHP_FUNCTION()
301 smart_str_0(&buf); /* copy? */ in PHP_FUNCTION()
302 if (buf.s) { in PHP_FUNCTION()
303 RETURN_NEW_STR(buf.s); in PHP_FUNCTION()