fLog               36 ext/opcache/zend_accelerator_debug.c 	FILE * fLog = NULL;
fLog               51 ext/opcache/zend_accelerator_debug.c 		fLog = stderr;
fLog               53 ext/opcache/zend_accelerator_debug.c 		fLog = fopen(ZCG(accel_directives).error_log, "a+");
fLog               54 ext/opcache/zend_accelerator_debug.c 		if (!fLog) {
fLog               55 ext/opcache/zend_accelerator_debug.c 			fLog = stderr;
fLog               60 ext/opcache/zend_accelerator_debug.c     fprintf(fLog, "%s (%lu): ", time_string, (unsigned long)tsrm_thread_id());
fLog               62 ext/opcache/zend_accelerator_debug.c     fprintf(fLog, "%s (%d): ", time_string, getpid());
fLog               67 ext/opcache/zend_accelerator_debug.c 			fprintf(fLog, "Fatal Error ");
fLog               70 ext/opcache/zend_accelerator_debug.c 			fprintf(fLog, "Error ");
fLog               73 ext/opcache/zend_accelerator_debug.c 			fprintf(fLog, "Warning ");
fLog               76 ext/opcache/zend_accelerator_debug.c 			fprintf(fLog, "Message ");
fLog               79 ext/opcache/zend_accelerator_debug.c 			fprintf(fLog, "Debug ");
fLog               84 ext/opcache/zend_accelerator_debug.c     vfprintf(fLog, format, args);
fLog               86 ext/opcache/zend_accelerator_debug.c 	fprintf(fLog, "\n");
fLog               95 ext/opcache/zend_accelerator_debug.c 	fflush(fLog);
fLog               96 ext/opcache/zend_accelerator_debug.c 	if (fLog != stderr) {
fLog               97 ext/opcache/zend_accelerator_debug.c 		fclose(fLog);