/art/runtime/ |
D | method_helper.h | 46 const char* GetShorty() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in GetShorty() function 49 result = method_->GetShorty(&shorty_len_); in GetShorty() 57 GetShorty(); in GetShortyLength() 65 const char* shorty = GetShorty(); in GetNumberOfReferenceArgsWithoutReceiver() 94 return Primitive::GetType(GetShorty()[param]); in GetParamPrimitiveType()
|
D | native_bridge_art_interface.cc | 33 return mh.GetShorty(); in GetMethodShorty() 73 methods[count].signature = m->GetShorty(); in GetNativeMethods() 86 methods[count].signature = m->GetShorty(); in GetNativeMethods()
|
D | reflection.cc | 434 const char* shorty = method->GetShorty(&shorty_len); in InvokeWithVarArgs() 454 const char* shorty = method->GetShorty(&shorty_len); in InvokeWithJValues() 474 const char* shorty = method->GetShorty(&shorty_len); in InvokeVirtualOrInterfaceWithJValues() 495 const char* shorty = method->GetShorty(&shorty_len); in InvokeVirtualOrInterfaceWithVarArgs() 513 ArgArray arg_array(mh.GetShorty(), mh.GetShortyLength()); in InvokeWithShadowFrame() 516 mh.GetShorty()); in InvokeWithShadowFrame() 577 const char* shorty = m->GetShorty(&shorty_len); in InvokeMethod()
|
D | dex_file.h | 728 const char* GetShorty(uint32_t proto_idx) const { in GetShorty() function
|
D | instrumentation.cc | 1070 char return_shorty = method->GetShorty(&length)[0]; in PopInstrumentationStackFrame()
|
D | debugger.cc | 1735 std::string shorty(m->GetShorty()); in OutputVariableTable() 1761 JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty()); in OutputMethodReturnValue() 3663 const char* shorty = m->GetShorty(&shorty_len); in InvokeMethod() 3817 pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty()); in ExecuteMethod()
|
D | class_linker.cc | 2906 if (strcmp("V", dex_file.GetShorty(method_id.proto_idx_)) == 0) { in LoadMethod() 4050 CHECK_STREQ(method->GetShorty(), prototype->GetShorty()); in CheckProxyMethod()
|
/art/compiler/driver/ |
D | dex_compilation_unit.h | 71 const char* GetShorty() const { in GetShorty() function 76 const char* GetShorty(uint32_t* shorty_len) const { in GetShorty() function
|
/art/compiler/jni/quick/x86/ |
D | calling_convention_x86.cc | 57 return ReturnRegisterForShorty(GetShorty(), false); in ReturnRegister() 61 return ReturnRegisterForShorty(GetShorty(), true); in ReturnRegister()
|
/art/compiler/jni/quick/arm/ |
D | calling_convention_arm.cc | 49 return ReturnRegisterForShorty(GetShorty()); in ReturnRegister() 53 return ReturnRegisterForShorty(GetShorty()); in ReturnRegister()
|
/art/compiler/jni/quick/mips/ |
D | calling_convention_mips.cc | 49 return ReturnRegisterForShorty(GetShorty()); in ReturnRegister() 53 return ReturnRegisterForShorty(GetShorty()); in ReturnRegister()
|
/art/runtime/entrypoints/interpreter/ |
D | interpreter_entrypoints.cc | 56 result, mh.GetShorty()); in artInterpreterToCompiledCodeBridge()
|
/art/compiler/jni/quick/x86_64/ |
D | calling_convention_x86_64.cc | 53 return ReturnRegisterForShorty(GetShorty(), false); in ReturnRegister() 57 return ReturnRegisterForShorty(GetShorty(), true); in ReturnRegister()
|
/art/compiler/jni/quick/arm64/ |
D | calling_convention_arm64.cc | 64 return ReturnRegisterForShorty(GetShorty()); in ReturnRegister() 68 return ReturnRegisterForShorty(GetShorty()); in ReturnRegister()
|
/art/runtime/mirror/ |
D | art_method.h | 507 const char* GetShorty() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in GetShorty() function 509 return GetShorty(&unused_length); in GetShorty() 512 const char* GetShorty(uint32_t* out_length) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
|
D | art_method.cc | 273 CHECK_STREQ(GetShorty(), shorty); in Invoke()
|
D | art_method-inl.h | 426 inline const char* ArtMethod::GetShorty(uint32_t* out_length) { in GetShorty() function
|
/art/compiler/jni/quick/ |
D | calling_convention.h | 182 const char* GetShorty() const { in GetShorty() function
|
/art/compiler/jni/portable/ |
D | jni_compiler.cc | 284 const char* shorty = dex_compilation_unit_->GetShorty(&shorty_size); in GetFunctionType()
|
/art/runtime/entrypoints/quick/ |
D | quick_trampoline_entrypoints.cc | 508 const char* shorty = method->GetShorty(&shorty_len); in artQuickToInterpreterBridge() 637 const char* shorty = proxy_method->GetShorty(&shorty_len); in artQuickProxyInvokeHandler() 1644 const char* shorty = called->GetShorty(&shorty_len); in artQuickGenericJniTrampoline() 1726 char return_shorty_char = called->GetShorty()[0]; in artQuickGenericJniEndTrampoline()
|
/art/runtime/entrypoints/portable/ |
D | portable_trampoline_entrypoints.cc | 312 JValue result = InvokeProxyInvocationHandler(soa, proxy_mh.GetShorty(), in artPortableProxyInvokeHandler()
|
/art/runtime/interpreter/ |
D | interpreter.cc | 420 num_regs = num_ins = ArtMethod::NumArgRegisters(method->GetShorty()); in EnterInterpreterFromInvoke() 439 const char* shorty = method->GetShorty(&shorty_len); in EnterInterpreterFromInvoke()
|
D | interpreter_common.cc | 558 const char* shorty = method->GetShorty(&shorty_len); in DoCall()
|
/art/compiler/optimizing/ |
D | builder.cc | 89 const char* shorty = dex_compilation_unit_->GetShorty(); in InitializeParameters()
|
/art/compiler/dex/ |
D | mir_graph.cc | 1406 return cu_->dex_file->GetShorty(method_id.proto_idx_); in GetShortyFromTargetIdx()
|