Lines Matching refs:console
70 typedef void (*OSFPutStringHookType)(int type, int console, const char *str);
77 extern void (*OS_FPutString) (int console, const char *str);
98 void OS_FPutChar(int console, char c);
99 void OS_VFPrintf(int console, const char *fmt, va_list vlist);
100 void OS_TVFPrintf(int console, const char *fmt, va_list vlist);
101 void OS_TVFPrintfEx(int console, const char *fmt, va_list vlist);
102 void OS_FPrintf(int console, const char *fmt, ...);
103 void OS_TFPrintf(int console, const char *fmt, ...);
104 void OS_TFPrintfEx(int console, const char *fmt, ...);
106 void OSi_FWarning(int console, const char *file, int line, const char *fmt, ...);
107 void OSi_TFWarning(int console, const char *file, int line, const char *fmt, ...);
108 void OSi_FPanic(int console, const char *file, int line, const char *fmt, ...);
109 void OSi_TFPanic(int console, const char *file, int line, const char *fmt, ...);
117 #define OSi_FWarning( console, file, line, ... ) ((void)0) argument
118 #define OSi_FPanic( console, file, line, ... ) OS_Terminate() argument
119 #define OSi_TFWarning( console, file, line, ... ) ((void)0) argument
120 #define OSi_TFPanic( console, file, line, ... ) OS_Terminate() argument
133 #define OS_FWarning( console, ... ) OSi_FWarning( (console), __FILE__, __LINE__, _… argument
134 #define OS_FPanic( console, ... ) OSi_FPanic( (console), __FILE__, __LINE__, _… argument
135 #define OS_TFWarning( console, ... ) OSi_TFWarning( (console), __FILE__, __LINE__, _… argument
136 #define OS_TFPanic( console, ... ) OSi_TFPanic( (console), __FILE__, __LINE__, _… argument
148 #define OS_FPutChar( console, ... ) ((void)0) argument
149 #define OS_VFPrintf( console, fmt, ... ) ((void)0) argument
150 #define OS_TVFPrintf( console, fmt, ... ) ((void)0) argument
151 #define OS_TVFPrintfEx( console, fmt, ... ) ((void)0) argument
152 #define OS_FPrintf( console, ... ) ((void)0) argument
153 #define OS_TFPrintf( console, ... ) ((void)0) argument
154 #define OS_TFPrintfEx( console, ... ) ((void)0) argument
157 #define OSi_FWarning( console, file, line, ... ) ((void)0) argument
158 #define OSi_FPanic( console, file, line, ... ) OS_Terminate() argument
159 #define OSi_TFWarning( console, file, line, ... ) ((void)0) argument
160 #define OSi_TFPanic( console, file, line, ... ) OS_Terminate() argument
172 #define OS_FWarning( console, ... ) ((void)0) argument
173 #define OS_FPanic( console, ... ) OS_Terminate() argument
174 #define OS_TFWarning( console, ... ) ((void)0) argument
175 #define OS_TFPanic( console, ... ) OS_Terminate() argument