Searched defs:method_ (Results 1 - 9 of 9) sorted by relevance

/art/runtime/
H A Dmethod_helper.h30 : method_(m), shorty_(nullptr), shorty_len_(0) {
41 return method_->GetInterfaceMethodIfProxy();
49 result = method_->GetShorty(&shorty_len_);
83 return (method_->IsStatic() ? 0 : 1) + GetShortyLength() - 1;
129 // Set the method_ field, for proxy methods looking up the interface method via the resolved
132 method_.Assign(method);
135 Handle<mirror::ArtMethod> method_; member in class:art::MethodHelper
H A Dthrow_location.h44 method_(throw_method),
61 return method_;
70 method_ = NULL;
82 mirror::ArtMethod* method_; variable
H A Dinstrumentation.h472 : this_object_(this_object), method_(method), return_pc_(return_pc), frame_id_(frame_id),
479 mirror::ArtMethod* method_; member in struct:art::instrumentation::InstrumentationStackFrame
H A Ddebugger.h150 DeoptimizationRequest() : kind_(kNothing), instrumentation_event_(0), method_(nullptr) {}
191 jmethodID method_; member in class:art::DeoptimizationRequest
H A Dprofiler.h53 parent_(parent), method_(method), dex_pc_(dex_pc),
56 StackTrieNode() : parent_(nullptr), method_(nullptr, 0),
60 MethodReference GetMethod() { return method_; }
89 MethodReference method_; member in class:art::StackTrieNode
H A Dstack.h302 DCHECK(method_ != nullptr);
303 return method_;
307 DCHECK(method_ != nullptr);
308 return &method_;
320 method_ = method;
343 return OFFSETOF_MEMBER(ShadowFrame, method_);
361 : number_of_vregs_(num_vregs), link_(link), method_(method), dex_pc_(dex_pc) {
394 mirror::ArtMethod* method_; member in class:art::ShadowFrame
H A Dthread.cc1988 : StackVisitor(thread, context), this_object_(nullptr), method_(nullptr), dex_pc_(0),
1999 method_ = m;
2004 mirror::ArtMethod* method_; member in struct:art::FINAL
2015 return visitor.method_;
2023 return ThrowLocation(visitor.this_object_, visitor.method_, visitor.dex_pc_);
2242 DCHECK(frame.method_ != nullptr);
2243 visitor(reinterpret_cast<mirror::Object**>(&frame.method_), arg,
H A Ddex_file.h1158 return last_idx_ + method_.method_idx_delta_;
1166 return method_.access_flags_;
1200 return dex_file_.GetCodeItem(method_.code_off_);
1203 return method_.code_off_;
1260 ClassDataMethod method_; member in class:art::ClassDataItemIterator
H A Ddebugger.cc76 AllocRecordStackTraceElement() : method_(nullptr), dex_pc_(0) {
87 return soa.DecodeMethod(method_);
92 method_ = soa.EncodeMethod(m);
104 jmethodID method_; member in class:art::AllocRecordStackTraceElement
189 : method_(nullptr), dex_pc_(dex_pc), deoptimization_kind_(deoptimization_kind) {
194 method_ = soa.EncodeMethod(method);
198 : method_(nullptr), dex_pc_(other.dex_pc_),
201 method_ = soa.EncodeMethod(other.Method());
206 return soa.DecodeMethod(method_);
219 jmethodID method_; member in class:art::Breakpoint
[all...]

Completed in 132 milliseconds