Uses of Class
org.opensolaris.os.dtrace.StackFrame

Uses of StackFrame in org.opensolaris.os.dtrace
 

Methods in org.opensolaris.os.dtrace that return StackFrame
 StackFrame[] KernelStackRecord.getStackFrames()
           
 StackFrame[] StackValueRecord.getStackFrames()
          Gets a copy of this record's stack frames, or an empty array if this record's raw stack data was not converted to human-readable stack frames by DTrace.
 StackFrame[] UserStackRecord.getStackFrames()
           
 

Methods in org.opensolaris.os.dtrace that return types with arguments of type StackFrame
 java.util.List<StackFrame> KernelStackRecord.asList()
           
 java.util.List<StackFrame> StackValueRecord.asList()
          Gets a read-only List view of this record's stack frames.
 java.util.List<StackFrame> UserStackRecord.asList()
           
 

Constructors in org.opensolaris.os.dtrace with parameters of type StackFrame
KernelStackRecord(StackFrame[] frames, byte[] rawBytes)
          Creates a KernelStackRecord with the given stack frames and raw stack data.
UserStackRecord(int pid, StackFrame[] frames, byte[] rawBytes)
          Creates a UserStackRecord with the given stack frames, user process ID, and raw stack data.