HomeSort by relevance Sort by last modified time
    Searched refs:IsMethodBeingInspected (Results 1 - 7 of 7) sorted by null

  /art/runtime/
runtime_callbacks.cc 92 DCHECK(cb->IsMethodBeingInspected(m))
93 << "Contract requires that !IsMethodSafeToJit(m) -> IsMethodBeingInspected(m)";
100 bool RuntimeCallbacks::IsMethodBeingInspected(ArtMethod* m) {
102 if (cb->IsMethodBeingInspected(m)) {
runtime_callbacks.h 127 virtual bool IsMethodBeingInspected(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_) = 0;
130 // Note that '!IsMethodSafeToJit(m) implies IsMethodBeingInspected(m)'. That is that if this
131 // method returns false IsMethodBeingInspected must return true.
198 bool IsMethodBeingInspected(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_);
debugger.h 57 bool IsMethodBeingInspected(ArtMethod* method) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_);
    [all...]
debugger.cc 359 bool DebuggerActiveMethodInspectionCallback::IsMethodBeingInspected(ArtMethod* m ATTRIBUTE_UNUSED) {
    [all...]
  /art/openjdkjvmti/
deopt_manager.h 60 bool IsMethodBeingInspected(art::ArtMethod* method)
deopt_manager.cc 61 bool JvmtiMethodInspectionCallback::IsMethodBeingInspected(art::ArtMethod* method) {
  /art/runtime/jit/
jit.cc 280 if (cb->IsMethodBeingInspected(method) && !cb->IsMethodSafeToJit(method)) {
503 if (Runtime::Current()->GetRuntimeCallbacks()->IsMethodBeingInspected(method)) {

Completed in 380 milliseconds