Home
last modified time | relevance | path

Searched refs:err_code (Results 1 – 13 of 13) sorted by last modified time

/PHP-7.1/ext/xmlrpc/libxmlrpc/
H A Dxml_element.c720 enum XML_Error err_code = XML_GetErrorCode(parser); in xml_elem_parse_buf() local
725 const char * error_str = XML_ErrorString(err_code); in xml_elem_parse_buf()
749 error->parser_code = (long)err_code; in xml_elem_parse_buf()
/PHP-7.1/ext/sqlite3/libsqlite/
H A Dsqlite3.c30332 static SQLITE_NOINLINE void sqlite3ErrorFinish(sqlite3 *db, int err_code){
30334 sqlite3SystemError(db, err_code);
30342 SQLITE_PRIVATE void sqlite3Error(sqlite3 *db, int err_code){
30344 db->errCode = err_code;
30345 if( err_code || db->pErr ) sqlite3ErrorFinish(db, err_code);
30381 SQLITE_PRIVATE void sqlite3ErrorWithMsg(sqlite3 *db, int err_code, const char *zFormat, ...){
30383 db->errCode = err_code;
30384 sqlite3SystemError(db, err_code);
30386 sqlite3Error(db, err_code);
/PHP-7.1/ext/openssl/
H A Dxp_ssl.c611 unsigned long err_code, e; in win_cert_verify_callback() local
615 err_code = e; in win_cert_verify_callback()
618 …ULL, E_WARNING, "Error encoding X509 certificate: %d: %s", err_code, ERR_error_string(err_code, er… in win_cert_verify_callback()
/PHP-7.1/ext/mbstring/
H A Dphp_mbregex.c449 int err_code = 0; in php_mbregex_compile_pattern() local
462 …if ((err_code = onig_new(&retval, (OnigUChar *)pattern, (OnigUChar *)(pattern + patlen), options, … in php_mbregex_compile_pattern()
463 onig_error_code_to_str(err_str, err_code, &err_info); in php_mbregex_compile_pattern()
H A Dmbstring.c1003 int err_code; in _php_mb_compile_regex() local
1005 if ((err_code = onig_new(&retval, in _php_mb_compile_regex()
1011 onig_error_code_to_str(err_str, err_code, err_info); in _php_mb_compile_regex()
/PHP-7.1/ext/mbstring/oniguruma/
H A Doniguruma.h720 int onig_error_code_to_str PV_((OnigUChar* s, int err_code, ...));
/PHP-7.1/ext/mbstring/oniguruma/doc/
H A DAPI13 # int onig_error_code_to_str(UChar* err_buf, int err_code, ...)
24 2 err_code: error code returned by other API functions.
/PHP-7.1/ext/intl/
H A Dintl_error.c159 void intl_error_set_code( intl_error* err, UErrorCode err_code ) in intl_error_set_code() argument
164 err->code = err_code; in intl_error_set_code()
224 void intl_errors_set_code( intl_error* err, UErrorCode err_code ) in intl_errors_set_code() argument
227 intl_error_set_code( err, err_code ); in intl_errors_set_code()
229 intl_error_set_code( NULL, err_code ); in intl_errors_set_code()
H A Dintl_error.h37 void intl_error_set_code( intl_error* err, UErrorCode err_code );
46 void intl_errors_set_code( intl_error* err, UErrorCode err_code );
H A DERROR.CONVENTIONS24 void intl_error_set_code(intl_error* err, UErrorCode err_code);
48 void intl_errors_set_code(intl_error* err, UErrorCode err_code);
/PHP-7.1/ext/intl/common/
H A Dcommon_error.c51 zend_long err_code; in PHP_FUNCTION() local
55 &err_code ) == FAILURE ) in PHP_FUNCTION()
63 RETURN_BOOL( U_FAILURE( err_code ) ); in PHP_FUNCTION()
73 zend_long err_code; in PHP_FUNCTION() local
77 &err_code ) == FAILURE ) in PHP_FUNCTION()
85 RETURN_STRING( (char*)u_errorName( err_code ) ); in PHP_FUNCTION()
/PHP-7.1/ext/intl/tests/
H A Dintl_error_name.phpt13 function check( $err_code )
15 echo intl_error_name( $err_code ) . "\n";
H A Dintl_is_failure.phpt12 function check( $err_code )
14 var_export( intl_is_failure( $err_code ) );

Completed in 431 milliseconds