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

/art/openjdkjvmti/
H A Dti_breakpoint.h59 return method_ == other.method_ && location_ == other.location_;
63 return method_;
71 art::ArtMethod* method_; member in class:openjdkjvmti::Breakpoint
/art/runtime/jit/
H A Dprofiling_info.h73 return method_;
141 ArtMethod* method_; member in class:art::ProfilingInfo
H A Djit.cc604 JitCompileTask(ArtMethod* method, TaskKind kind) : method_(method), kind_(kind) {
607 klass_ = soa.Vm()->AddGlobalRef(soa.Self(), method_->GetDeclaringClass());
619 Runtime::Current()->GetJit()->CompileMethod(method_, self, /* osr */ false);
621 Runtime::Current()->GetJit()->CompileMethod(method_, self, /* osr */ true);
624 if (ProfilingInfo::Create(self, method_, /* retry_allocation */ true)) {
625 VLOG(jit) << "Start profiling " << ArtMethod::PrettyMethod(method_);
636 ArtMethod* const method_; member in class:art::jit::FINAL
/art/runtime/gc/
H A Dallocation_record.h46 : method_(method),
50 return method_;
54 method_ = m;
66 return method_ == other.method_ && dex_pc_ == other.dex_pc_;
70 ArtMethod* method_ = nullptr; member in class:art::gc::AllocRecordStackTraceElement
/art/runtime/
H A Dgc_root.h157 : field_(nullptr), method_(nullptr) {
160 : field_(field), method_(nullptr) {
163 : field_(nullptr), method_(method) {
169 return method_;
175 return method_ != nullptr;
180 ArtMethod* const method_; member in class:art::GcRootSource
H A Dinstrumentation.h730 method_(method),
739 ArtMethod* method_; member in struct:art::instrumentation::InstrumentationStackFrame
H A Ddebugger.h117 stack_depth_(stack_depth), method_(method) {
133 return method_;
158 ArtMethod* method_; member in class:art::SingleStepControl
178 DeoptimizationRequest() : kind_(kNothing), instrumentation_event_(0), method_(nullptr) {}
219 jmethodID method_; member in class:art::DeoptimizationRequest
H A Dmonitor.cc192 method_(nullptr),
202 method_ = m;
209 ArtMethod* method_; member in struct:art::FINAL
214 locking_method_ = nmv.method_;
276 method_(nullptr),
289 method_ = m;
299 ArtMethod* method_; member in struct:art::FINAL
325 TranslateLocation(visitor.method_, visitor.dex_pc_, &filename, &line_number);
H A Dthread.cc3415 method_(nullptr),
3427 method_ = m;
3432 ArtMethod* method_; member in struct:FINAL
3448 return visitor.method_;
H A Ddebugger.cc92 : method_(method->GetCanonicalMethod(kRuntimePointerSize)),
101 : method_(other.method_),
108 return method_;
122 return method_ == m->GetCanonicalMethod(kRuntimePointerSize);
127 ArtMethod* method_; member in class:art::Breakpoint
5338 return jni::DecodeArtMethod(method_);
5342 method_ = jni::EncodeArtMethod(m);
H A Dclass_linker.cc9003 : method_(method),
9007 if (klass->GetVirtualMethodsSliceUnchecked(pointer_size_).Contains(method_)) {
9015 const ArtMethod* const method_; member in class:ClassLinker::FindVirtualMethodHolderVisitor
/art/runtime/interpreter/
H A Dshadow_frame.h263 DCHECK(method_ != nullptr);
264 method_ = method;
268 DCHECK(method_ != nullptr);
269 return method_;
300 return OFFSETOF_MEMBER(ShadowFrame, method_);
368 method_(method),
399 ArtMethod* method_; member in class:art::ShadowFrame
/art/tools/breakpoint-logger/
H A Dbreakpoint_logger.cc178 method_(method),
194 if (jvmti_env_->GetMethodDeclaringClass(method_, &declaring_class_) != JVMTI_ERROR_NONE) {
200 jvmtiError err = jvmti_env_->GetLineNumberTable(method_, &nlines, &lines);
211 (jvmti_env_->GetMethodName(method_, &name_, &signature_, &generic_) == JVMTI_ERROR_NONE);
241 jmethodID method_; member in class:breakpoint_logger::ScopedMethodInfo
/art/runtime/dex/
H A Ddex_file_annotations.cc76 if (method_ != nullptr) {
77 return method_->GetDexCache();
84 if (method_ != nullptr) {
85 return method_->GetDeclaringClass()->GetClassLoader();
92 if (method_ != nullptr) {
93 return method_->GetDeclaringClass();
105 method_(method),
108 DCHECK((method_ == nullptr) || real_klass_.IsNull());
112 ArtMethod* method_; member in class:art::__anon88::ClassData
/art/test/ti-stress/
H A Dstress.cc222 method_(m),
238 if (jvmtienv_->GetMethodDeclaringClass(method_, &declaring_class_) != JVMTI_ERROR_NONE) {
244 jvmtiError err = jvmtienv_->GetLineNumberTable(method_, &nlines, &lines);
255 (jvmtienv_->GetMethodName(method_, &name_, &signature_, &generic_) == JVMTI_ERROR_NONE);
285 jmethodID method_; member in class:art::ScopedMethodInfo
/art/compiler/optimizing/
H A Dinliner.cc311 : method_(method),
322 DCHECK_EQ(profiling_info_, method_->GetProfilingInfo(pointer_size));
323 Runtime::Current()->GetJit()->GetCodeCache()->DoneCompilerUse(method_, self_);
330 ArtMethod* const method_; member in class:art::ScopedProfilingInfoInlineUse
H A Dnodes.h1860 method_(method),
1926 return method_;
1942 ArtMethod* method_; member in class:art::HEnvironment

Completed in 544 milliseconds