Searched refs:method_ (Results 1 - 21 of 21) sorted by relevance

/art/runtime/lambda/
H A Dart_lambda_method.h43 return method_;
97 ArtMethod* method_; member in class:art::lambda::ArtLambdaMethod
H A Dart_lambda_method.cc29 : method_(target_method),
/art/runtime/
H A Dgc_root.h139 : field_(nullptr), method_(nullptr) {
142 : field_(field), method_(nullptr) {
145 : field_(nullptr), method_(method) {
151 return method_;
157 return method_ != nullptr;
162 ArtMethod* const method_; member in class:art::GcRootSource
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 Dinstrumentation.cc237 CHECK_EQ(m, frame.method_) << "Expected " << PrettyMethod(m)
238 << ", Found " << PrettyMethod(frame.method_);
299 instrumentation->MethodEnterEvent(thread, (*ssi).this_object_, (*ssi).method_, 0);
305 instrumentation->MethodEnterEvent(thread, (*isi).this_object_, (*isi).method_, dex_pc);
361 CHECK(m == instrumentation_frame.method_) << PrettyMethod(m);
1064 ArtMethod* method = instrumentation_frame.method_;
1081 MethodExitEvent(self, this_object, instrumentation_frame.method_, dex_pc, return_value);
1121 ArtMethod* method = instrumentation_frame.method_;
1141 os << "Frame " << frame_id_ << " " << PrettyMethod(method_) << ":"
H A Ddebugger.h95 stack_depth_(stack_depth), method_(method) {
111 return method_;
136 ArtMethod* method_; member in class:art::SingleStepControl
156 DeoptimizationRequest() : kind_(kNothing), instrumentation_event_(0), method_(nullptr) {}
197 jmethodID method_; member in class:art::DeoptimizationRequest
H A Dstack.h330 DCHECK(method_ != nullptr);
331 return method_;
362 return OFFSETOF_MEMBER(ShadowFrame, method_);
417 : link_(link), method_(method), result_register_(nullptr), dex_pc_ptr_(nullptr),
441 ArtMethod* method_; member in class:art::ShadowFrame
H A Ddex_file.h1418 return last_idx_ + method_.method_idx_delta_;
1426 return method_.access_flags_;
1460 return dex_file_.GetCodeItem(method_.code_off_);
1463 return method_.code_off_;
1523 ClassDataMethod method_; member in class:art::ClassDataItemIterator
H A Dinstrumentation.h607 : this_object_(this_object), method_(method), return_pc_(return_pc), frame_id_(frame_id),
614 ArtMethod* method_; member in struct:art::instrumentation::InstrumentationStackFrame
H A Dmonitor.cc224 method_(nullptr),
237 method_ = m;
247 ArtMethod* method_; member in struct:art::FINAL
273 TranslateLocation(visitor.method_, visitor.dex_pc_, &filename, &line_number);
H A Dstack.cc848 CHECK_EQ(instrumentation_frame.method_, GetMethod())
849 << "Expected: " << PrettyMethod(instrumentation_frame.method_)
H A Ddebugger.cc89 : method_(GetCanonicalMethod(method)),
98 : method_(other.method_),
105 return method_;
119 return method_ == GetCanonicalMethod(m);
124 ArtMethod* method_; member in class:art::Breakpoint
5081 return soa.DecodeMethod(method_);
5086 method_ = soa.EncodeMethod(m);
H A Ddex_file.cc2327 method_.method_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_);
2328 method_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_);
2329 method_.code_off_ = DecodeUnsignedLeb128(&ptr_pos_);
2330 if (last_idx_ != 0 && method_.method_idx_delta_ == 0) {
H A Dthread.cc2639 method_(nullptr),
2651 method_ = m;
2656 ArtMethod* method_; member in struct:art::FINAL
2667 return visitor.method_;
H A Dclass_linker.cc8397 : method_(method),
8401 if (klass->GetVirtualMethodsSliceUnchecked(pointer_size_).Contains(method_)) {
8409 const ArtMethod* const method_; member in class:ClassLinker::FindVirtualMethodHolderVisitor
/art/runtime/gc/
H A Dallocation_record.h45 : method_(method),
49 return method_;
53 method_ = m;
65 return method_ == other.method_ && dex_pc_ == other.dex_pc_;
69 ArtMethod* method_ = nullptr; member in class:art::gc::AllocRecordStackTraceElement
H A Dallocation_record.cc31 DCHECK(method_ != nullptr);
32 return method_->GetLineNumFromDexPC(dex_pc_);
/art/runtime/jit/
H A Dprofiling_info.cc30 method_(method),
102 CHECK(cache != nullptr) << PrettyMethod(method_) << "@" << dex_pc;
H A Dprofiling_info.h118 return method_;
176 ArtMethod* const method_; member in class:art::ProfilingInfo
H A Djit.cc560 JitCompileTask(ArtMethod* method, TaskKind kind) : method_(method), kind_(kind) {
563 klass_ = soa.Vm()->AddGlobalRef(soa.Self(), method_->GetDeclaringClass());
575 Runtime::Current()->GetJit()->CompileMethod(method_, self, /* osr */ false);
577 Runtime::Current()->GetJit()->CompileMethod(method_, self, /* osr */ true);
580 if (ProfilingInfo::Create(self, method_, /* retry_allocation */ true)) {
581 VLOG(jit) << "Start profiling " << PrettyMethod(method_); variable
592 ArtMethod* const method_; member in class:art::jit::FINAL
/art/compiler/optimizing/
H A Dinliner.cc225 : method_(method),
236 DCHECK_EQ(profiling_info_, method_->GetProfilingInfo(pointer_size));
237 Runtime::Current()->GetJit()->GetCodeCache()->DoneCompilerUse(method_, self_);
244 ArtMethod* const method_; member in class:art::ScopedProfilingInfoInlineUse

Completed in 655 milliseconds