Searched defs:arglist (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Debug.cpp93 void DumpClipRectangle(const char * file, int line, int argc, const char * fmt, va_list arglist) { argument
94 const char *msg = va_arg(arglist, const char *);
95 HDC hdc = va_arg(arglist, HDC);
108 void DumpUpdateRectangle(const char * file, int line, int argc, const char * fmt, va_list arglist) { argument
109 const char *msg = va_arg(arglist, const char *);
110 HWND hwnd = va_arg(arglist, HWND);
/openjdk7/jdk/src/share/native/sun/awt/debug/
H A Ddebug_trace.c215 void DTrace_VPrintImpl(const char * fmt, va_list arglist) { argument
219 vsprintf(DTraceBuffer, fmt, arglist);
231 va_list arglist; local
233 va_start(arglist, fmt);
234 DTrace_VPrintImpl(fmt, arglist);
235 va_end(arglist);
241 void DTrace_VPrint( const char * file, int line, int argc, const char * fmt, va_list arglist ) {
243 DTrace_VPrintImpl(fmt, arglist);
249 void DTrace_VPrintln( const char * file, int line, int argc, const char * fmt, va_list arglist ) {
250 DTrace_VPrintImpl(fmt, arglist);
261 va_list arglist; local
[all...]

Completed in 770 milliseconds