diff options
Diffstat (limited to 'runtime/class_linker.h')
| -rw-r--r-- | runtime/class_linker.h | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/class_linker.h b/runtime/class_linker.h index 9727adff44..2f92da36b4 100644 --- a/runtime/class_linker.h +++ b/runtime/class_linker.h @@ -500,6 +500,9 @@ class ClassLinker {    // Is the given entry point quick code to run the generic JNI stub?    bool IsQuickGenericJniStub(const void* entry_point) const; +  // Is the given entry point the JNI dlsym lookup stub? +  bool IsJniDlsymLookupStub(const void* entry_point) const; +    const void* GetQuickToInterpreterBridgeTrampoline() const {      return quick_to_interpreter_bridge_trampoline_;    }  |