error_log         209 ext/opcache/ZendAccelerator.h 	char          *error_log;
error_log          46 ext/opcache/zend_accelerator_debug.c 	if (!ZCG(accel_directives).error_log ||
error_log          47 ext/opcache/zend_accelerator_debug.c 	    !*ZCG(accel_directives).error_log ||
error_log          48 ext/opcache/zend_accelerator_debug.c 	    strcmp(ZCG(accel_directives).error_log, "stderr") == 0) {
error_log          52 ext/opcache/zend_accelerator_debug.c 		fLog = fopen(ZCG(accel_directives).error_log, "a+");
error_log         299 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.error_log"                , ""    , PHP_INI_SYSTEM, OnUpdateString,	         accel_directives.error_log,                 zend_accel_globals, accel_globals)
error_log         706 ext/opcache/zend_accelerator_module.c 	add_assoc_string(&directives, "opcache.error_log",              STRING_NOT_NULL(ZCG(accel_directives).error_log));
error_log        2965 ext/standard/basic_functions.c 	PHP_FE(error_log,														arginfo_error_log)
error_log        4647 ext/standard/basic_functions.c PHP_FUNCTION(error_log)
error_log          82 ext/standard/basic_functions.h PHP_FUNCTION(error_log);
error_log         531 main/main.c    	STD_PHP_INI_ENTRY("error_log",				NULL,		PHP_INI_ALL,		OnUpdateErrorLog,			error_log,				php_core_globals,	core_globals)
error_log         624 main/main.c    	if (PG(error_log) != NULL) {
error_log         626 main/main.c    		if (!strcmp(PG(error_log), "syslog")) {
error_log         632 main/main.c    		fd = VCWD_OPEN_MODE(PG(error_log), O_CREAT | O_APPEND | O_WRONLY, 0644);
error_log          80 main/php_globals.h 	char *error_log;
error_log          96 sapi/fpm/fpm/fpm_conf.c 	{ "error_log",                   &fpm_conf_set_string,          GO(error_log) },
error_log        1180 sapi/fpm/fpm/fpm_conf.c 	if (!fpm_global_config.error_log) {
error_log        1181 sapi/fpm/fpm/fpm_conf.c 		fpm_global_config.error_log = strdup("log/php-fpm.log");
error_log        1199 sapi/fpm/fpm/fpm_conf.c 	if (strcasecmp(fpm_global_config.error_log, "syslog") != 0)
error_log        1202 sapi/fpm/fpm/fpm_conf.c 		fpm_evaluate_full_path(&fpm_global_config.error_log, NULL, PHP_LOCALSTATEDIR, 0);
error_log        1238 sapi/fpm/fpm/fpm_conf.c 	free(fpm_global_config.error_log);
error_log        1241 sapi/fpm/fpm/fpm_conf.c 	fpm_global_config.error_log = 0;
error_log        1578 sapi/fpm/fpm/fpm_conf.c 	zlog(ZLOG_NOTICE, "\terror_log = %s",                   STR2STR(fpm_global_config.error_log));
error_log          28 sapi/fpm/fpm/fpm_conf.h 	char *error_log;
error_log         292 sapi/fpm/fpm/fpm_stdio.c 	if (!strcasecmp(fpm_global_config.error_log, "syslog")) {
error_log         302 sapi/fpm/fpm/fpm_stdio.c 	fd = open(fpm_global_config.error_log, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR);
error_log         304 sapi/fpm/fpm/fpm_stdio.c 		zlog(ZLOG_SYSERROR, "failed to open error_log (%s)", fpm_global_config.error_log);