Lines Matching refs:error_code
99 json_globals->error_code = 0; in PHP_GINIT_FUNCTION()
106 JSON_G(error_code) = 0; in PHP_RINIT_FUNCTION()
169 JSON_G(error_code) = encoder.error_code; in php_json_encode_ex()
181 static const char *php_json_get_error_msg(php_json_error_code error_code) /* {{{ */ in php_json_get_error_msg() argument
183 switch(error_code) { in php_json_get_error_msg()
221 php_json_error_code error_code = php_json_parser_error_code(&parser); in php_json_decode_ex() local
223 JSON_G(error_code) = error_code; in php_json_decode_ex()
225 zend_throw_exception(php_json_exception_ce, php_json_get_error_msg(error_code), error_code); in php_json_decode_ex()
256 JSON_G(error_code) = encoder.error_code; in PHP_FUNCTION()
257 if (encoder.error_code != PHP_JSON_ERROR_NONE && !(options & PHP_JSON_PARTIAL_OUTPUT_ON_ERROR)) { in PHP_FUNCTION()
262 if (encoder.error_code != PHP_JSON_ERROR_NONE) { in PHP_FUNCTION()
264 …w_exception(php_json_exception_ce, php_json_get_error_msg(encoder.error_code), encoder.error_code); in PHP_FUNCTION()
296 JSON_G(error_code) = PHP_JSON_ERROR_NONE; in PHP_FUNCTION()
301 JSON_G(error_code) = PHP_JSON_ERROR_SYNTAX; in PHP_FUNCTION()
336 RETURN_LONG(JSON_G(error_code)); in PHP_FUNCTION()
345 RETURN_STRING(php_json_get_error_msg(JSON_G(error_code))); in PHP_FUNCTION()