Lines Matching refs:sFileLogEntry
49 char sFileLogEntry[MAX_LOG_FILE_LINE_LENGTH]; in process_fatal_application_state() local
56 strncpy(sFileLogEntry, "A fatal application error has occurred. Date: ", sizeof(sFileLogEntry)); in process_fatal_application_state()
58 sFileLogEntry[sizeof(sFileLogEntry)-1] = '\0'; in process_fatal_application_state()
60 strncat(sFileLogEntry, sTimeStamp, MAX_LOG_FILE_LINE_LENGTH - strlen(sFileLogEntry)); in process_fatal_application_state()
62 strncat(sFileLogEntry, " File: ", MAX_LOG_FILE_LINE_LENGTH - strlen(sFileLogEntry)); in process_fatal_application_state()
64 strncat(sFileLogEntry, sFile, MAX_LOG_FILE_LINE_LENGTH - strlen(sFileLogEntry)); in process_fatal_application_state()
66 strncat(sFileLogEntry, " Function: ", MAX_LOG_FILE_LINE_LENGTH - strlen(sFileLogEntry)); in process_fatal_application_state()
68 strncat(sFileLogEntry, sFunction, MAX_LOG_FILE_LINE_LENGTH - strlen(sFileLogEntry)); in process_fatal_application_state()
70 strncat(sFileLogEntry, " Line: ", MAX_LOG_FILE_LINE_LENGTH - strlen(sFileLogEntry)); in process_fatal_application_state()
72 strncat(sFileLogEntry, sLine, MAX_LOG_FILE_LINE_LENGTH - strlen(sFileLogEntry)); in process_fatal_application_state()
74 LogToFile( 0, sFileLogEntry ); in process_fatal_application_state()