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

Uses of ProbeDescription in org.opensolaris.os.dtrace
 

Fields in org.opensolaris.os.dtrace declared as ProbeDescription
static ProbeDescription ProbeDescription.EMPTY
          Instance with empty provider, module, function, and name fields matches all DTrace probes on a system.
 

Methods in org.opensolaris.os.dtrace that return ProbeDescription
 ProbeDescription Probe.getDescription()
          Gets the probe description identifying a single probe described by this instance.
 ProbeDescription ProbeData.getEnabledProbeDescription()
          Gets the enabled probe description.
 ProbeDescription Error.getProbeDescription()
          Gets the probe description that identifies the error-inducing probe among all the probes on the system.
static ProbeDescription ProbeDescription.parse(java.lang.String s)
          Generates a probe description from a string in the same format returned by toString().
 

Methods in org.opensolaris.os.dtrace that return types with arguments of type ProbeDescription
 java.util.List<ProbeDescription> LocalConsumer.listProbes(ProbeDescription filter)
           
 java.util.List<ProbeDescription> Consumer.listProbes(ProbeDescription filter)
          Lists probes that match the given probe description.
 java.util.List<ProbeDescription> LocalConsumer.listProgramProbes(Program program)
           
 java.util.List<ProbeDescription> Consumer.listProgramProbes(Program program)
          Lists probes that match the given compiled program.
 

Methods in org.opensolaris.os.dtrace with parameters of type ProbeDescription
 int ProbeDescription.compareTo(ProbeDescription p)
          Defines the natural ordering of probe descriptions.
 java.util.List<Probe> LocalConsumer.listProbeDetail(ProbeDescription filter)
           
 java.util.List<Probe> Consumer.listProbeDetail(ProbeDescription filter)
          Lists probes that match the given probe description and includes detail such as stability information about each listed probe.
 java.util.List<ProbeDescription> LocalConsumer.listProbes(ProbeDescription filter)
           
 java.util.List<ProbeDescription> Consumer.listProbes(ProbeDescription filter)
          Lists probes that match the given probe description.
 

Constructors in org.opensolaris.os.dtrace with parameters of type ProbeDescription
Error(ProbeDescription pdesc, int enabledProbeID, int errorCPU, int errorAction, int errorOffset, java.lang.String faultName, long faultAddress, java.lang.String errorMessage)
          Creates a DTrace error with the given properties.
Probe(ProbeDescription probeDescription, ProbeInfo probeInfo)
          Creates a Probe instance with the given identifying description and associated probe information.
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.