Home
last modified time | relevance | path

Searched refs:msg (Results 26 – 50 of 140) sorted by relevance

123456

/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/Zend/tests/
H A Derrmsg_045.phpt6 set_error_handler(function($_, $msg, $file) {
7 var_dump($msg, $file);
H A Dbug65322.phpt11 set_error_handler(function($_, $msg, $file) {
12 var_dump($msg, $file);
H A Dcatch_finally_004.phpt6 function throw_exception($msg) {
7 throw new Exception($msg);
H A Dcatch_finally_003.phpt5 function dummy($msg) {
6 var_dump($msg);
H A Dexception_before_fatal.phpt5 function exception_error_handler($code, $msg) {
6 throw new Exception($msg);
/PHP-5.5/sapi/milter/
H A Dmilter.php25 function milter_log($msg) argument
28 fwrite($GLOBALS['log'], date("[H:i:s d.m.Y]") . "\t{$msg}\n");
/PHP-5.5/ext/sockets/tests/
H A Dsocket_sentto_recvfrom_unix.phpt27 $msg = "Ping!";
28 $len = strlen($msg);
29 $bytes_sent = socket_sendto($socket, $msg, $len, 0); // cause warning
30 $bytes_sent = socket_sendto($socket, $msg, $len, 0, $address);
H A Dsocket_sentto_recvfrom_ipv4_udp.phpt26 $msg = "Ping!";
27 $len = strlen($msg);
28 $bytes_sent = socket_sendto($socket, $msg, $len, 0, $address, 1223);
H A Dsocket_sentto_recvfrom_ipv6_udp.phpt28 $msg = "Ping!";
29 $len = strlen($msg);
30 $bytes_sent = socket_sendto($socket, $msg, $len, 0, $address, 1223);
H A Dsocket_sentto_recvfrom_ipv6_udp-win32.phpt28 $msg = "Ping!";
29 $len = strlen($msg);
30 $bytes_sent = socket_sendto($socket, $msg, $len, 0, $address, 1223);
/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/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/imap/tests/
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) {
/PHP-5.5/ext/intl/breakiterator/
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/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/sockets/
H A Dphp_sockets.h76 #define PHP_SOCKET_ERROR(socket, msg, errn) \ argument
82 …php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s [%d]: %s", msg, _err, sockets_strerror(_err TSRMLS…
/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 …]
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_fork.phpt72 msg TEXT) ENGINE = InnoDB"))
91 …$sql = sprintf("INSERT INTO messages(pid, sender, msg) VALUES (%d, 'child', '%%s')", posix_getpid(…
95 …$parent_sql = sprintf("SELECT msg_id, msg_time, msg FROM messages WHERE pid = %d AND sender = 'pa…
117 if ($tmp['msg'] == 'stop')
138 …$sql = sprintf("SELECT msg_id, msg_time, msg FROM messages WHERE pid = %d AND sender = 'child' ORD…
139 …$parent_sql = sprintf("INSERT INTO messages (pid, sender, msg) VALUES (%d, 'parent', '%%s')", posi…
148 switch ($row['msg']) {
155 $client_row = $row['msg'];
216 if (!$res = mysqli_query($link, "SELECT sender, msg FROM messages ORDER BY msg_id ASC"))
220 printf("%10s %s\n", $row['sender'], substr($row['msg'], 0, 5));
/PHP-5.5/ext/standard/tests/general_functions/
H A Dbug40398.phpt8 function __construct($msg)
10 echo __METHOD__ . "($msg)\n";
/PHP-5.5/ext/standard/tests/file/
H A Dunlink_variation10.phpt60 $msg = "soft link";
64 $msg = "hard link";
66 echo "-- unlinking $msg $tounlink --\n";
/PHP-5.5/ext/standard/tests/mail/
H A Dmail_basic_alt1-win32.phpt58 // sleep for a while to allow msg to be delivered
69 echo "Id of msg just sent is $i\n";
92 Id of msg just sent is %d
H A Dmail_basic_alt2-win32.phpt56 // sleep for a while to allow msg to be delivered
67 echo "Id of msg just sent is $i\n";
90 Id of msg just sent is %d
H A Dmail_basic_alt3-win32.phpt56 // sleep for a while to allow msg to be delivered
67 echo "Id of msg just sent is $i\n";
90 Id of msg just sent is %d
H A Dmail_basic_alt4-win32.phpt57 // sleep for a while to allow msg to be delivered
68 echo "Id of msg just sent is $i\n";
91 Id of msg just sent is %d

Completed in 34 milliseconds

123456