Home
last modified time | relevance | path

Searched refs:err_msg (Results 1 – 24 of 24) sorted by relevance

/php-src/ext/intl/dateformat/
H A Ddatepatterngenerator_class.cpp52 zend_string *err_msg; in IntlDatePatternGenerator_object_clone() local
57 err_msg = intl_error_get_message(DTPATTERNGEN_ERROR_P(dtpgo_orig)); in IntlDatePatternGenerator_object_clone()
58 zend_throw_exception(NULL, ZSTR_VAL(err_msg), 0); in IntlDatePatternGenerator_object_clone()
59 zend_string_free(err_msg); in IntlDatePatternGenerator_object_clone()
/php-src/ext/intl/transliterator/
H A Dtransliterator_class.c149 zend_string *err_msg; in Transliterator_clone_obj() local
160 err_msg = intl_error_get_message( TRANSLITERATOR_ERROR_P( to_orig ) ); in Transliterator_clone_obj()
161 zend_throw_error( NULL, "%s", ZSTR_VAL(err_msg) ); in Transliterator_clone_obj()
162 zend_string_free( err_msg ); /* if it's changed into a warning */ in Transliterator_clone_obj()
/php-src/ext/intl/breakiterator/
H A Dbreakiterator_class.cpp116 zend_string *err_msg; in BreakIterator_clone_obj() local
121 err_msg = intl_error_get_message(BREAKITER_ERROR_P(bio_orig)); in BreakIterator_clone_obj()
122 zend_throw_exception(NULL, ZSTR_VAL(err_msg), 0); in BreakIterator_clone_obj()
123 zend_string_free(err_msg); in BreakIterator_clone_obj()
/php-src/ext/intl/calendar/
H A Dcalendar_class.cpp98 zend_string *err_msg; in Calendar_clone_obj() local
103 err_msg = intl_error_get_message(CALENDAR_ERROR_P(co_orig)); in Calendar_clone_obj()
104 zend_throw_exception(NULL, ZSTR_VAL(err_msg), 0); in Calendar_clone_obj()
105 zend_string_free(err_msg); in Calendar_clone_obj()
/php-src/tests/classes/
H A Dtostring_004.phpt5 function test_error_handler($err_no, $err_msg, $filename, $linenum) {
6 echo "Error: $err_no - $err_msg\n";
/php-src/ext/intl/timezone/
H A Dtimezone_class.cpp246 zend_string *err_msg; in TimeZone_clone_obj() local
251 err_msg = intl_error_get_message(TIMEZONE_ERROR_P(to_orig)); in TimeZone_clone_obj()
252 zend_throw_exception(NULL, ZSTR_VAL(err_msg), 0); in TimeZone_clone_obj()
253 zend_string_free(err_msg); in TimeZone_clone_obj()
/php-src/tests/lang/
H A D039.phpt25 $err_msg = 'no exception';
H A D038.phpt21 $err_msg = 'no exception';
/php-src/ext/standard/tests/image/
H A Dgetimagesize_variation2.phpt5 function test_error_handler($err_no, $err_msg, $filename, $linenum) {
6 echo "Error: $err_no - $err_msg\n";
/php-src/ext/standard/tests/class_object/
H A Dis_subclass_of_variation_001.phpt10 function test_error_handler($err_no, $err_msg, $filename, $linenum) {
11 echo "Error: $err_no - $err_msg\n";
H A Dis_subclass_of_variation_004.phpt10 function test_error_handler($err_no, $err_msg, $filename, $linenum) {
11 echo "Error: $err_no - $err_msg\n";
H A Dmethod_exists_variation_001.phpt9 function test_error_handler($err_no, $err_msg, $filename, $linenum) {
10 echo "Error: $err_no - $err_msg\n";
H A Dget_class_methods_variation_001.phpt5 function test_error_handler($err_no, $err_msg, $filename, $linenum) {
6 echo "Error: $err_no - $err_msg\n";
H A Dget_parent_class_variation_002.phpt9 function test_error_handler($err_no, $err_msg, $filename, $linenum) {
10 echo "Error: $err_no - $err_msg\n";
/php-src/ext/standard/tests/file/
H A Dfile_put_contents_variation2.phpt10 function test_error_handler($err_no, $err_msg, $filename, $linenum) {
13 echo "Error: $err_no - $err_msg\n";
/php-src/ext/standard/tests/array/
H A Darray_multisort_variation8.phpt8 function test_error_handler($err_no, $err_msg, $filename, $linenum) {
H A Darray_multisort_variation1.phpt8 function test_error_handler($err_no, $err_msg, $filename, $linenum) {
11 echo "Error: $err_no - $err_msg, $filename($linenum)\n";
H A Darray_multisort_variation3.phpt8 function test_error_handler($err_no, $err_msg, $filename, $linenum) {
11 echo "Error: $err_no - $err_msg, $filename($linenum)\n";
H A Darray_multisort_variation2.phpt8 function test_error_handler($err_no, $err_msg, $filename, $linenum) {
11 echo "Error: $err_no - $err_msg, $filename($linenum)\n";
/php-src/ext/spl/tests/
H A Dclass_implements_variation1.phpt9 function test_error_handler($err_no, $err_msg, $filename, $linenum) {
12 echo "Error: $err_no - $err_msg, $filename($linenum)\n";
H A Dclass_uses_variation1.phpt9 function test_error_handler($err_no, $err_msg, $filename, $linenum) {
12 echo "Error: $err_no - $err_msg, $filename($linenum)\n";
/php-src/ext/intl/converter/
H A Dconverter.c948 zend_string *err_msg; in php_converter_clone_object() local
951 err_msg = intl_error_get_message(&oldobj->error); in php_converter_clone_object()
952 zend_throw_exception(NULL, ZSTR_VAL(err_msg), 0); in php_converter_clone_object()
953 zend_string_release_ex(err_msg, 0); in php_converter_clone_object()
/php-src/ext/standard/
H A Dftp_fopen_wrapper.c228 #define PHP_FTP_CNTRL_CHK(val, val_len, err_msg) { \ in php_ftp_fopen_connect() argument
232 php_stream_wrapper_log_error(wrapper, options, err_msg, val); \ in php_ftp_fopen_connect()
/php-src/ext/pgsql/
H A Dpgsql.c4486 PCRE2_UCHAR err_msg[128]; in php_pgsql_convert_match() local
4487 pcre2_get_error_message(errnumber, err_msg, sizeof(err_msg)); in php_pgsql_convert_match()
4488 php_error_docref(NULL, E_WARNING, "Cannot compile regex: '%s'", err_msg); in php_pgsql_convert_match()

Completed in 52 milliseconds