Uses of Interface
org.openjdk.jmc.common.IMCFrame
-
Packages that use IMCFrame Package Description org.openjdk.jmc.common This package contains interfaces used in Mission Control to identify classes, methods, stack traces etc.org.openjdk.jmc.common.unit This package contains the data model for quantities and units.org.openjdk.jmc.common.util org.openjdk.jmc.flightrecorder org.openjdk.jmc.flightrecorder.internal.parser.v0.factories org.openjdk.jmc.flightrecorder.internal.parser.v1 org.openjdk.jmc.flightrecorder.jdk org.openjdk.jmc.flightrecorder.stacktrace -
-
Uses of IMCFrame in org.openjdk.jmc.common
Methods in org.openjdk.jmc.common that return types with arguments of type IMCFrame Modifier and Type Method Description java.util.List<? extends IMCFrame>
IMCStackTrace. getFrames()
Return the frames that this stack trace consist of. -
Uses of IMCFrame in org.openjdk.jmc.common.unit
Fields in org.openjdk.jmc.common.unit with type parameters of type IMCFrame Modifier and Type Field Description static ContentType<IMCFrame>
UnitLookup. STACKTRACE_FRAME
-
Uses of IMCFrame in org.openjdk.jmc.common.util
Classes in org.openjdk.jmc.common.util that implement IMCFrame Modifier and Type Class Description class
MCFrame
Base implementation of theIMCFrame
interface.Fields in org.openjdk.jmc.common.util with type parameters of type IMCFrame Modifier and Type Field Description private java.util.List<IMCFrame>
MCStackTrace. frames
Methods in org.openjdk.jmc.common.util that return types with arguments of type IMCFrame Modifier and Type Method Description java.util.List<IMCFrame>
MCStackTrace. getFrames()
Constructor parameters in org.openjdk.jmc.common.util with type arguments of type IMCFrame Constructor Description MCStackTrace(java.util.List<IMCFrame> frames, IMCStackTrace.TruncationState truncationState)
Create a new stack trace instance. -
Uses of IMCFrame in org.openjdk.jmc.flightrecorder
Methods in org.openjdk.jmc.flightrecorder with parameters of type IMCFrame Modifier and Type Method Description private static void
RecordingPrinter. printFrame(java.lang.String indent, IMCFrame frame, java.io.PrintWriter out)
-
Uses of IMCFrame in org.openjdk.jmc.flightrecorder.internal.parser.v0.factories
Methods in org.openjdk.jmc.flightrecorder.internal.parser.v0.factories that return IMCFrame Modifier and Type Method Description private IMCFrame
StackTraceFactory. createFrame(java.lang.Object[] frameObject)
Methods in org.openjdk.jmc.flightrecorder.internal.parser.v0.factories that return types with arguments of type IMCFrame Modifier and Type Method Description private static java.util.List<IMCFrame>
StackTraceFactory. buildFilteredStackTrace(IMCFrame[] frames)
Methods in org.openjdk.jmc.flightrecorder.internal.parser.v0.factories with parameters of type IMCFrame Modifier and Type Method Description private static java.util.List<IMCFrame>
StackTraceFactory. buildFilteredStackTrace(IMCFrame[] frames)
-
Uses of IMCFrame in org.openjdk.jmc.flightrecorder.internal.parser.v1
Classes in org.openjdk.jmc.flightrecorder.internal.parser.v1 that implement IMCFrame Modifier and Type Class Description (package private) static class
StructTypes.JfrFrame
Methods in org.openjdk.jmc.flightrecorder.internal.parser.v1 that return types with arguments of type IMCFrame Modifier and Type Method Description java.util.List<? extends IMCFrame>
StructTypes.JfrStackTrace. getFrames()
-
Uses of IMCFrame in org.openjdk.jmc.flightrecorder.jdk
Fields in org.openjdk.jmc.flightrecorder.jdk with type parameters of type IMCFrame Modifier and Type Field Description static IAttribute<IMCFrame>
JdkAttributes. STACK_TRACE_BOTTOM_FRAME
static IAttribute<IMCFrame>
JdkAttributes. STACK_TRACE_TOP_FRAME
-
Uses of IMCFrame in org.openjdk.jmc.flightrecorder.stacktrace
Fields in org.openjdk.jmc.flightrecorder.stacktrace declared as IMCFrame Modifier and Type Field Description private IMCFrame
StacktraceFrame. frame
(package private) IMCFrame
StacktraceModel.FrameEntry. frame
static IMCFrame
StacktraceModel. UNKNOWN_FRAME
A special marker object that indicates a frame that cannot be determined.Methods in org.openjdk.jmc.flightrecorder.stacktrace that return IMCFrame Modifier and Type Method Description IMCFrame
StacktraceFrame. getFrame()
private IMCFrame
StacktraceModel. getFrame(IItem item, int frameIndex)
Methods in org.openjdk.jmc.flightrecorder.stacktrace with parameters of type IMCFrame Modifier and Type Method Description (package private) boolean
FrameSeparator. compareDetails(IMCFrame frameA, IMCFrame frameB)
Check if two frames are equal according to this frame separator.private static StacktraceModel.FrameEntry
StacktraceModel. findEntryForFrame(SimpleArray<StacktraceModel.FrameEntry> entries, IMCFrame frame, FrameSeparator frameSeparator)
Find or create a matching FrameEntry for a frame.static java.lang.String
StacktraceFormatToolkit. formatFrame(IMCFrame frame, FrameSeparator frameSeparator)
Return a text representation of a frame with only the information that is relevant according to the frame categorization.static java.lang.String
StacktraceFormatToolkit. formatFrame(IMCFrame frame, FrameSeparator frameSeparator, boolean showReturnValue, boolean showReturnValuePackage, boolean showClassName, boolean showClassPackageName, boolean showArguments, boolean showArgumentsPackage)
Return a text representation of a frame with only the information that is relevant according to the frame categorization.(package private) java.lang.Object
FrameSeparator. getCategory(IMCFrame frame)
Get an object identifying a frame on the most significant level used by this frame separator.boolean
FrameSeparator. isSeparate(IMCFrame frameA, IMCFrame frameB)
Check if two frames are different according to this frame separator.Constructors in org.openjdk.jmc.flightrecorder.stacktrace with parameters of type IMCFrame Constructor Description Branch(StacktraceModel.Fork parent, SimpleArray<IItem> items, IMCFrame frame, int siblingIndex, int itemOffsetInFork)
FrameEntry(IMCFrame frame)
StacktraceFrame(SimpleArray<IItem> items, IMCFrame frame, StacktraceModel.Branch branch, int indexInBranch)
StacktraceFrame(IItem[] items, IMCFrame frame, StacktraceModel.Branch branch, int indexInBranch)
-