Home
last modified time | relevance | path

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

/art/openjdkjvmti/
Dti_breakpoint.h60 return method_ == other.method_ && location_ == other.location_;
64 return method_; in GetMethod()
72 art::ArtMethod* method_;
Dti_breakpoint.cc120 return std::hash<uintptr_t> {}(reinterpret_cast<uintptr_t>(method_)) in hash()
124 Breakpoint::Breakpoint(art::ArtMethod* m, jlocation loc) : method_(m), location_(loc) { in Breakpoint()
/art/runtime/jit/
Dprofiling_info.cc30 method_(method), in ProfilingInfo()
79 LOG(FATAL) << "No inline cache found for " << ArtMethod::PrettyMethod(method_) << "@" << dex_pc; in GetInlineCache()
115 method_(method), in ScopedProfilingInfoUse()
126 jit_->GetCodeCache()->DoneCompilerUse(method_, self_); in ~ScopedProfilingInfoUse()
Dprofiling_info.h81 return method_; in GetMethod()
135 ArtMethod* method_; variable
161 ArtMethod* const method_; variable
Djit.cc756 method_(other.method_), in ScopedCompilation()
764 method_(method), in ScopedCompilation()
772 jit_->GetCodeCache()->IsMethodBeingCompiled(method_, compilation_kind_)) { in ScopedCompilation()
776 jit_->GetCodeCache()->AddMethodBeingCompiled(method_, compilation_kind_); in ScopedCompilation()
786 jit_->GetCodeCache()->RemoveMethodBeingCompiled(method_, compilation_kind_); in ~ScopedCompilation()
792 ArtMethod* const method_; member in art::jit::ScopedCompilation
808 : method_(method), in JitCompileTask()
823 method_, in Run()
839 ArtMethod* const method_; member in art::jit::JitCompileTask
/art/runtime/gc/
Dallocation_record.h46 : method_(method), in AllocRecordStackTraceElement()
50 return method_; in GetMethod()
54 method_ = m; in SetMethod()
66 return method_ == other.method_ && dex_pc_ == other.dex_pc_;
70 ArtMethod* method_ = nullptr;
Dallocation_record.cc34 DCHECK(method_ != nullptr); in ComputeLineNumber()
35 int32_t line_number = method_->GetLineNumFromDexPC(dex_pc_); in ComputeLineNumber()
36 if (line_number == -1 && !method_->IsProxyMethod()) { in ComputeLineNumber()
/art/runtime/
Dgc_root.h158 : field_(nullptr), method_(nullptr) { in GcRootSource()
161 : field_(field), method_(nullptr) { in GcRootSource()
164 : field_(nullptr), method_(method) { in GcRootSource()
170 return method_; in GetArtMethod()
176 return method_ != nullptr; in HasArtMethod()
181 ArtMethod* const method_; variable
Dmonitor.cc189 method_(nullptr), in SetLockingMethod()
199 method_ = m; in SetLockingMethod()
206 ArtMethod* method_; in SetLockingMethod() member
211 lock_owner_method = nmv.method_; in SetLockingMethod()
Dclass_linker.cc10854 : method_(method), in FindVirtualMethodHolderVisitor()
10858 if (klass->GetVirtualMethodsSliceUnchecked(pointer_size_).Contains(method_)) { in operator ()()
10866 const ArtMethod* const method_; member in art::ClassLinker::FindVirtualMethodHolderVisitor
/art/runtime/interpreter/
Dshadow_frame.h257 DCHECK(method_ != nullptr); in SetMethod()
258 method_ = method; in SetMethod()
262 DCHECK(method_ != nullptr); in GetMethod()
263 return method_; in GetMethod()
288 return OFFSETOF_MEMBER(ShadowFrame, method_); in MethodOffset()
405 method_(method), in ShadowFrame()
441 ArtMethod* method_; variable
/art/tools/jvmti-agents/ti-alloc-sample/
Dti_alloc_sample.cc159 : jvmtienv_(jvmtienv), env_(env), method_(m) {} in ScopedMethodInfo()
169 if (jvmtienv_->GetMethodDeclaringClass(method_, &declaring_class_) != JVMTI_ERROR_NONE) { in Init()
175 jvmtiError err = jvmtienv_->GetLineNumberTable(method_, &nlines, &lines); in Init()
186 (jvmtienv_->GetMethodName(method_, &name_, &signature_, &generic_) == JVMTI_ERROR_NONE); in Init()
216 jmethodID method_; member in tifast::__anon55c5bed10111::ScopedMethodInfo
/art/tools/jvmti-agents/breakpoint-logger/
Dbreakpoint_logger.cc178 method_(method), in ScopedMethodInfo()
194 if (jvmti_env_->GetMethodDeclaringClass(method_, &declaring_class_) != JVMTI_ERROR_NONE) { in Init()
200 jvmtiError err = jvmti_env_->GetLineNumberTable(method_, &nlines, &lines); in Init()
211 (jvmti_env_->GetMethodName(method_, &name_, &signature_, &generic_) == JVMTI_ERROR_NONE); in Init()
241 jmethodID method_; member in breakpoint_logger::ScopedMethodInfo
/art/tools/jvmti-agents/simple-profile/
Dsimple_profile.cc256 method_(method), in ScopedMethodInfo()
271 if (jvmti_env_->GetMethodDeclaringClass(method_, &declaring_class_) != JVMTI_ERROR_NONE) { in Init()
277 (jvmti_env_->GetMethodName(method_, &name_, &signature_, &generic_) == JVMTI_ERROR_NONE); in Init()
303 jmethodID method_; member in simple_profile::ScopedMethodInfo
/art/test/ti-stress/
Dstress.cc220 method_(m), in ScopedMethodInfo()
234 if (jvmtienv_->GetMethodDeclaringClass(method_, &declaring_class_) != JVMTI_ERROR_NONE) { in Init()
240 jvmtiError err = jvmtienv_->GetLineNumberTable(method_, &nlines, &lines); in Init()
251 (jvmtienv_->GetMethodName(method_, &name_, &signature_, nullptr) == JVMTI_ERROR_NONE); in Init()
277 jmethodID method_; member in art::ScopedMethodInfo
/art/tools/jvmti-agents/ti-fast/
Dtifast.cc236 : jvmtienv_(jvmtienv), env_(env), method_(m) {} in ScopedMethodInfo()
246 if (jvmtienv_->GetMethodDeclaringClass(method_, &declaring_class_) != JVMTI_ERROR_NONE) { in Init()
252 jvmtiError err = jvmtienv_->GetLineNumberTable(method_, &nlines, &lines); in Init()
263 (jvmtienv_->GetMethodName(method_, &name_, &signature_, &generic_) == JVMTI_ERROR_NONE); in Init()
293 jmethodID method_; member in tifast::__anon3adb63c80111::ScopedMethodInfo
/art/runtime/dex/
Ddex_file_annotations.cc94 if (method_ != nullptr) { in GetDexCache()
95 return method_->GetDexCache(); in GetDexCache()
102 if (method_ != nullptr) { in GetClassLoader()
103 return method_->GetDeclaringClass()->GetClassLoader(); in GetClassLoader()
110 if (method_ != nullptr) { in GetRealClass()
111 return method_->GetDeclaringClass(); in GetRealClass()
123 method_(method), in ClassData()
126 DCHECK((method_ == nullptr) || real_klass_.IsNull()); in ClassData()
130 ArtMethod* method_; member in art::__anon71edc65e0111::ClassData
/art/compiler/optimizing/
Dnodes.h2068 method_(method), in HEnvironment()
2139 return method_; in GetMethod()
2172 ArtMethod* method_; variable