Searched refs:tracing (Results 1 - 25 of 55) sorted by relevance

123

/openjdk7/jdk/src/share/classes/sun/tracing/
H A Dpackage-info.java27 * This package contains internal common code for implementing tracing
30 * There are four tracing frameworks currently defined. The "Null" and
36 * {@code sun.tracing.dtrace} package.
43 * the application can call the tracing routines without error.
53 * See the {@code sun.tracing.dtrace} and {@code com.sun.tracing.dtrace}
57 package sun.tracing;
H A DNullProviderFactory.java26 package sun.tracing;
30 import com.sun.tracing.ProviderFactory;
31 import com.sun.tracing.Provider;
34 * Factory class to create tracing Providers.
36 * This factory will create tracing instances that do nothing.
37 * It is used when no tracing is desired, but Provider instances still
38 * must be generated so that tracing calls in the application continue to
H A DPrintStreamProviderFactory.java26 package sun.tracing;
32 import com.sun.tracing.ProviderFactory;
33 import com.sun.tracing.Provider;
34 import com.sun.tracing.ProviderName;
35 import com.sun.tracing.Probe;
36 import com.sun.tracing.ProbeName;
39 * Factory class to create tracing Providers.
41 * This factory will create tracing instances that print to a PrintStream
/openjdk7/jdk/src/share/classes/com/sun/tracing/
H A Dpackage-info.java29 * can then be monitored by the tracing tools available on the system.
33 * will be available to the tracing mechanisms at each point, and decide upon
54 * activated tracing mechanisms will be notified that the tracepoint has
69 * the probe and makes its parameter values visible to any associated tracing
74 * tracing mechanisms, you must obtain an instance of the
86 * When a probe is triggered, any activated tracing system will be given
88 * The tracing system is free to consume this data is whatever way is
95 * indicate the provider name that the tracing system will use. Similarly,
106 import com.sun.tracing.Provider;
107 import com.sun.tracing
[all...]
H A DProbe.java26 package com.sun.tracing;
35 * it), or to check a probe to see if anything is currently tracing it.
37 * A tracing check can be used to avoid lengthy work that might be
H A DProvider.java26 package com.sun.tracing;
29 * {@code Provider} is a superinterface for user-defined tracing providers.
48 * values of the arguments will be passed to the tracing implementation.
H A DProbeName.java26 package com.sun.tracing;
H A DProviderName.java26 package com.sun.tracing;
H A DProviderFactory.java2 package com.sun.tracing;
12 import sun.tracing.NullProviderFactory;
13 import sun.tracing.PrintStreamProviderFactory;
14 import sun.tracing.MultiplexProviderFactory;
15 import sun.tracing.dtrace.DTraceProviderFactory;
21 * To enable tracing in an application, this class must be used to create
50 * and enabled system-defined tracing mechanisms in the JDK.
59 new GetPropertyAction("com.sun.tracing.dtrace"));
68 new GetPropertyAction("sun.tracing.stream"));
/openjdk7/jdk/src/share/classes/com/sun/tracing/dtrace/
H A Dpackage-info.java28 * add DTrace-specific information to a tracing provider.
31 * implementation when it is used by the tracing subsystem. The annotations are
32 * added to a {@code com.sun.tracing} provider specification to control
35 * Any other tracing subsystems supported by the system will ignore these
39 * not accounted for in the generic tracing package. If unspecified, the
82 package com.sun.tracing.dtrace;
H A DArgsAttributes.java26 package com.sun.tracing.dtrace;
H A DDependencyClass.java26 package com.sun.tracing.dtrace;
H A DFunctionAttributes.java26 package com.sun.tracing.dtrace;
H A DFunctionName.java26 package com.sun.tracing.dtrace;
H A DModuleAttributes.java26 package com.sun.tracing.dtrace;
H A DModuleName.java26 package com.sun.tracing.dtrace;
H A DNameAttributes.java26 package com.sun.tracing.dtrace;
H A DProviderAttributes.java26 package com.sun.tracing.dtrace;
H A DStabilityLevel.java26 package com.sun.tracing.dtrace;
/openjdk7/jdk/make/com/sun/tracing/dtrace/
H A DMakefile30 PACKAGE = com.sun.tracing.dtrace
34 AUTO_FILES_JAVA_DIRS = com/sun/tracing/dtrace
/openjdk7/jdk/make/sun/tracing/dtrace/
H A DMakefile33 PACKAGE = sun.tracing.dtrace
44 NATIVE_DTRACE_DIR=native/sun/tracing/dtrace
52 sun/tracing/dtrace/Activation.java \
53 sun/tracing/dtrace/DTraceProvider.java \
54 sun/tracing/dtrace/DTraceProbe.java \
55 sun/tracing/dtrace/DTraceProviderFactory.java \
56 sun/tracing/dtrace/JVM.java
/openjdk7/jdk/make/com/sun/tracing/
H A DMakefile27 # Makefile for building tracing classes
31 PACKAGE = com.sun.tracing
43 AUTO_FILES_JAVA_DIRS = com/sun/tracing
/openjdk7/jdk/make/sun/tracing/
H A DMakefile27 # Makefile for building tracing package implementation classes
31 PACKAGE = sun.tracing
43 AUTO_FILES_JAVA_DIRS = sun/tracing
/openjdk7/jdk/src/share/classes/sun/tracing/dtrace/
H A DDTraceProvider.java26 package sun.tracing.dtrace;
37 import sun.tracing.ProviderSkeleton;
38 import sun.tracing.ProbeSkeleton;
39 import com.sun.tracing.Provider;
40 import com.sun.tracing.ProviderName;
41 import com.sun.tracing.ProbeName;
42 import com.sun.tracing.dtrace.Attributes;
43 import com.sun.tracing.dtrace.ModuleName;
44 import com.sun.tracing.dtrace.FunctionName;
45 import com.sun.tracing
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DBatchEnvironment.java466 if (tracing) dtEnter("parseFile: PARSING SOURCE " + file);
476 if (tracing) dtEvent("parseFile: IO EXCEPTION " + file);
558 if (tracing) dtExit("parseFile: SOURCE PARSED " + file);
569 if (tracing) dtEnter("loadFile: LOADING CLASSFILE " + file);
578 if (tracing) dtExit("loadFile: CLASS FORMAT ERROR " + file);
595 if (tracing) dtExit("loadFile: CLASSFILE LOADED " + file);
614 if (tracing) dtEnter("needsCompilation: UNDEFINED " + c.getName());
619 if (tracing) dtEnter("needsCompilation: UNDECIDED " + c.getName());
629 if (tracing) dtExit("needsCompilation: YES (source) " + c.getName());
634 if (tracing) dtExi
[all...]

Completed in 5805 milliseconds

123