Reference Pattern
A pattern that will match references for a given ReferenceMatcher.
Types
Instance Field Pattern
Link copied to clipboard
data class InstanceFieldPattern(className: String, fieldName: String) : ReferencePattern
Content copied to clipboard
Java Local Pattern
Link copied to clipboard
Matches local references held in the stack of frames of a given thread, identified by its name.
Native Global Variable Pattern
Link copied to clipboard
data class NativeGlobalVariablePattern(className: String) : ReferencePattern
Content copied to clipboard
Matches native global variables (also known as jni global gc roots) that reference Java objects. The class name will match against classes, instances and object arrays with a matching class name.
Static Field Pattern
Link copied to clipboard
data class StaticFieldPattern(className: String, fieldName: String) : ReferencePattern
Content copied to clipboard
Inheritors
JavaLocalPattern
Link copied to clipboard
StaticFieldPattern
Link copied to clipboard
InstanceFieldPattern
Link copied to clipboard
NativeGlobalVariablePattern
Link copied to clipboard