fLog               36 ext/opcache/zend_accelerator_debug.c 	FILE * fLog = NULL;
fLog               50 ext/opcache/zend_accelerator_debug.c 		fLog = stderr;
fLog               52 ext/opcache/zend_accelerator_debug.c 		fLog = fopen(ZCG(accel_directives).error_log, "a+");
fLog               53 ext/opcache/zend_accelerator_debug.c 		if (!fLog) {
fLog               54 ext/opcache/zend_accelerator_debug.c 			fLog = stderr;
fLog               59 ext/opcache/zend_accelerator_debug.c     fprintf(fLog, "%s (" ZEND_ULONG_FMT "): ", time_string, (zend_ulong)tsrm_thread_id());
fLog               61 ext/opcache/zend_accelerator_debug.c     fprintf(fLog, "%s (%d): ", time_string, getpid());
fLog               66 ext/opcache/zend_accelerator_debug.c 			fprintf(fLog, "Fatal Error ");
fLog               69 ext/opcache/zend_accelerator_debug.c 			fprintf(fLog, "Error ");
fLog               72 ext/opcache/zend_accelerator_debug.c 			fprintf(fLog, "Warning ");
fLog               75 ext/opcache/zend_accelerator_debug.c 			fprintf(fLog, "Message ");
fLog               78 ext/opcache/zend_accelerator_debug.c 			fprintf(fLog, "Debug ");
fLog               83 ext/opcache/zend_accelerator_debug.c     vfprintf(fLog, format, args);
fLog               85 ext/opcache/zend_accelerator_debug.c 	fprintf(fLog, "\n");
fLog               94 ext/opcache/zend_accelerator_debug.c 	fflush(fLog);
fLog               95 ext/opcache/zend_accelerator_debug.c 	if (fLog != stderr) {
fLog               96 ext/opcache/zend_accelerator_debug.c 		fclose(fLog);