Searched refs:error_buf (Results 1 – 6 of 6) sorted by relevance
/PHP-5.6/Zend/ |
H A D | zend_ini_parser.y | 180 char *error_buf; in ini_error() local 188 error_buf = (char *) emalloc(error_buf_len); in ini_error() 190 …sprintf(error_buf, "%s in %s on line %d\n", msg, currently_parsed_filename, zend_ini_scanner_get_l… in ini_error() 192 error_buf = estrdup("Invalid configuration directive\n"); in ini_error() 197 syslog(LOG_ALERT, "PHP: %s (%s)", error_buf, GetCommandLine()); in ini_error() 199 fprintf(stderr, "PHP: %s", error_buf); in ini_error() 201 zend_error(E_WARNING, "%s", error_buf); in ini_error() 203 efree(error_buf); in ini_error()
|
/PHP-5.6/ext/tidy/tests/ |
H A D | 008.phpt | 2 Accessing the error buffer via $obj->error_buf...
|
/PHP-5.6/ext/mysqlnd/ |
H A D | mysqlnd_loaddata.c | 90 int mysqlnd_local_infile_error(void * ptr, char *error_buf, unsigned int error_buf_len TSRMLS_DC) in mysqlnd_local_infile_error() argument 97 strlcpy(error_buf, info->error_msg, error_buf_len); in mysqlnd_local_infile_error() 102 strlcpy(error_buf, "Unknown error", error_buf_len); in mysqlnd_local_infile_error()
|
/PHP-5.6/sapi/cli/ |
H A D | php_cli_server.c | 1192 char *basic_buf, *message_buf = "", *error_buf = ""; in php_cli_server_log_response() local 1244 …spprintf(&error_buf, 0, " - %s in %s on line %d", PG(last_error_message), PG(last_error_file), PG(… in php_cli_server_log_response() 1245 if (!error_buf) { in php_cli_server_log_response() 1255 php_cli_server_logf("\x1b[3%dm%s%s%s\x1b[0m" TSRMLS_CC, color, basic_buf, message_buf, error_buf); in php_cli_server_log_response() 1257 php_cli_server_logf("%s%s%s" TSRMLS_CC, basic_buf, message_buf, error_buf); in php_cli_server_log_response() 1265 efree(error_buf); in php_cli_server_log_response()
|
/PHP-5.6/ext/oci8/ |
H A D | php_oci8_int.h | 407 sb4 php_oci_fetch_errmsg(OCIError *error_handle, text **error_buf TSRMLS_DC);
|
H A D | oci8.c | 1699 sb4 php_oci_fetch_errmsg(OCIError *error_handle, text **error_buf TSRMLS_DC) in php_oci_fetch_errmsg() 1713 if (err_buf_len && error_buf) { in php_oci_fetch_errmsg() 1714 *error_buf = NULL; in php_oci_fetch_errmsg() 1715 *error_buf = (text *)estrndup((char *)err_buf, err_buf_len); in php_oci_fetch_errmsg()
|
Completed in 36 milliseconds