Searched defs:method_type (Results 1 - 2 of 2) sorted by relevance

/art/dexdump/
H A Ddexdump.cc1665 std::string method_type = pDexFile->GetProtoSignature(method_type_id).ToString(); local
1672 fprintf(gOutFile, " link_argument[2] : %s (MethodType)\n", method_type.c_str());
1683 method_type.c_str());
/art/runtime/verifier/
H A Dmethod_verifier.cc3118 // Verify registers based on method_type in the call site.
3825 MethodType method_type, bool is_interface) {
3826 if (method_type == METHOD_DIRECT || method_type == METHOD_STATIC) {
3828 } else if (method_type == METHOD_INTERFACE) {
3830 } else if (method_type == METHOD_SUPER && is_interface) {
3833 DCHECK(method_type == METHOD_VIRTUAL || method_type == METHOD_SUPER
3834 || method_type == METHOD_POLYMORPHIC);
3840 uint32_t dex_method_idx, MethodType method_type) {
3824 GetMethodResolutionKind( MethodType method_type, bool is_interface) argument
3839 ResolveMethodAndCheckAccess( uint32_t dex_method_idx, MethodType method_type) argument
3980 VerifyInvocationArgsFromIterator( T* it, const Instruction* inst, MethodType method_type, bool is_range, ArtMethod* res_method) argument
4125 VerifyInvocationArgsUnresolvedMethod(const Instruction* inst, MethodType method_type, bool is_range) argument
4281 VerifyInvocationArgs( const Instruction* inst, MethodType method_type, bool is_range) argument
[all...]

Completed in 108 milliseconds