Home
last modified time | relevance | path

Searched refs:fmt (Results 1 – 4 of 4) sorted by relevance

/RevoEX-2.1/build/libraries/mpds/include/
Dmpdsprivate.h74 …vel, const char* levelString, const char* file, const char* func, int line, const char* fmt, ... );
75 … char* levelString, const char* file, const char* func, int line, const char* fmt, va_list vlist );
/RevoEX-2.1/build/demos/share/include/rexdemo/
Dgraphic.h73 void REXDEMOPrintf( int x, int y, int z, const char *fmt, ... );
/RevoEX-2.1/build/libraries/mpds/src/
Dmpdssystem.c982 const char* file, const char* func, int line, const char* fmt, va_list vlist ) in MPDSiVLogCore() argument
996 if( fmt != NULL ) in MPDSiVLogCore()
998 OSVReport( fmt, vlist ); in MPDSiVLogCore()
1017 const char* file, const char* func, int line, const char* fmt, ... ) in MPDSiLogCore() argument
1021 va_start( vlist, fmt ); in MPDSiLogCore()
1022 MPDSiVLogCore( level, levelString, file, func, line, fmt, vlist ); in MPDSiLogCore()
/RevoEX-2.1/build/demos/share/src/
Dgraphic.c458 REXDEMOPrintf( int x, int y, int z, const char *fmt, ... ) in REXDEMOPrintf() argument
463 va_start(va, fmt); in REXDEMOPrintf()
464 (void)vsprintf(tmpbuf, fmt, va); in REXDEMOPrintf()