Home
last modified time | relevance | path

Searched refs:MethodId (Results 1 – 25 of 32) sorted by relevance

12

/art/runtime/
Dmethod_helper.cc32 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx); in GetNameAsString()
72 const DexFile::MethodId& mid = dexfile->GetMethodId(method->GetDexMethodIndex()); in FindDexMethodIndexInOtherDexFile()
92 const DexFile::MethodId* other_mid = other_dexfile.FindMethodId( in FindDexMethodIndexInOtherDexFile()
111 const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx); in FindDexMethodIndexInOtherDexFile()
112 const DexFile::MethodId& name_and_sig_mid = other_dexfile.GetMethodId(name_and_signature_idx); in FindDexMethodIndexInOtherDexFile()
125 const DexFile::MethodId* other_mid = other_dexfile.FindMethodId( in FindDexMethodIndexInOtherDexFile()
Dmethod_helper-inl.h31 const DexFile::MethodId& mid = dex_file->GetMethodId(GetMethod()->GetDexMethodIndex()); in HasSameNameAndSignature()
33 const DexFile::MethodId& other_mid = in HasSameNameAndSignature()
38 const DexFile::MethodId& other_mid = in HasSameNameAndSignature()
59 const DexFile::MethodId& method_id = dex_file->GetMethodId(method->GetDexMethodIndex()); in GetReturnType()
Ddex_file.h173 struct MethodId { struct
179 DISALLOW_COPY_AND_ASSIGN(MethodId); argument
588 const MethodId& GetMethodId(uint32_t idx) const { in GetMethodId()
593 uint32_t GetIndexForMethodId(const MethodId& method_id) const { in GetIndexForMethodId()
600 const MethodId* FindMethodId(const DexFile::TypeId& declaring_klass,
605 const char* GetMethodDeclaringClassDescriptor(const MethodId& method_id) const { in GetMethodDeclaringClassDescriptor()
611 const ProtoId& GetMethodPrototype(const MethodId& method_id) const { in GetMethodPrototype()
616 const Signature GetMethodSignature(const MethodId& method_id) const;
619 const char* GetMethodName(const MethodId& method_id) const { in GetMethodName()
624 const char* GetMethodShorty(const MethodId& method_id) const { in GetMethodShorty()
[all …]
Ddex_file_test.cc244 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex()); in TEST_F()
255 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex()); in TEST_F()
266 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex()); in TEST_F()
323 const DexFile::MethodId& to_find = java_lang_dex_file_->GetMethodId(i); in TEST_F()
327 const DexFile::MethodId* found = java_lang_dex_file_->FindMethodId(klass, name, signature); in TEST_F()
Ddebugger.h364 static std::string GetMethodName(JDWP::MethodId method_id)
375 static void OutputLineTable(JDWP::RefTypeId ref_type_id, JDWP::MethodId method_id,
378 static void OutputVariableTable(JDWP::RefTypeId ref_type_id, JDWP::MethodId id, bool with_generic,
381 static void OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
387 static JDWP::JdwpError GetBytecodes(JDWP::RefTypeId class_id, JDWP::MethodId method_id,
564 JDWP::RefTypeId class_id, JDWP::MethodId method_id,
Ddex_file_verifier.cc92 const DexFile::MethodId* DexFileVerifier::CheckLoadMethodId(uint32_t idx, const char* err_string) { in CheckLoadMethodId()
115 const DexFile::MethodId* var = CheckLoadMethodId(idx, error_string); \
1154 if (!CheckListSize(ptr_, 1, sizeof(DexFile::MethodId), "method_ids")) { in CheckIntraSectionIterate()
1157 ptr_ += sizeof(DexFile::MethodId); in CheckIntraSectionIterate()
1636 const DexFile::MethodId* item = reinterpret_cast<const DexFile::MethodId*>(ptr_); in CheckInterMethodIdItem()
1661 const DexFile::MethodId* prev_item = reinterpret_cast<const DexFile::MethodId*>(previous_item_); in CheckInterMethodIdItem()
1678 ptr_ += sizeof(DexFile::MethodId); in CheckInterMethodIdItem()
Ddex_file_verifier.h109 const DexFile::MethodId* CheckLoadMethodId(uint32_t idx, const char* error_fmt);
Ddex_file-inl.h41 inline const Signature DexFile::GetMethodSignature(const MethodId& method_id) const { in GetMethodSignature()
Ddex_file_verifier_test.cc217 TEST_F(DexFileVerifierTest, MethodId) { in TEST_F() argument
Ddex_file.cc357 method_ids_(reinterpret_cast<const MethodId*>(base + header_->method_ids_off_)), in DexFile()
517 const DexFile::MethodId* DexFile::FindMethodId(const DexFile::TypeId& declaring_klass, in FindMethodId()
528 const DexFile::MethodId& method = GetMethodId(mid); in FindMethodId()
Ddebugger.cc1437 static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m) in ToMethodId()
1440 return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m)); in ToMethodId()
1449 static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid) in FromMethodId()
1507 std::string Dbg::GetMethodName(JDWP::MethodId method_id) in GetMethodName()
1653 void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) in OutputLineTable()
1699 void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic, in OutputVariableTable()
1758 void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, in OutputMethodReturnValue()
1772 JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id, in GetBytecodes()
3582 JDWP::RefTypeId class_id, JDWP::MethodId method_id, in InvokeMethod()
/art/runtime/jdwp/
Djdwp.h55 typedef uint32_t MethodId; /* any kind of method, including constructors */ typedef
63 static inline void SetMethodId(uint8_t* buf, MethodId val) { return Set4BE(buf, val); } in SetMethodId()
68 static inline void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { expandBufAdd4BE(pReply, i… in expandBufAddMethodId()
84 MethodId method_id;
387 std::string DescribeMethod(const MethodId& method_id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
406 MethodId ReadMethodId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Djdwp_request.cc95 MethodId Request::ReadMethodId() { in ReadMethodId()
96 MethodId id = Read4BE(); in ReadMethodId()
Djdwp_handler.cc44 std::string DescribeMethod(const MethodId& method_id) { in DescribeMethod()
96 RefTypeId class_id, MethodId method_id, bool is_constructor) in FinishInvoke()
265 expandBufAdd4BE(pReply, sizeof(MethodId)); in VM_IDSizes()
692 MethodId method_id = request.ReadMethodId(); in CT_InvokeMethod()
708 MethodId method_id = request.ReadMethodId(); in CT_NewInstance()
748 MethodId method_id = request.ReadMethodId(); in M_LineTable()
759 MethodId method_id = request.ReadMethodId(); in M_VariableTable()
782 MethodId method_id = request.ReadMethodId(); in M_Bytecodes()
878 MethodId method_id = request.ReadMethodId(); in OR_InvokeMethod()
/art/compiler/driver/
Ddex_compilation_unit.h72 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); in GetShorty()
77 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); in GetShorty()
Dcompiler_driver-inl.h48 const DexFile::MethodId& referrer_method_id = in ResolveCompilingMethodsClass()
/art/compiler/sea_ir/types/
Dtype_inference.cc42 const art::DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); in FunctionTypeInfo()
52 const art::DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); in FunctionTypeInfo()
58 const art::DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); in GetReturnValueType()
/art/compiler/jni/portable/
Djni_compiler.cc67 DexFile::MethodId const& method_id = in Compile()
/art/compiler/
Delf_patcher.cc154 const DexFile::MethodId& id = in SetPatchLocation()
/art/compiler/dex/quick/
Dcodegen_util.cc343 const DexFile::MethodId& method_id = in CodegenDump()
475 const DexFile::MethodId& target_method_id = target_dex_file->GetMethodId(target_method_idx); in InstallLiteralPools()
493 const DexFile::MethodId& target_method_id = target_dex_file->GetMethodId(target_method_idx); in InstallLiteralPools()
/art/runtime/quick/
Dinline_method_analyser.cc139 const DexFile::MethodId& method_id = ref.dex_file->GetMethodId(ref.dex_method_index); in IsSyntheticAccessor()
/art/runtime/verifier/
Dmethod_verifier.cc2245 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx); in CodeFlowVerifyInstruction()
2268 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx); in CodeFlowVerifyInstruction()
2351 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx); in CodeFlowVerifyInstruction()
2409 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx); in CodeFlowVerifyInstruction()
3043 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx); in ResolveMethodAndCheckAccess()
4108 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); in GetMethodReturnType()
4120 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_); in GetDeclaringClass()
/art/runtime/mirror/
Dart_method-inl.h513 const DexFile::MethodId& method_id = dex_file->GetMethodId(method->GetDexMethodIndex()); in GetReturnTypeDescriptor()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc309 const DexFile::MethodId& method_id = dex_file->GetMethodId(method_idx); in PreloadDexCachesResolveMethod()
/art/compiler/optimizing/
Dbuilder.cc328 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx); in BuildInvoke()

12