Searched refs:error_buf (Results 1 – 6 of 6) sorted by relevance
/PHP-8.1/Zend/ |
H A D | zend_ini_parser.y | 188 char *error_buf; in ini_error() local 195 error_buf = (char *) emalloc(error_buf_len); in ini_error() 197 …sprintf(error_buf, "%s in %s on line %d\n", msg, currently_parsed_filename, zend_ini_scanner_get_l… in ini_error() 199 error_buf = estrdup("Invalid configuration directive\n"); in ini_error() 204 syslog(LOG_ALERT, "PHP: %s (%s)", error_buf, GetCommandLine()); in ini_error() 206 fprintf(stderr, "PHP: %s", error_buf); in ini_error() 208 zend_error(E_WARNING, "%s", error_buf); in ini_error() 210 efree(error_buf); in ini_error()
|
/PHP-8.1/ext/tidy/tests/ |
H A D | 008.phpt | 2 Accessing the error buffer via $obj->error_buf...
|
/PHP-8.1/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.1/sapi/cli/ |
H A D | php_cli_server.c | 1140 char *basic_buf, *message_buf = "", *error_buf = ""; in php_cli_server_log_response() local 1186 spprintf(&error_buf, 0, " - %s in %s on line %d", in php_cli_server_log_response() 1188 if (!error_buf) { in php_cli_server_log_response() 1198 …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() 1200 php_cli_server_logf(PHP_CLI_SERVER_LOG_MESSAGE, "%s%s%s", basic_buf, message_buf, error_buf); in php_cli_server_log_response() 1208 efree(error_buf); in php_cli_server_log_response()
|
/PHP-8.1/ext/oci8/ |
H A D | oci8.c | 817 sb4 php_oci_fetch_errmsg(OCIError *error_handle, text *error_buf, size_t error_buf_size) in php_oci_fetch_errmsg() argument 821 …PHP_OCI_CALL(OCIErrorGet, (error_handle, (ub4)1, NULL, &error_code, error_buf, (ub4)error_buf_size… in php_oci_fetch_errmsg() 824 int err_buf_len = (int) strlen((char *)error_buf); in php_oci_fetch_errmsg() 826 if (err_buf_len && error_buf[err_buf_len - 1] == '\n') { in php_oci_fetch_errmsg() 827 error_buf[err_buf_len - 1] = '\0'; in php_oci_fetch_errmsg()
|
H A D | php_oci8_int.h | 422 sb4 php_oci_fetch_errmsg(OCIError *error_handle, text *error_buf, size_t error_buf_size);
|
Completed in 36 milliseconds