Home | History | Annotate | Download | only in runtime

Lines Matching defs:shorty

38   ArgArray(const char* shorty, uint32_t shorty_len)
39 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) {
45 // Analyze shorty to see if we need the large arg array.
47 char c = shorty[i];
126 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
166 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
200 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
326 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
433 const char* shorty)
439 method->Invoke(soa.Self(), args, arg_array->GetNumBytes(), result, shorty);
461 const char* shorty = method->GetInterfaceMethodIfProxy(sizeof(void*))->GetShorty(&shorty_len);
463 ArgArray arg_array(shorty, shorty_len);
465 InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
491 const char* shorty = method->GetInterfaceMethodIfProxy(sizeof(void*))->GetShorty(&shorty_len);
493 ArgArray arg_array(shorty, shorty_len);
495 InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
522 const char* shorty = method->GetInterfaceMethodIfProxy(sizeof(void*))->GetShorty(&shorty_len);
524 ArgArray arg_array(shorty, shorty_len);
526 InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
553 const char* shorty = method->GetInterfaceMethodIfProxy(sizeof(void*))->GetShorty(&shorty_len);
555 ArgArray arg_array(shorty, shorty_len);
557 InvokeWithArgArray(soa, method, &arg_array, &result, shorty);
638 const char* shorty = np_method->GetShorty(&shorty_len);
639 ArgArray arg_array(shorty, shorty_len);
645 InvokeWithArgArray(soa, m, &arg_array, &result, shorty);
669 return soa.AddLocalReference<jobject>(BoxPrimitive(Primitive::GetType(shorty[0]), result));
682 const char* shorty;
686 shorty = "LZ";
690 shorty = "LB";
694 shorty = "LC";
698 shorty = "LD";
702 shorty = "LF";
706 shorty = "LI";
710 shorty = "LJ";
714 shorty = "LS";
718 shorty = nullptr;
724 ArgArray arg_array(shorty, 2);
733 &result, shorty);