Lines Matching refs:error_code

65 	json_globals->error_code = 0;  in PHP_GINIT_FUNCTION()
72 JSON_G(error_code) = 0; in PHP_RINIT_FUNCTION()
135 JSON_G(error_code) = encoder.error_code; in php_json_encode_ex()
147 static const char *php_json_get_error_msg(php_json_error_code error_code) /* {{{ */ in php_json_get_error_msg() argument
149 switch(error_code) { in php_json_get_error_msg()
187 php_json_error_code error_code = php_json_parser_error_code(&parser); in php_json_decode_ex() local
189 JSON_G(error_code) = error_code; in php_json_decode_ex()
191 zend_throw_exception(php_json_exception_ce, php_json_get_error_msg(error_code), error_code); in php_json_decode_ex()
210 php_json_error_code error_code = php_json_parser_error_code(&parser); in php_json_validate_ex() local
211 JSON_G(error_code) = error_code; in php_json_validate_ex()
240 JSON_G(error_code) = encoder.error_code; in PHP_FUNCTION()
241 if (encoder.error_code != PHP_JSON_ERROR_NONE && !(options & PHP_JSON_PARTIAL_OUTPUT_ON_ERROR)) { in PHP_FUNCTION()
246 if (encoder.error_code != PHP_JSON_ERROR_NONE) { in PHP_FUNCTION()
248 …w_exception(php_json_exception_ce, php_json_get_error_msg(encoder.error_code), encoder.error_code); in PHP_FUNCTION()
276 JSON_G(error_code) = PHP_JSON_ERROR_NONE; in PHP_FUNCTION()
281 JSON_G(error_code) = PHP_JSON_ERROR_SYNTAX; in PHP_FUNCTION()
333 JSON_G(error_code) = PHP_JSON_ERROR_SYNTAX; in PHP_FUNCTION()
337 JSON_G(error_code) = PHP_JSON_ERROR_NONE; in PHP_FUNCTION()
358 RETURN_LONG(JSON_G(error_code)); in PHP_FUNCTION()
367 RETURN_STRING(php_json_get_error_msg(JSON_G(error_code))); in PHP_FUNCTION()