Home
last modified time | relevance | path

Searched refs:method_ (Results 1 – 15 of 15) sorted by relevance

/art/runtime/
Dthrow_location.cc27 if (method_ != nullptr) { in Dump()
28 return StringPrintf("%s:%d", PrettyMethod(method_).c_str(), in Dump()
29 method_->GetLineNumFromDexPC(dex_pc_)); in Dump()
40 if (method_ != nullptr) { in VisitRoots()
41 visitor(reinterpret_cast<mirror::Object**>(&method_), arg, RootInfo(kRootVMInternal)); in VisitRoots()
42 DCHECK(method_ != nullptr); in VisitRoots()
Dthrow_location.h44 method_(throw_method), in ThrowLocation()
61 return method_; in GetMethod()
70 method_ = NULL; in Clear()
82 mirror::ArtMethod* method_; variable
Dmethod_helper.h30 : method_(m), shorty_(nullptr), shorty_len_(0) { in MethodHelper()
41 return method_->GetInterfaceMethodIfProxy(); in GetMethod()
49 result = method_->GetShorty(&shorty_len_); in GetShorty()
83 return (method_->IsStatic() ? 0 : 1) + GetShortyLength() - 1; in NumArgs()
132 method_.Assign(method); in SetMethod()
135 Handle<mirror::ArtMethod> method_; variable
Dmethod_helper-inl.h30 const DexFile* dex_file = method_->GetDexFile(); in HasSameNameAndSignature()
32 if (method_->GetDexCache() == other->method_->GetDexCache()) { in HasSameNameAndSignature()
37 const DexFile* other_dex_file = other->method_->GetDexFile(); in HasSameNameAndSignature()
Dmethod_helper.cc29 const DexFile* dex_file = method_->GetDexFile(); in GetNameAsString()
30 mirror::ArtMethod* method = method_->GetInterfaceMethodIfProxy(); in GetNameAsString()
43 const DexFile::TypeList* types = method_->GetParameterTypeList(); in HasSameSignatureWithDifferentClassLoaders()
44 const DexFile::TypeList* other_types = other->method_->GetParameterTypeList(); in HasSameSignatureWithDifferentClassLoaders()
Dprofiler.h53 parent_(parent), method_(method), dex_pc_(dex_pc), in StackTrieNode()
56 StackTrieNode() : parent_(nullptr), method_(nullptr, 0), in StackTrieNode()
60 MethodReference GetMethod() { return method_; } in GetMethod()
89 MethodReference method_; variable
Dstack.h302 DCHECK(method_ != nullptr); in GetMethod()
303 return method_; in GetMethod()
307 DCHECK(method_ != nullptr); in GetMethodAddress()
308 return &method_; in GetMethodAddress()
320 method_ = method; in SetMethod()
343 return OFFSETOF_MEMBER(ShadowFrame, method_); in MethodOffset()
361 : number_of_vregs_(num_vregs), link_(link), method_(method), dex_pc_(dex_pc) { in ShadowFrame()
394 mirror::ArtMethod* method_; variable
Dinstrumentation.cc265 CHECK_EQ(m, frame.method_) << "Expected " << PrettyMethod(m) in InstrumentationInstallStack()
266 << ", Found " << PrettyMethod(frame.method_); in InstrumentationInstallStack()
325 instrumentation->MethodEnterEvent(thread, (*ssi).this_object_, (*ssi).method_, 0); in InstrumentationInstallStack()
331 instrumentation->MethodEnterEvent(thread, (*isi).this_object_, (*isi).method_, dex_pc); in InstrumentationInstallStack()
379 CHECK(m == instrumentation_frame.method_) << PrettyMethod(m); in InstrumentationRestoreStack()
1068 mirror::ArtMethod* method = instrumentation_frame.method_; in PopInstrumentationStackFrame()
1084 MethodExitEvent(self, this_object, instrumentation_frame.method_, dex_pc, return_value); in PopInstrumentationStackFrame()
1120 mirror::ArtMethod* method = instrumentation_frame.method_; in PopMethodForUnwind()
1150 os << "Frame " << frame_id_ << " " << PrettyMethod(method_) << ":" in Dump()
Ddex_file.h1158 return last_idx_ + method_.method_idx_delta_; in GetMemberIndex()
1166 return method_.access_flags_; in GetRawMemberAccessFlags()
1200 return dex_file_.GetCodeItem(method_.code_off_); in GetMethodCodeItem()
1203 return method_.code_off_; in GetMethodCodeItemOffset()
1260 ClassDataMethod method_; variable
Dinstrumentation.h472 : this_object_(this_object), method_(method), return_pc_(return_pc), frame_id_(frame_id), in InstrumentationStackFrame()
479 mirror::ArtMethod* method_; member
Dthread.cc1988 : StackVisitor(thread, context), this_object_(nullptr), method_(nullptr), dex_pc_(0), in CurrentMethodVisitor()
1999 method_ = m; in VisitFrame()
2004 mirror::ArtMethod* method_; member
2015 return visitor.method_; in GetCurrentMethod()
2023 return ThrowLocation(visitor.this_object_, visitor.method_, visitor.dex_pc_); in GetCurrentLocationForThrow()
2242 DCHECK(frame.method_ != nullptr); in VisitRoots()
2243 visitor(reinterpret_cast<mirror::Object**>(&frame.method_), arg, in VisitRoots()
Ddex_file.cc1059 method_.method_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_); in ReadClassDataMethod()
1060 method_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_); in ReadClassDataMethod()
1061 method_.code_off_ = DecodeUnsignedLeb128(&ptr_pos_); in ReadClassDataMethod()
1062 if (last_idx_ != 0 && method_.method_idx_delta_ == 0) { in ReadClassDataMethod()
Dstack.cc567 } else if (instrumentation_frame.method_ != GetMethod()) { in WalkStack()
568 LOG(FATAL) << "Expected: " << PrettyMethod(instrumentation_frame.method_) in WalkStack()
Ddebugger.cc76 AllocRecordStackTraceElement() : method_(nullptr), dex_pc_(0) { in AllocRecordStackTraceElement()
87 return soa.DecodeMethod(method_); in Method()
92 method_ = soa.EncodeMethod(m); in SetMethod()
104 jmethodID method_; member in art::AllocRecordStackTraceElement
189 : method_(nullptr), dex_pc_(dex_pc), deoptimization_kind_(deoptimization_kind) { in Breakpoint()
194 method_ = soa.EncodeMethod(method); in Breakpoint()
198 : method_(nullptr), dex_pc_(other.dex_pc_), in SHARED_LOCKS_REQUIRED()
201 method_ = soa.EncodeMethod(other.Method()); in SHARED_LOCKS_REQUIRED()
206 return soa.DecodeMethod(method_); in Method()
219 jmethodID method_; member in art::Breakpoint
[all …]
Ddebugger.h150 DeoptimizationRequest() : kind_(kNothing), instrumentation_event_(0), method_(nullptr) {} in DeoptimizationRequest()
191 jmethodID method_; variable