/PHP-5.4/win32/ |
H A D | time.c | 137 struct timer_msg *msg = (struct timer_msg *) info; 139 if (msg) { 140 raise((int) msg->signal); 141 PostThreadMessage(msg->threadid, 142 WM_NOTIFY, msg->signal, 0); 143 free(msg); 156 struct timer_msg *msg = malloc(sizeof(struct timer_msg)); 157 msg->threadid = GetCurrentThreadId(); 163 msg->signal = SIGALRM; 167 msg->signal = SIGVTALRM; [all …]
|
/PHP-5.4/ext/intl/ |
H A D | intl_error.c | 100 void intl_error_set_custom_msg( intl_error* err, char* msg, int copyMsg TSRMLS_DC ) in intl_error_set_custom_msg() argument 102 if( !msg ) in intl_error_set_custom_msg() 106 php_error_docref(NULL TSRMLS_CC, INTL_G(error_level), "%s", msg); in intl_error_set_custom_msg() 118 err->custom_error_message = copyMsg ? estrdup( msg ) : msg; in intl_error_set_custom_msg() 176 void intl_error_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC ) in intl_error_set() argument 179 intl_error_set_custom_msg( err, msg, copyMsg TSRMLS_CC ); in intl_error_set() 186 void intl_errors_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC ) in intl_errors_set() argument 189 intl_errors_set_custom_msg( err, msg, copyMsg TSRMLS_CC ); in intl_errors_set() 206 void intl_errors_set_custom_msg( intl_error* err, char* msg, int copyMsg TSRMLS_DC ) in intl_errors_set_custom_msg() argument 209 intl_error_set_custom_msg( err, msg, copyMsg TSRMLS_CC ); in intl_errors_set_custom_msg() [all …]
|
H A D | intl_data.h | 49 #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 D | intl_error.h | 36 void intl_error_set_custom_msg( intl_error* err, char* msg, int copyMsg TSRMLS_DC ); 37 void intl_error_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC ); 43 void intl_errors_set_custom_msg( intl_error* err, char* msg, int copyMsg TSRMLS_DC ); 45 void intl_errors_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC );
|
/PHP-5.4/ext/mysqlnd/ |
H A D | mysqlnd_debug.h | 99 …e DBG_INF_EX(dbg_obj, msg) do { if (dbg_skip_trace == FALSE) (dbg_obj)->m->log((dbg_obj), __LINE_… argument 100 …e DBG_ERR_EX(dbg_obj, msg) do { if (dbg_skip_trace == FALSE) (dbg_obj)->m->log((dbg_obj), __LINE_… argument 145 static inline void DBG_INF_EX(MYSQLND_DEBUG * dbg_obj, const char * const msg) {} in DBG_INF_EX() argument 146 static inline void DBG_ERR_EX(MYSQLND_DEBUG * dbg_obj, const char * const msg) {} in DBG_ERR_EX() argument 159 #define DBG_INF(msg) DBG_INF_EX(MYSQLND_G(dbg), (msg)) argument 160 #define DBG_ERR(msg) DBG_ERR_EX(MYSQLND_G(dbg), (msg)) argument 172 static inline void DBG_INF(const char * const msg) {} in DBG_INF() argument 173 static inline void DBG_ERR(const char * const msg) {} in DBG_ERR() argument
|
/PHP-5.4/ext/com_dotnet/ |
H A D | com_olechar.c | 63 char *msg = php_win32_error_to_msg(GetLastError()); in php_com_string_to_olestring() local 66 "Could not convert string to unicode: `%s'", msg); in php_com_string_to_olestring() 68 LocalFree(msg); in php_com_string_to_olestring() 94 char *msg = php_win32_error_to_msg(GetLastError()); in php_com_olestring_to_string() local 97 "Could not convert string from unicode: `%s'", msg); in php_com_olestring_to_string() 99 LocalFree(msg); in php_com_olestring_to_string()
|
H A D | com_com.c | 225 char *werr, *msg; in PHP_FUNCTION() local 232 efree(msg); in PHP_FUNCTION() 396 msg = NULL; in php_com_invoke_helper() 408 if (msg) { in php_com_invoke_helper() 410 efree(msg); in php_com_invoke_helper() 483 char *msg = NULL; in php_com_do_invoke_byref() local 488 efree(msg); in php_com_do_invoke_byref() 638 char *msg = NULL; in php_com_do_invoke() local 647 efree(msg); in php_com_do_invoke() 780 MSG msg; in PHP_FUNCTION() local [all …]
|
/PHP-5.4/ext/pgsql/tests/ |
H A D | 09notice.phpt | 26 $msg = pg_last_notice($db); 27 if ($msg === FALSE) { 29 var_dump($msg); 31 echo $msg."\n";
|
H A D | 21pg_get_notify.phpt | 15 $msg = pg_get_notify($db); 17 isset($msg['message'],$msg['pid']) ? print 'OK' : print 'NG';
|
/PHP-5.4/Zend/tests/ |
H A D | bug60569.phpt | 6 $msg = "Some error \x00 message"; 7 throw new Exception($msg); 9 var_dump($e->getMessage(), $msg);
|
H A D | class_alias_005.phpt | 7 static public function msg() { 19 foo::msg();
|
H A D | bug61767.phpt | 5 set_error_handler(function($code, $msg, $file = null, $line = null) { 6 echo "Error handler called ($msg)\n"; 7 throw new \ErrorException($msg, $code, 0, $file, $line);
|
H A D | errmsg_045.phpt | 6 set_error_handler(function($_, $msg, $file) { 7 var_dump($msg, $file);
|
H A D | bug65322.phpt | 11 set_error_handler(function($_, $msg, $file) { 12 var_dump($msg, $file);
|
/PHP-5.4/tests/classes/ |
H A D | ctor_failure.phpt | 8 function __construct($msg) { 9 echo __METHOD__ . "($msg)\n"; 10 throw new Exception($msg);
|
/PHP-5.4/ext/pdo_mysql/ |
H A D | php_pdo_mysql_int.h | 42 …ine PDO_DBG_INF(msg) do { if (dbg_skip_trace == FALSE) PDO_MYSQL_G(dbg)->m->log(PDO_MYSQL_G(dbg), … argument 43 …ine PDO_DBG_ERR(msg) do { if (dbg_skip_trace == FALSE) PDO_MYSQL_G(dbg)->m->log(PDO_MYSQL_G(dbg), … argument 53 static inline void PDO_DBG_INF(char *msg) {} in PDO_DBG_INF() argument 54 static inline void PDO_DBG_ERR(char *msg) {} in PDO_DBG_ERR() argument
|
/PHP-5.4/ext/filter/tests/ |
H A D | 046.phpt | 24 function test_validation($val, $msg) { 26 echo "$msg filtered: "; var_dump($f); // filtered value (or false) 27 echo "$msg is_long: "; var_dump(is_long($f)); // test validation 28 echo "$msg equal: "; var_dump($val == $f); // test equality of result
|
/PHP-5.4/sapi/fpm/fpm/ |
H A D | fpm_trace_mach.c | 63 char *msg = ""; in fpm_trace_ready() local 66 msg = " It seems that master process does not have enough privileges to trace processes."; in fpm_trace_ready() 68 zlog(ZLOG_ERROR, "task_for_pid() failed: %s (%d)%s", mach_error_string(kr), kr, msg); in fpm_trace_ready()
|
/PHP-5.4/ext/imap/tests/ |
H A D | imap_fetchheader_basic.phpt | 18 $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
|
/PHP-5.4/ext/libxml/ |
H A D | php_libxml.h | 95 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.4/ext/sysvmsg/tests/ |
H A D | 006.phpt | 16 unset($msg); 17 var_dump(msg_receive($queue, 1, $msg_type, 1024, $msg, false, MSG_IPC_NOWAIT)); 19 var_dump($elem == $msg); 20 var_dump($elem === $msg);
|
/PHP-5.4/ext/sysvmsg/ |
H A D | config.m4 | 7 AC_CHECK_HEADER([sys/msg.h], 9 [AC_MSG_ERROR([Cannot enable System V IPC support, sys/msg.h is missing])
|
/PHP-5.4/ext/gd/libgd/ |
H A D | gdtest.c | 14 void CompareImages (char *msg, gdImagePtr im1, gdImagePtr im2); 360 CompareImages (char *msg, gdImagePtr im1, gdImagePtr im2) in CompareImages() argument 368 printf ("%%%s: ERROR images differ: BAD\n", msg); in CompareImages() 372 printf ("%%%s: WARNING images differ: WARNING - Probably OK\n", msg); in CompareImages() 376 printf ("%%%s: OK\n", msg); in CompareImages() 382 printf ("-%s: INFO image sizes differ\n", msg); in CompareImages() 387 printf ("-%s: INFO number of pallette entries differ %d Vs. %d\n", msg, in CompareImages() 393 printf ("-%s: INFO actual colours of pixels differ\n", msg); in CompareImages()
|
/PHP-5.4/ext/intl/transliterator/ |
H A D | transliterator_methods.c | 184 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.4/sapi/milter/ |
H A D | milter.php | 25 function milter_log($msg) argument 28 fwrite($GLOBALS['log'], date("[H:i:s d.m.Y]") . "\t{$msg}\n");
|