Home | History | Annotate | Download | only in runtime

Lines Matching defs:args

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