Home
last modified time | relevance | path

Searched defs:shorty (Results 1 – 25 of 44) sorted by relevance

12

/art/runtime/arch/arm/
Dquick_entrypoints_cc_arm.cc29 Thread* self, JValue* result, const char* shorty) { in quick_invoke_reg_setup()
100 Thread* self, JValue* result, const char* shorty) { in art_quick_invoke_stub()
108 const char* shorty) { in art_quick_invoke_static_stub()
/art/runtime/
Dreflection.cc46 ArgArray(const char* shorty, uint32_t shorty_len) in ArgArray()
452 const char* shorty) in InvokeWithArgArray()
482 const char** shorty, in InvokeMethodImpl()
540 const char* shorty = in InvokeWithVarArgs() local
571 const char* shorty = in InvokeWithJValues() local
603 const char* shorty = in InvokeVirtualOrInterfaceWithJValues() local
635 const char* shorty = in InvokeVirtualOrInterfaceWithVarArgs() local
718 const char* shorty; in InvokeMethod() local
764 const char* shorty; in InvokeConstructor() local
778 const char* shorty; in BoxPrimitive() local
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.h28 X86_64ManagedRuntimeCallingConvention(bool is_static, bool is_synchronized, const char* shorty) in X86_64ManagedRuntimeCallingConvention()
Dcalling_convention_x86_64.cc94 static ManagedRegister ReturnRegisterForShorty(const char* shorty, bool jni ATTRIBUTE_UNUSED) { in ReturnRegisterForShorty()
181 const char* shorty) in X86_64JniCallingConvention()
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.h30 ArmManagedRuntimeCallingConvention(bool is_static, bool is_synchronized, const char* shorty) in ArmManagedRuntimeCallingConvention()
Dcalling_convention_arm.cc260 const char* shorty) in ArmJniCallingConvention()
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.h30 Arm64ManagedRuntimeCallingConvention(bool is_static, bool is_synchronized, const char* shorty) in Arm64ManagedRuntimeCallingConvention()
Dcalling_convention_arm64.cc143 static ManagedRegister ReturnRegisterForShorty(const char* shorty) { in ReturnRegisterForShorty()
249 const char* shorty) in Arm64JniCallingConvention()
/art/compiler/jni/quick/mips64/
Dcalling_convention_mips64.h32 Mips64ManagedRuntimeCallingConvention(bool is_static, bool is_synchronized, const char* shorty) in Mips64ManagedRuntimeCallingConvention()
Dcalling_convention_mips64.cc75 static ManagedRegister ReturnRegisterForShorty(const char* shorty) { in ReturnRegisterForShorty()
161 const char* shorty) in Mips64JniCallingConvention()
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.h30 X86ManagedRuntimeCallingConvention(bool is_static, bool is_synchronized, const char* shorty) in X86ManagedRuntimeCallingConvention()
Dcalling_convention_x86.cc67 static ManagedRegister ReturnRegisterForShorty(const char* shorty, bool jni) { in ReturnRegisterForShorty()
199 const char* shorty) in X86JniCallingConvention()
/art/compiler/jni/quick/mips/
Dcalling_convention_mips.h32 MipsManagedRuntimeCallingConvention(bool is_static, bool is_synchronized, const char* shorty) in MipsManagedRuntimeCallingConvention()
Dcalling_convention_mips.cc86 static ManagedRegister ReturnRegisterForShorty(const char* shorty) { in ReturnRegisterForShorty()
198 const char* shorty) in MipsJniCallingConvention()
/art/compiler/jni/quick/
Dcalling_convention.h78 const char* shorty, in CallingConvention()
268 const char* shorty, in ManagedRuntimeCallingConvention()
378 const char* shorty, in JniCallingConvention()
Dcalling_convention.cc55 const char* shorty, in Create()
157 const char* shorty, in Create()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc368 QuickArgumentVisitor(ArtMethod** sp, bool is_static, const char* shorty, in QuickArgumentVisitor()
620 BuildQuickShadowFrameVisitor(ArtMethod** sp, bool is_static, const char* shorty, in BuildQuickShadowFrameVisitor()
753 const char* shorty = non_proxy_method->GetShorty(&shorty_len); in artQuickToInterpreterBridge() local
842 BuildQuickArgumentVisitor(ArtMethod** sp, bool is_static, const char* shorty, uint32_t shorty_len, in BuildQuickArgumentVisitor()
916 const char* shorty = non_proxy_method->GetShorty(&shorty_len); in artQuickProxyInvokeHandler() local
978 const char* shorty, in GetQuickReferenceArgumentAtVisitor()
1022 const char* shorty = non_proxy_method->GetShorty(&shorty_len); in artQuickGetProxyReferenceArgumentAt() local
1034 const char* shorty, in GetQuickReferenceArgumentsVisitor()
1066 const char* shorty = non_proxy_method->GetShorty(&shorty_len); in GetProxyReferenceArguments() local
1077 RememberForGcArgumentVisitor(ArtMethod** sp, bool is_static, const char* shorty, in RememberForGcArgumentVisitor()
[all …]
/art/compiler/jni/
Djni_cfi_test.cc63 const char* shorty = "IIFII"; in TestImplSized() local
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DCodeItem.java42 public String shorty; field in CodeItem.MethodMetaInfo
/art/compiler/optimizing/
Dbuilder.cc171 const char* shorty = dex_file_->GetMethodShorty(dex_file_->GetMethodId(method_idx)); in BuildIntrinsicGraph() local
Dinstruction_builder.cc557 const char* shorty = dex_compilation_unit_->GetShorty(); in InitializeParameters() local
908 const char* shorty = dex_file_->GetMethodShorty(method_idx); in BuildInvoke() local
1020 const char* shorty = dex_file_->GetShorty(proto_idx); in BuildInvokePolymorphic() local
1037 const char* shorty = dex_file_->GetShorty(proto_idx); in BuildInvokeCustom() local
1385 const char* shorty, in SetupInvokeArguments()
1438 const char* shorty, in HandleInvoke()
1476 const char* shorty) { in HandleStringInit()
/art/tools/dexfuzz/src/dexfuzz/program/
DIdCreator.java248 public int findOrCreateMethodId(String className, String methodName, String shorty) { in findOrCreateMethodId()
695 String shorty = convertSignatureToShorty(signature); in createProtoId() local
754 String shorty = convertSignatureToShorty(signature); in findProtoId() local
DMutatableCode.java78 public String shorty; field in MutatableCode
/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DNewInstanceChanger.java185 String shorty = mutatableCode.program.getMethodProto((int) oldMethodIdx); in changeInvokeDirect() local
/art/runtime/jni/
Djava_vm_ext.cc162 void* FindSymbol(const std::string& symbol_name, const char* shorty = nullptr) in FindSymbol()
177 void* FindSymbolWithNativeBridge(const std::string& symbol_name, const char* shorty) in FindSymbolWithNativeBridge()
283 const char* shorty = m->GetShorty(); in FindNativeMethod() local
304 const char* shorty, in FindNativeMethodInternal()

12