Home
last modified time | relevance | path

Searched refs:msg (Results 126 – 150 of 217) sorted by last modified time

123456789

/php-src/win32/
H A Dwinutil.c50 PHP_WINUTIL_API void php_win32_error_msg_free(char *msg) in php_win32_error_msg_free() argument
52 if (msg && msg[0]) { in php_win32_error_msg_free()
53 free(msg); in php_win32_error_msg_free()
H A Dwinutil.h27 PHP_WINUTIL_API void php_win32_error_msg_free(char *msg);
/php-src/tests/classes/
H A Dctor_failure.phpt8 function __construct($msg) {
9 echo __METHOD__ . "($msg)\n";
10 throw new Exception($msg);
/php-src/sapi/phpdbg/
H A Dphpdbg_parser.y26 static int yyerror(const char *msg);
174 static int yyerror(const char *msg) {
175 phpdbg_error("Parse Error: %s", msg);
H A Dphpdbg_cmd.h151 PHPDBG_API void phpdbg_param_debug(const phpdbg_param_t *param, const char *msg);
/php-src/sapi/fpm/tests/
H A Dlog-dwd-limit-1050-msg-2048.phpt2 FPM: Direct worker output decorated log with limit 1050 with 2048 msg
H A Dlog-dwd-limit-1050-msg-2900.phpt2 FPM: Direct worker output decorated log with limit 1050 with 2900 msg
H A Dlog-dwd-limit-8000-msg-4096.phpt2 FPM: Direct worker output decorated log with limit 8000 with 4096 msg
H A Dlog-dwp-limit-1000-msg-2000.phpt2 FPM: Direct worker output plain log with limit 1000 and msg 2000
H A Dlog-bm-limit-1024-msg-80.phpt2 FPM: Buffered message output log with limit 1024 and msg 80
H A Dlog-bm-limit-2048-msg-4000.phpt2 FPM: Buffered message output log with limit 2048 and msg 4000
H A Dlog-bwd-limit-1050-msg-2048.phpt2 FPM: Buffered worker output decorated log with limit 1050 with 2048 msg
H A Dlog-bwd-limit-1050-msg-2900.phpt2 FPM: Buffered worker output decorated log with limit 1050 with 2900 msg
H A Dlog-bwd-limit-8000-msg-4096.phpt2 FPM: Buffered worker output decorated log with limit 8000 with 4096 msg
H A Dlog-bwd-msg-with-nl.phpt2 FPM: Buffered worker output decorated log with msg containing new lines
25 file_put_contents('php://stderr', "msg 1\nmsg 2\nmsg 3");
32 $tester->expectLogLine('msg 1');
33 $tester->expectLogLine('msg 2');
34 $tester->expectLogLine('msg 3');
H A Dlog-bwd-multiple-msgs-stdout-stderr.phpt27 file_put_contents('php://stdout', "msg 1 - ");
29 file_put_contents('php://stderr', "msg 2 - ");
31 file_put_contents('php://stderr', "msg 3");
39 $tester->expectLogLine('msg 1 - ', false);
40 $tester->expectLogLine('msg 2 - msg 3', true);
H A Dlog-bwd-multiple-msgs.phpt25 file_put_contents('php://stderr', "msg 1 - ");
27 file_put_contents('php://stderr', "msg 2 - ");
29 file_put_contents('php://stderr', "msg 3");
37 $tester->expectLogLine('msg 1 - msg 2 - msg 3');
38 $tester->expectLogLine('msg 1 - msg 2 - msg 3');
H A Dlog-bwp-limit-1024-msg-120.phpt2 FPM: Buffered worker output plain log with limit 1024 and msg 120
H A Dlog-bwp-limit-1500-msg-3300.phpt2 FPM: Buffered worker output plain log with limit 1500 and msg 3300
/php-src/sapi/fpm/fpm/
H A Dfpm_trace_mach.c60 char *msg = ""; in fpm_trace_ready() local
63 msg = " It seems that master process does not have enough privileges to trace processes."; in fpm_trace_ready()
65 zlog(ZLOG_ERROR, "task_for_pid() failed: %s (%d)%s", mach_error_string(kr), kr, msg); in fpm_trace_ready()
/php-src/ext/sysvmsg/
H A Dconfig.m47 AC_CHECK_HEADER([sys/msg.h],
9 [AC_MSG_ERROR([Cannot enable System V IPC support, sys/msg.h is missing])
/php-src/ext/sysvmsg/tests/
H A D002.phpt12 var_dump($res = msg_receive ($queue, 1, $msg_type, 16384, $msg, true, 0, $msg_error));
H A D005.phpt28 var_dump(msg_receive($q, 0, $null, 1, $msg, true, 0, $errno));
32 msg_receive($q, 0, $null, 0, $msg);
H A D006.phpt20 unset($msg);
21 var_dump(msg_receive($queue, 1, $msg_type, 1024, $msg, false, MSG_IPC_NOWAIT));
23 var_dump($elem == $msg);
24 var_dump($elem === $msg);
/php-src/ext/standard/tests/general_functions/
H A Dbug40398.phpt8 function __construct($msg)
10 echo __METHOD__ . "($msg)\n";

Completed in 59 milliseconds

123456789