Lines Matching refs:str_len
180 PHP_JSON_API zend_result php_json_decode_ex(zval *return_value, const char *str, size_t str_len, ze… in php_json_decode_ex() argument
184 php_json_parser_init(&parser, return_value, str, str_len, (int)options, (int)depth); in php_json_decode_ex()
202 PHP_JSON_API bool php_json_validate_ex(const char *str, size_t str_len, zend_long options, zend_lon… in php_json_validate_ex() argument
207 …php_json_parser_init_ex(&parser, &tmp, str, str_len, (int)options, (int)depth, parser_validate_met… in php_json_validate_ex()
261 size_t str_len; in PHP_FUNCTION() local
268 Z_PARAM_STRING(str, str_len) in PHP_FUNCTION()
279 if (!str_len) { in PHP_FUNCTION()
307 php_json_decode_ex(return_value, str, str_len, options, depth); in PHP_FUNCTION()
315 size_t str_len; in PHP_FUNCTION() local
320 Z_PARAM_STRING(str, str_len) in PHP_FUNCTION()
332 if (!str_len) { in PHP_FUNCTION()
349 RETURN_BOOL(php_json_validate_ex(str, str_len, options, depth)); in PHP_FUNCTION()