Searched refs:error_buf (Results 1 – 4 of 4) sorted by relevance
/PHP-8.4/Zend/ |
H A D | zend_ini_parser.y | 200 char *error_buf; in ini_error() local 206 error_buf = (char *) emalloc(error_buf_len); in ini_error() 208 …sprintf(error_buf, "%s in %s on line %d\n", msg, currently_parsed_filename, zend_ini_scanner_get_l… in ini_error() 210 error_buf = estrdup("Invalid configuration directive\n"); in ini_error() 215 syslog(LOG_ALERT, "PHP: %s (%s)", error_buf, GetCommandLine()); in ini_error() 217 fprintf(stderr, "PHP: %s", error_buf); in ini_error() 219 zend_error(E_WARNING, "%s", error_buf); in ini_error() 221 efree(error_buf); in ini_error()
|
/PHP-8.4/ext/tidy/tests/ |
H A D | 008.phpt | 2 Accessing the error buffer via $obj->error_buf...
|
/PHP-8.4/ext/mysqlnd/ |
H A D | mysqlnd_loaddata.c | 86 int mysqlnd_local_infile_error(void * ptr, char *error_buf, unsigned int error_buf_len) in mysqlnd_local_infile_error() argument 93 strlcpy(error_buf, info->error_msg, error_buf_len); in mysqlnd_local_infile_error() 98 strlcpy(error_buf, "Unknown error", error_buf_len); in mysqlnd_local_infile_error()
|
/PHP-8.4/sapi/cli/ |
H A D | php_cli_server.c | 1188 char *basic_buf, *message_buf = "", *error_buf = ""; in php_cli_server_log_response() local 1235 spprintf(&error_buf, 0, " - %s in %s on line %d", in php_cli_server_log_response() 1237 if (!error_buf) { in php_cli_server_log_response() 1247 …gf(PHP_CLI_SERVER_LOG_MESSAGE, "\x1b[3%dm%s%s%s\x1b[0m", color, basic_buf, message_buf, error_buf); in php_cli_server_log_response() 1249 php_cli_server_logf(PHP_CLI_SERVER_LOG_MESSAGE, "%s%s%s", basic_buf, message_buf, error_buf); in php_cli_server_log_response() 1257 efree(error_buf); in php_cli_server_log_response()
|
Completed in 14 milliseconds