HomeSort by relevance Sort by last modified time
    Searched defs:dtrace (Results 1 - 25 of 59) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/cmd/devfsadm/
dtrace_link.c 29 #include <sys/dtrace.h>
31 static int dtrace(di_minor_t minor, di_node_t node);
35 { "pseudo", "ddi_pseudo", "dtrace",
36 TYPE_EXACT | DRV_EXACT, ILEVEL_0, dtrace },
56 dtrace(di_minor_t minor, di_node_t node) function
61 (void) snprintf(path, sizeof (path), "dtrace/%s", mname);
73 (void) snprintf(path, sizeof (path), "dtrace/provider/%s", mname);
  /onnv/onnv-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
Record.java 28 package org.opensolaris.os.dtrace;
31 * A data record generated by DTrace.
AggregationValue.java 28 package org.opensolaris.os.dtrace;
31 * A value accumulated by an aggregating DTrace action such as {@code
35 * an entry in a DTrace aggregation).
DTraceException.java 28 package org.opensolaris.os.dtrace;
31 * Exception in the native DTrace library.
39 * Creates a DTrace exception with the given message.
ExceptionHandler.java 28 package org.opensolaris.os.dtrace;
32 * a running DTrace consumer. The {@link Consumer} that threw the
48 * DTrace library, a {@link ConsumerException} if thrown from a
51 * Java DTrace API.
ResourceLimitException.java 28 package org.opensolaris.os.dtrace;
SymbolValueRecord.java 28 package org.opensolaris.os.dtrace;
31 * A value generated by the DTrace {@code mod()}, {@code func()}, {@code
42 * native DTrace library
ValueRecord.java 28 package org.opensolaris.os.dtrace;
31 * A data record generated by DTrace that contains a single value.
ConsumerEvent.java 28 package org.opensolaris.os.dtrace;
33 * An event indicating a state change in a DTrace {@link Consumer}.
64 * consumer opened a native DTrace library handle
ConsumerException.java 28 package org.opensolaris.os.dtrace;
57 * in response to a drop or an error reported by the native DTrace
59 * DTrace library so it can be used by an {@link ExceptionHandler}
65 * ConsumerListener} from DTrace that prompted this exception. The
90 * threw this exception. Usually this is the object from DTrace
91 * (such as an {@link org.opensolaris.os.dtrace.Error Error}) that
MaxValue.java 28 package org.opensolaris.os.dtrace;
33 * A {@code long} value aggregated by the DTrace {@code max()} action.
57 * Creates a value aggregated by the DTrace {@code max()} action.
MinValue.java 28 package org.opensolaris.os.dtrace;
33 * A {@code long} value aggregated by the DTrace {@code min()} action.
57 * Creates a value aggregated by the DTrace {@code min()} action.
StackValueRecord.java 28 package org.opensolaris.os.dtrace;
33 * A value generated by the DTrace {@code stack()}, {@code ustack()}, or
42 * stack frames by DTrace. Raw stack data is not converted (i.e.
70 * Gets the native DTrace representation of this record's stack as
73 * considered distinct by DTrace. Duplicate stacks (stacks with the
82 * @return the native DTrace library's internal representation of
89 * the native DTrace library.
SumValue.java 28 package org.opensolaris.os.dtrace;
33 * A {@code long} value aggregated by the DTrace {@code sum()} action.
57 * Creates a value aggregated by the DTrace {@code sum()} action.
AbstractAggregationValue.java 28 package org.opensolaris.os.dtrace;
ConsumerListener.java 28 package org.opensolaris.os.dtrace;
33 * Listener for data generated by a single DTrace {@link Consumer}.
39 * Called whenever a DTrace probe fires (that is, once for each
40 * instance of {@link ProbeData} generated by DTrace). Identifies
61 * Called when an error is encountered in the native DTrace library
95 * Consumer#abort()}), terminated normally as a result of the DTrace
CountValue.java 28 package org.opensolaris.os.dtrace;
34 * A {@code long} value aggregated by the DTrace {@code count()} action.
58 * Creates a value aggregated by the DTrace {@code count()} action.
ExitRecord.java 28 package org.opensolaris.os.dtrace;
34 * A record indicating that the DTrace {@code exit()} action is about to
89 * Gets the exit status of a DTrace {@link Consumer}.
NativeException.java 28 package org.opensolaris.os.dtrace;
Utility.java 28 package org.opensolaris.os.dtrace;
AvgValue.java 28 package org.opensolaris.os.dtrace;
34 * A {@code long} value aggregated by the DTrace {@code avg()} action.
63 * Creates a value aggregated by the DTrace {@code avg()} action.
ConsumerAdapter.java 28 package org.opensolaris.os.dtrace;
DataEvent.java 28 package org.opensolaris.os.dtrace;
34 * An event used to pass probe data generated by a DTrace {@link
49 * dataReceived()} event that conveys data generated by DTrace from
72 * Gets the data generated by DTrace from a single probe firing.
74 * @return non-null probe data generated by DTrace from a single
DropEvent.java 28 package org.opensolaris.os.dtrace;
34 * Notification that DTrace has dropped data due to inadequate buffer
70 * Gets the drop information generated by DTrace.
72 * @return non-null drop information generated by DTrace
ErrorEvent.java 28 package org.opensolaris.os.dtrace;
34 * Notification that DTrace has encountered an error.
49 * the native DTrace library during tracing.
52 * @param dtraceError the error encountered by DTrace
72 * Gets the error reported by DTrace.
74 * @return non-null error reported by DTrace

Completed in 180 milliseconds

1 2 3