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

Uses of Program in org.opensolaris.os.dtrace
 

Subclasses of Program in org.opensolaris.os.dtrace
static class Program.File
          Identifies a compiled D program, specifically one that has been compiled from a file.
 

Methods in org.opensolaris.os.dtrace that return Program
 Program LocalConsumer.compile(java.io.File program, java.lang.String... macroArgs)
           
 Program Consumer.compile(java.io.File program, java.lang.String... macroArgs)
          Compiles the given D program file.
 Program LocalConsumer.compile(java.lang.String program, java.lang.String... macroArgs)
           
 Program Consumer.compile(java.lang.String program, java.lang.String... macroArgs)
          Compiles the given D program string.
 

Methods in org.opensolaris.os.dtrace with parameters of type Program
 void LocalConsumer.enable(Program program)
           
 void Consumer.enable(Program program)
          Enables DTrace probes matching the given program and attaches information about those probes to the given program.
 void LocalConsumer.getProgramInfo(Program program)
           
 void Consumer.getProgramInfo(Program program)
          Attaches information about matching DTrace probes to the given program.
 java.util.List<Probe> LocalConsumer.listProgramProbeDetail(Program program)
           
 java.util.List<Probe> Consumer.listProgramProbeDetail(Program program)
          Lists probes that match the given compiled program and includes detail such as stability information about each listed probe.
 java.util.List<ProbeDescription> LocalConsumer.listProgramProbes(Program program)
           
 java.util.List<ProbeDescription> Consumer.listProgramProbes(Program program)
          Lists probes that match the given compiled program.