Searched refs:err_code (Results 1 – 12 of 12) sorted by relevance
/PHP-5.5/ext/intl/tests/ |
H A D | intl_is_failure.phpt | 12 function check( $err_code ) 14 var_export( intl_is_failure( $err_code ) );
|
H A D | intl_error_name.phpt | 13 function check( $err_code ) 15 echo intl_error_name( $err_code ) . "\n";
|
/PHP-5.5/ext/intl/common/ |
H A D | common_error.c | 52 long err_code; in PHP_FUNCTION() local 56 &err_code ) == FAILURE ) in PHP_FUNCTION() 64 RETURN_BOOL( U_FAILURE( err_code ) ); in PHP_FUNCTION() 73 long err_code; in PHP_FUNCTION() local 77 &err_code ) == FAILURE ) in PHP_FUNCTION() 85 RETURN_STRING( (char*)u_errorName( err_code ), 1 ); in PHP_FUNCTION()
|
/PHP-5.5/ext/intl/ |
H A D | intl_error.c | 159 void intl_error_set_code( intl_error* err, UErrorCode err_code TSRMLS_DC ) in intl_error_set_code() 164 err->code = err_code; in intl_error_set_code() 224 void intl_errors_set_code( intl_error* err, UErrorCode err_code TSRMLS_DC ) in intl_errors_set_code() 227 intl_error_set_code( err, err_code TSRMLS_CC ); in intl_errors_set_code() 229 intl_error_set_code( NULL, err_code TSRMLS_CC ); in intl_errors_set_code()
|
H A D | intl_error.h | 37 void intl_error_set_code( intl_error* err, UErrorCode err_code TSRMLS_DC ); 46 void intl_errors_set_code( intl_error* err, UErrorCode err_code TSRMLS_DC );
|
H A D | ERROR.CONVENTIONS | 24 void intl_error_set_code(intl_error* err, UErrorCode err_code TSRMLS_DC); 48 void intl_errors_set_code(intl_error* err, UErrorCode err_code TSRMLS_DC);
|
/PHP-5.5/ext/xmlrpc/libxmlrpc/ |
H A D | xml_element.c | 720 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() 746 error->parser_code = (long)err_code; in xml_elem_parse_buf()
|
/PHP-5.5/ext/mbstring/ |
H A D | php_mbregex.c | 450 int err_code = 0; in php_mbregex_compile_pattern() local 458 …if ((err_code = onig_new(&retval, (OnigUChar *)pattern, (OnigUChar *)(pattern + patlen), options, … in php_mbregex_compile_pattern() 459 onig_error_code_to_str(err_str, err_code, err_info); in php_mbregex_compile_pattern()
|
H A D | mbstring.c | 984 int err_code; in _php_mb_compile_regex() local 986 if ((err_code = onig_new(&retval, in _php_mb_compile_regex() 992 onig_error_code_to_str(err_str, err_code, err_info); in _php_mb_compile_regex()
|
/PHP-5.5/ext/mbstring/oniguruma/doc/ |
H A D | API | 13 # int onig_error_code_to_str(UChar* err_buf, int err_code, ...) 24 2 err_code: error code returned by other API functions.
|
/PHP-5.5/ext/mbstring/oniguruma/ |
H A D | oniguruma.h | 720 int onig_error_code_to_str PV_((OnigUChar* s, int err_code, ...));
|
/PHP-5.5/ext/sqlite3/libsqlite/ |
H A D | sqlite3.c | 23543 SQLITE_PRIVATE void sqlite3Error(sqlite3 *db, int err_code){ 23545 db->errCode = err_code; 23570 SQLITE_PRIVATE void sqlite3ErrorWithMsg(sqlite3 *db, int err_code, const char *zFormat, ...){ 23572 db->errCode = err_code; 23574 sqlite3Error(db, err_code);
|
Completed in 485 milliseconds