Lines Matching refs:args
47 mirror::Class* referrer, const char* fmt, va_list* args = NULL) in ThrowException() argument
50 if (args != NULL) { in ThrowException()
52 StringAppendV(&vmsg, fmt, *args); in ThrowException()
69 mirror::Class* referrer, const char* fmt, va_list* args = NULL) in ThrowWrappedException() argument
72 if (args != NULL) { in ThrowWrappedException()
74 StringAppendV(&vmsg, fmt, *args); in ThrowWrappedException()
143 va_list args; in ThrowClassFormatError() local
144 va_start(args, fmt); in ThrowClassFormatError()
145 ThrowException(NULL, "Ljava/lang/ClassFormatError;", referrer, fmt, &args); in ThrowClassFormatError()
146 va_end(args);} in ThrowClassFormatError()
192 va_list args; in ThrowIllegalAccessError() local
193 va_start(args, fmt); in ThrowIllegalAccessError()
194 ThrowException(NULL, "Ljava/lang/IllegalAccessError;", referrer, fmt, &args); in ThrowIllegalAccessError()
195 va_end(args); in ThrowIllegalAccessError()
251 va_list args; in ThrowIncompatibleClassChangeError() local
252 va_start(args, fmt); in ThrowIncompatibleClassChangeError()
253 ThrowException(NULL, "Ljava/lang/IncompatibleClassChangeError;", referrer, fmt, &args); in ThrowIncompatibleClassChangeError()
254 va_end(args); in ThrowIncompatibleClassChangeError()
260 va_list args; in ThrowIOException() local
261 va_start(args, fmt); in ThrowIOException()
262 ThrowException(NULL, "Ljava/io/IOException;", NULL, fmt, &args); in ThrowIOException()
263 va_end(args); in ThrowIOException()
267 va_list args; in ThrowWrappedIOException() local
268 va_start(args, fmt); in ThrowWrappedIOException()
269 ThrowWrappedException(NULL, "Ljava/io/IOException;", NULL, fmt, &args); in ThrowWrappedIOException()
270 va_end(args); in ThrowWrappedIOException()
276 va_list args; in ThrowLinkageError() local
277 va_start(args, fmt); in ThrowLinkageError()
278 ThrowException(NULL, "Ljava/lang/LinkageError;", referrer, fmt, &args); in ThrowLinkageError()
279 va_end(args); in ThrowLinkageError()
513 va_list args; in ThrowRuntimeException() local
514 va_start(args, fmt); in ThrowRuntimeException()
515 ThrowException(NULL, "Ljava/lang/RuntimeException;", NULL, fmt, &args); in ThrowRuntimeException()
516 va_end(args); in ThrowRuntimeException()
522 va_list args; in ThrowVerifyError() local
523 va_start(args, fmt); in ThrowVerifyError()
524 ThrowException(NULL, "Ljava/lang/VerifyError;", referrer, fmt, &args); in ThrowVerifyError()
525 va_end(args); in ThrowVerifyError()