Uses of Interface
org.opensolaris.os.dtrace.Record

Uses of Record in org.opensolaris.os.dtrace
 

Subinterfaces of Record in org.opensolaris.os.dtrace
 interface StackValueRecord
          A value generated by the DTrace stack(), ustack(), or jstack() action.
 interface SymbolValueRecord
          A value generated by the DTrace mod(), func(), sym(), umod(), ufunc() or usym() action used to lookup the symbol associated with an address in probe context.
 interface ValueRecord
          A data record generated by DTrace that contains a single value.
 

Classes in org.opensolaris.os.dtrace that implement Record
 class AggregationRecord
          A single key-value pair in a DTrace aggregation.
 class ExitRecord
          A record indicating that the DTrace exit() action is about to stop the source Consumer.
 class KernelStackRecord
          A value generated by the DTrace stack() action.
 class KernelSymbolRecord
          A value generated by the DTrace mod(), func(), or sym() action used to lookup the symbol associated with a kernel address.
 class PrintaRecord
          A record generated by the DTrace printa() action.
 class PrintfRecord
          A formatted string generated by the DTrace printf() action.
 class ScalarRecord
          A traced D primitive generated by a DTrace action such as trace() or tracemem(), or else an element in a composite value generated by DTrace.
 class UserStackRecord
          A value generated by the DTrace ustack() or jstack() action.
 class UserSymbolRecord
          A value generated by the DTrace umod(), ufunc(), or usym() action used to lookup the symbol associated with a user address.
 

Methods in org.opensolaris.os.dtrace that return types with arguments of type Record
 java.util.List<Record> ProbeData.getRecords()
          Gets the records generated by the actions of the probe that fired, in the same order as the actions that generated the records.
 

Constructor parameters in org.opensolaris.os.dtrace with type arguments of type Record
ProbeData(int enabledProbeID, int cpuID, ProbeDescription p, Flow f, java.util.List<Record> recordList)
          Creates a probe data instance with the given properties and list of records.