Lines Matching full:shorty
39 explicit ArgArray(const char* shorty, uint32_t shorty_len)
40 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) {
46 // Analyze shorty to see if we need the large arg array.
48 char c = shorty[i];
133 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
173 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
207 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
331 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
411 const char* shorty)
417 method->Invoke(soa.Self(), args, arg_array->GetNumBytes(), result, shorty);
434 const char* shorty = method->GetShorty(&shorty_len);
436 ArgArray arg_array(shorty, shorty_len);
438 InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
454 const char* shorty = method->GetShorty(&shorty_len);
456 ArgArray arg_array(shorty, shorty_len);
458 InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
474 const char* shorty = method->GetShorty(&shorty_len);
476 ArgArray arg_array(shorty, shorty_len);
478 InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
495 const char* shorty = method->GetShorty(&shorty_len);
497 ArgArray arg_array(shorty, shorty_len);
499 InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
577 const char* shorty = m->GetShorty(&shorty_len);
578 ArgArray arg_array(shorty, shorty_len);
586 InvokeWithArgArray(soa, m, &arg_array, &result, shorty);
630 const char* shorty;
634 shorty = "LZ";
638 shorty = "LB";
642 shorty = "LC";
646 shorty = "LD";
650 shorty = "LF";
654 shorty = "LI";
658 shorty = "LJ";
662 shorty = "LS";
666 shorty = nullptr;
672 ArgArray arg_array(shorty, 2);
681 &result, shorty);