Home
last modified time | relevance | path

Searched refs:msg (Results 76 – 100 of 140) sorted by last modified time

123456

/PHP-5.5/ext/libxml/
H A Dlibxml.c492 error_copy.message = xmlStrdup(msg); in _php_list_set_error_structure()
520 void php_libxml_issue_error(int level, const char *msg TSRMLS_DC) in php_libxml_issue_error()
523 _php_list_set_error_structure(NULL, msg); in php_libxml_issue_error()
525 php_error_docref(NULL TSRMLS_CC, level, "%s", msg); in php_libxml_issue_error()
536 len = vspprintf(&buf, 0, *msg, ap); in php_libxml_internal_error_handler()
714 PHP_LIBXML_API void php_libxml_ctx_error(void *ctx, const char *msg, ...) in php_libxml_ctx_error() argument
717 va_start(args, msg); in php_libxml_ctx_error()
718 php_libxml_internal_error_handler(PHP_LIBXML_CTX_ERROR, ctx, &msg, args); in php_libxml_ctx_error()
725 va_start(args, msg); in php_libxml_ctx_warning()
740 va_start(args, msg); in php_libxml_error_handler()
[all …]
H A Dphp_libxml.h95 PHP_LIBXML_API void php_libxml_error_handler(void *ctx, const char *msg, ...);
96 PHP_LIBXML_API void php_libxml_ctx_warning(void *ctx, const char *msg, ...);
97 PHP_LIBXML_API void php_libxml_ctx_error(void *ctx, const char *msg, ...);
100 PHP_LIBXML_API void php_libxml_issue_error(int level, const char *msg TSRMLS_DC);
/PHP-5.5/ext/ldap/
H A Dldap.mak17 .SUFFIXES: .nlm .lib .obj .cpp .c .msg .mlc .mdb .xdc .d
/PHP-5.5/ext/intl/transliterator/
H A Dtransliterator_methods.c184 char *msg = NULL; in PHP_FUNCTION() local
187 spprintf( &msg, 0, "transliterator_create_from_rules: unable to " in PHP_FUNCTION()
190 if( msg != NULL ) in PHP_FUNCTION()
192 intl_errors_set_custom_msg( INTL_DATA_ERROR_P( to ), msg, 1 TSRMLS_CC ); in PHP_FUNCTION()
193 efree( msg ); in PHP_FUNCTION()
392 char *msg; in PHP_FUNCTION() local
393 spprintf( &msg, 0, in PHP_FUNCTION()
397 if(msg != NULL ) in PHP_FUNCTION()
400 msg, 1 TSRMLS_CC ); in PHP_FUNCTION()
401 efree( msg ); in PHP_FUNCTION()
/PHP-5.5/ext/intl/
H A Dintl_data.h49 #define INTL_CHECK_STATUS(err, msg) \ argument
53 intl_error_set_custom_msg( NULL, msg, 0 TSRMLS_CC ); \
58 #define INTL_METHOD_CHECK_STATUS(obj, msg) \ argument
62 intl_errors_set_custom_msg( INTL_DATA_ERROR_P((obj)), msg, 0 TSRMLS_CC ); \
67 #define INTL_CTOR_CHECK_STATUS(obj, msg) \ argument
71 intl_errors_set_custom_msg( INTL_DATA_ERROR_P((obj)), msg, 0 TSRMLS_CC ); \
H A Dintl_error.c104 void intl_error_set_custom_msg( intl_error* err, char* msg, int copyMsg TSRMLS_DC ) in intl_error_set_custom_msg() argument
106 if( !msg ) in intl_error_set_custom_msg()
111 php_error_docref( NULL TSRMLS_CC, INTL_G( error_level ), "%s", msg ); in intl_error_set_custom_msg()
113 zend_throw_exception_ex( IntlException_ce_ptr, 0 TSRMLS_CC, "%s", msg ); in intl_error_set_custom_msg()
125 err->custom_error_message = copyMsg ? estrdup( msg ) : msg; in intl_error_set_custom_msg()
183 void intl_error_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC ) in intl_error_set() argument
186 intl_error_set_custom_msg( err, msg, copyMsg TSRMLS_CC ); in intl_error_set()
196 intl_errors_set_custom_msg( err, msg, copyMsg TSRMLS_CC ); in intl_errors_set()
213 void intl_errors_set_custom_msg( intl_error* err, char* msg, int copyMsg TSRMLS_DC ) in intl_errors_set_custom_msg() argument
216 intl_error_set_custom_msg( err, msg, copyMsg TSRMLS_CC ); in intl_errors_set_custom_msg()
[all …]
H A Dintl_error.h38 void intl_error_set_custom_msg( intl_error* err, char* msg, int copyMsg TSRMLS_DC );
39 void intl_error_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC );
45 void intl_errors_set_custom_msg( intl_error* err, char* msg, int copyMsg TSRMLS_DC );
47 void intl_errors_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC );
H A DERROR.CONVENTIONS25 void intl_error_set_custom_msg(intl_error* err, char* msg, int copyMsg TSRMLS_DC);
26 void intl_error_set(intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC);
47 void intl_errors_set_custom_msg(intl_error* err, char* msg, int copyMsg TSRMLS_DC);
49 void intl_errors_set(intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC);
/PHP-5.5/ext/intl/locale/
H A Dlocale_methods.c380 char* msg = NULL; in get_icu_value_src_php() local
390 efree(msg); in get_icu_value_src_php()
418 intl_error_set( NULL, status, msg , 1 TSRMLS_CC ); in get_icu_value_src_php()
419 efree(msg); in get_icu_value_src_php()
486 char* msg = NULL; in get_icu_disp_value_src_php() local
497 efree(msg); in get_icu_disp_value_src_php()
505 efree(msg); in get_icu_disp_value_src_php()
563 intl_error_set( NULL, status, msg , 1 TSRMLS_CC ); in get_icu_disp_value_src_php()
564 efree(msg); in get_icu_disp_value_src_php()
592 intl_error_set( NULL, status, msg , 1 TSRMLS_CC ); in get_icu_disp_value_src_php()
[all …]
/PHP-5.5/ext/intl/spoofchecker/
H A Dspoofchecker_class.h69 #define SPOOFCHECKER_CHECK_STATUS(co, msg) \ argument
72 intl_errors_set_custom_msg(SPOOFCHECKER_ERROR_P(co), msg, 0 TSRMLS_CC); \
/PHP-5.5/ext/intl/idn/
H A Didn.c114 static int php_intl_idn_check_status(UErrorCode err, const char *msg, int mode TSRMLS_DC) in php_intl_idn_check_status() argument
121 msg); in php_intl_idn_check_status()
130 static inline void php_intl_bad_args(const char *msg, int mode TSRMLS_DC) in php_intl_bad_args() argument
132 php_intl_idn_check_status(U_ILLEGAL_ARGUMENT_ERROR, msg, mode TSRMLS_CC); in php_intl_bad_args()
/PHP-5.5/ext/intl/dateformat/
H A Ddateformat_helpers.cpp39 char *msg; in datefmt_process_calendar_arg() local
59 intl_errors_set(err, U_ILLEGAL_ARGUMENT_ERROR, msg, 1 TSRMLS_CC); in datefmt_process_calendar_arg()
60 efree(msg); in datefmt_process_calendar_arg()
77 spprintf(&msg, 0, "%s: Found unconstructed IntlCalendar object", in datefmt_process_calendar_arg()
79 intl_errors_set(err, U_ILLEGAL_ARGUMENT_ERROR, msg, 1 TSRMLS_CC); in datefmt_process_calendar_arg()
80 efree(msg); in datefmt_process_calendar_arg()
90 intl_errors_set(err, U_ILLEGAL_ARGUMENT_ERROR, msg, 1 TSRMLS_CC); in datefmt_process_calendar_arg()
91 efree(msg); in datefmt_process_calendar_arg()
99 spprintf(&msg, 0, "%s: Failure instantiating calendar", func_name); in datefmt_process_calendar_arg()
100 intl_errors_set(err, U_ILLEGAL_ARGUMENT_ERROR, msg, 1 TSRMLS_CC); in datefmt_process_calendar_arg()
[all …]
/PHP-5.5/ext/intl/collator/
H A Dcollator_class.h61 #define COLLATOR_CHECK_STATUS( co, msg ) \ argument
65 intl_errors_set_custom_msg( COLLATOR_ERROR_P( co ), msg, 0 TSRMLS_CC ); \
/PHP-5.5/ext/interbase/
H A Dinterbase.c522 void _php_ibase_module_error(char *msg TSRMLS_DC, ...) /* {{{ */ in _php_ibase_module_error()
529 va_start(ap, msg); in _php_ibase_module_error()
533 vsnprintf(IBG(errmsg), MAX_ERRMSG, msg, ap); in _php_ibase_module_error()
/PHP-5.5/ext/intl/breakiterator/
H A Dbreakiterator_methods.cpp50 char *msg; in _breakiter_factory() local
56 spprintf(&msg, 0, "%s: bad arguments", func_name); in _breakiter_factory()
58 efree(msg); in _breakiter_factory()
71 intl_error_set_custom_msg(NULL, msg, 1 TSRMLS_CC); in _breakiter_factory()
72 efree(msg); in _breakiter_factory()
199 char *msg; in _breakiter_no_args_ret_int32() local
204 spprintf(&msg, 0, "%s: bad arguments", func_name); in _breakiter_no_args_ret_int32()
206 efree(msg); in _breakiter_no_args_ret_int32()
222 char *msg; in _breakiter_int32_ret_int32() local
230 efree(msg); in _breakiter_int32_ret_int32()
[all …]
H A Drulebasedbreakiterator_methods.cpp65 char *msg; in _php_intlrbbi_constructor_body() local
68 spprintf(&msg, 0, "rbbi_create_instance: unable to create " in _php_intlrbbi_constructor_body()
71 intl_error_set_custom_msg(NULL, msg, 1 TSRMLS_CC); in _php_intlrbbi_constructor_body()
72 efree(msg); in _php_intlrbbi_constructor_body()
/PHP-5.5/ext/imap/tests/
H A Dimap_fetchbody_error.phpt25 $stream_id = setup_test_mailbox('', 1); // set up temp mailbox with 1 simple msg
H A Dimap_fetchbody_variation3.phpt24 $stream_id = setup_test_mailbox('', 1); // set up temp mailbox with 1 simple msg
H A Dimap_fetchbody_variation6.phpt15 * Pass different integers, strings, msg sequences and msg UIDs as $msg_no argument
H A Dimap_fetchheader_basic.phpt18 $stream_id = setup_test_mailbox('', 1, $mailbox, 'multiPart'); // setup temp mailbox with 1 msg
52 Subject: Test msg 1
60 Subject: Test msg 1
68 Subject: Test msg 1
77 Subject: Test msg 1
H A Dimap_fetchheader_variation2.phpt22 $stream_id = setup_test_mailbox('', 1, $mailbox, 'notSimple'); // set up temp mailbox with 1 msg
130 Subject: Test msg 1
184 Subject: Test msg 1
198 Subject: Test msg 1
H A Dimap_include.inc140 $msg = "From: foo@anywhere.com\r\n"
148 $envelope["subject"] = "Test msg $i";
173 $msg = imap_mail_compose($envelope, $body);
176 imap_append($imap_stream, $mailbox, $msg);
H A Dimap_fetch_overview_variation2.phpt23 $stream_id = setup_test_mailbox('', 1, $mailbox, 'notSimple'); // set up temp mailbox with 1 msg
H A Dimap_fetch_overview_variation5.phpt16 * Pass different sequences/msg numbers as $msg_no argument to test behaviour
H A Dimap_fetch_overview_variation6.phpt25 // refresh msg numbers
46 $envelope["subject"] = "Test msg 1";
78 $msg = imap_mail_compose($envelope, $body);
80 if (imap_append($imap_stream, $mailbox, $msg) === false) {

Completed in 56 milliseconds

123456