Add a new class status for verified with access checks.

At runtime, we won't run the verifier for those classes, but run with
access checks enabled in the interpreter.

Bug: 157265232
Test: test.py

Change-Id: Ia087c3b6f9fcbd295307333e524945d844ef54dc
diff --git a/openjdkjvmti/ti_redefine.cc b/openjdkjvmti/ti_redefine.cc
index 707c700..367751f 100644
--- a/openjdkjvmti/ti_redefine.cc
+++ b/openjdkjvmti/ti_redefine.cc
@@ -1632,6 +1632,7 @@
       // were fixed. It would be nice to reflect this in the new implementations.
       return true;
     case art::verifier::FailureKind::kSoftFailure:
+    case art::verifier::FailureKind::kAccessChecksFailure:
       // Soft failures might require interpreter on some methods. It won't prevent redefinition but
       // it does mean we need to run the verifier again and potentially update method flags after
       // performing the swap.