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

Uses of ValueRecord in org.opensolaris.os.dtrace
 

Subinterfaces of ValueRecord 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.
 

Classes in org.opensolaris.os.dtrace that implement ValueRecord
 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 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 ValueRecord
 ValueRecord Tuple.get(int index)
          Gets the element at the given tuple index (starting at zero).
 ValueRecord PrintfRecord.getRecord(int i)
          Gets the unformatted element passed to the DTrace printf() action at the given offset in the printf() argument list after the format string, starting at offset zero for the first unformatted element.
 

Methods in org.opensolaris.os.dtrace that return types with arguments of type ValueRecord
 java.util.List<ValueRecord> Tuple.asList()
          Gets a read-only List view of this tuple.
 java.util.List<ValueRecord> Tuple.getElements()
          Gets a modifiable list of this tuple's elements in the same order as their corresponding variables in the original D program tuple.
 java.util.List<ValueRecord> PrintfRecord.getRecords()
          Gets the unfomatted elements passed to the DTrace printf() action after the format string.
 java.util.Iterator<ValueRecord> Tuple.iterator()
          Gets an iterator over the elements of this tuple.
 

Constructors in org.opensolaris.os.dtrace with parameters of type ValueRecord
Tuple(ValueRecord... tupleElements)
          Creates a tuple with the given elements in the given order.
 

Constructor parameters in org.opensolaris.os.dtrace with type arguments of type ValueRecord
PrintfRecord(java.util.List<ValueRecord> v, java.lang.String s)
          Creates a record with the unformatted elements passed to the DTrace printf() action and the resulting formatted output.
Tuple(java.util.List<ValueRecord> tupleElements)
          Creates a tuple with the given element list in the given list order.