Searched refs:fmt (Results 1 – 2 of 2) sorted by relevance
/TraceRecorderSource-2.7.6/include/ |
D | trcRecorder.h | 45 #define vTraceConsoleChannelPrintF(fmt, ...) (void)(fmt) argument 205 void vTracePrintF(traceString chn, const char* fmt, ...); 207 #define vTracePrintF(chn, fmt, ...) (void)(chn), (void)(fmt) /* Comma operator is used to avoid "un… argument 257 void vTraceConsoleChannelPrintF(const char* fmt, ...); 976 #define vTracePrintF(chn, fmt, ...) (void)(chn), (void)(fmt) /* Comma operator is used to avoid "un… argument 1882 #define vTracePrintF(chn, fmt, ...) (void)(chn), (void)(fmt) /* Comma operator is used to avoid "un… argument 1909 #define vTraceConsoleChannelPrintF(fmt, ...) (void)(fmt) argument
|
/TraceRecorderSource-2.7.6/ |
D | trcStreamingRecorder.c | 513 void vTraceConsoleChannelPrintF(const char* fmt, ...) in vTraceConsoleChannelPrintF() argument 522 va_start(vl, fmt); in vTraceConsoleChannelPrintF() 523 vsnprintf(tempBuf, 60, fmt, vl); in vTraceConsoleChannelPrintF() 574 void vTracePrintF(traceString chn, const char* fmt, ...) in vTracePrintF() argument 578 va_start(vl, fmt); in vTracePrintF() 579 vTraceVPrintF(chn, fmt, vl); in vTracePrintF() 590 void vTraceVPrintF(traceString chn, const char* fmt, va_list vl) in vTraceVPrintF() argument 597 for (i = 0; (fmt[i] != 0) && (i < 52); i++) in vTraceVPrintF() 599 if (fmt[i] == '%') in vTraceVPrintF() 601 if (fmt[i + 1] == 0) in vTraceVPrintF() [all …]
|