|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of DTraceException in org.opensolaris.os.dtrace |
---|
Methods in org.opensolaris.os.dtrace that throw DTraceException | |
---|---|
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. |
int |
LocalConsumer.createProcess(java.lang.String command)
|
int |
Consumer.createProcess(java.lang.String command)
Creates a process by executing the given command on the system and returns the created process ID. |
void |
LocalConsumer.enable()
|
void |
Consumer.enable()
Enables all DTrace probes compiled by this consumer. |
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. |
Aggregate |
LocalConsumer.getAggregate()
|
Aggregate |
Consumer.getAggregate()
Gets a snapshot of all aggregations except those that have already been captured in a PrintaRecord . |
Aggregate |
LocalConsumer.getAggregate(java.util.Set<java.lang.String> includedAggregationNames)
|
Aggregate |
Consumer.getAggregate(java.util.Set<java.lang.String> includedAggregationNames)
Gets a snapshot of all the specified aggregations except those that have already been captured in a PrintaRecord . |
Aggregate |
LocalConsumer.getAggregate(java.util.Set<java.lang.String> includedAggregationNames,
java.util.Set<java.lang.String> clearedAggregationNames)
|
Aggregate |
Consumer.getAggregate(java.util.Set<java.lang.String> includedAggregationNames,
java.util.Set<java.lang.String> clearedAggregationNames)
Gets a snapshot of all the specified aggregations except those that have already been captured in a PrintaRecord , with
the side effect of atomically clearing any subset of those
aggregations. |
long |
LocalConsumer.getOption(java.lang.String option)
|
long |
Consumer.getOption(java.lang.String option)
Gets the value of a DTrace option. |
void |
LocalConsumer.getProgramInfo(Program program)
|
void |
Consumer.getProgramInfo(Program program)
Attaches information about matching DTrace probes to the given program. |
void |
LocalConsumer.go()
|
void |
Consumer.go()
Begin tracing and start a background thread to consume generated probe data. |
void |
LocalConsumer.go(ExceptionHandler h)
|
void |
Consumer.go(ExceptionHandler h)
Begin tracing and start a background thread to consume generated probe data. |
void |
LocalConsumer.grabProcess(int pid)
|
void |
Consumer.grabProcess(int pid)
Grabs the specified process and caches its symbol tables. |
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. |
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. |
void |
LocalConsumer.open(Consumer.OpenFlag... flags)
|
void |
Consumer.open(Consumer.OpenFlag... flags)
Opens this DTrace consumer. |
void |
LocalConsumer.setOption(java.lang.String option)
|
void |
Consumer.setOption(java.lang.String option)
Sets a boolean option. |
void |
LocalConsumer.setOption(java.lang.String option,
java.lang.String value)
|
void |
Consumer.setOption(java.lang.String option,
java.lang.String value)
Sets the value of a DTrace option. |
void |
LocalConsumer.unsetOption(java.lang.String option)
|
void |
Consumer.unsetOption(java.lang.String option)
Unsets a boolean option. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |