Home
last modified time | relevance | path

Searched refs:shorty_length (Results 1 – 5 of 5) sorted by relevance

/art/runtime/
Dmethod_handles.cc352 uint32_t shorty_length = 0; in GetInsForProxyOrNativeMethod() local
353 const char* shorty = method->GetShorty(&shorty_length); in GetInsForProxyOrNativeMethod()
357 size_t num_ins = method->IsStatic() ? shorty_length - 1 : shorty_length; in GetInsForProxyOrNativeMethod()
Dart_method-inl.h514 uint32_t shorty_length;
515 GetShorty(&shorty_length);
516 return shorty_length - return_type_count;
Dthread.cc2761 uint32_t shorty_length; in VisitFrame() local
2762 const char* shorty = m->GetShorty(&shorty_length); in VisitFrame()
2763 for (size_t i = 1; i != shorty_length; ++i) { in VisitFrame()
Dclass_linker.cc10544 uint32_t shorty_length; in ResolveMethodHandleForMethod() local
10545 target_method->GetShorty(&shorty_length); in ResolveMethodHandleForMethod()
10546 int32_t num_params = static_cast<int32_t>(shorty_length + receiver_count - 1); in ResolveMethodHandleForMethod()
/art/runtime/jni/
Djni_internal.cc2934 uint32_t shorty_length; in GenerateNativeBridgeTrampoline() local
2935 const char* shorty = method->GetShorty(&shorty_length); in GenerateNativeBridgeTrampoline()
2940 fn_ptr, shorty, shorty_length, jni_call_type); in GenerateNativeBridgeTrampoline()