Searched refs:trace (Results 1 - 25 of 151) sorted by relevance

1234567

/openjdk7/jdk/test/java/lang/instrument/appendToClassLoaderSearch/
H A DInstrumentedApplication.java33 org.tools.Tracer.trace("MethodEnter");
35 org.tools.Tracer.trace("MethodExit");
/openjdk7/jdk/test/sun/management/HotspotClassLoadingMBean/
H A DGetUnloadedClassSize.java46 private static boolean trace = false; field in class:GetUnloadedClassSize
49 if (args.length > 0 && args[0].equals("trace")) {
50 trace = true;
55 if (trace) {
H A DGetClassInitializationTime.java46 private static boolean trace = false; field in class:GetClassInitializationTime
49 if (args.length > 0 && args[0].equals("trace")) {
50 trace = true;
55 if (trace) {
71 if (trace) {
H A DGetInitializedClassCount.java46 private static boolean trace = false; field in class:GetInitializedClassCount
49 if (args.length > 0 && args[0].equals("trace")) {
50 trace = true;
55 if (trace) {
71 if (trace) {
H A DGetLoadedClassSize.java46 private static boolean trace = false; field in class:GetLoadedClassSize
49 if (args.length > 0 && args[0].equals("trace")) {
50 trace = true;
55 if (trace) {
72 if (trace) {
H A DGetMethodDataSize.java46 private static boolean trace = false; field in class:GetMethodDataSize
49 if (args.length > 0 && args[0].equals("trace")) {
50 trace = true;
55 if (trace) {
71 if (trace) {
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAbstractDataLine.java106 if (Printer.trace) Printer.trace("> AbstractDataLine.open(format, bufferSize) (class: "+getClass().getName());
147 if (Printer.trace) Printer.trace("< AbstractDataLine.open(format, bufferSize) completed");
169 if (Printer.trace) Printer.trace("AbstractDataLine: drain");
177 if (Printer.trace) Printer.trace("AbstractDataLine: flush");
184 if (Printer.trace) Printer.trace("> "
[all...]
H A DMidiInDevice.java47 if(Printer.trace) Printer.trace("MidiInDevice CONSTRUCTOR");
56 if (Printer.trace) Printer.trace("> MidiInDevice: implOpen()");
75 if (Printer.trace) Printer.trace("< MidiInDevice: implOpen() completed");
82 if (Printer.trace) Printer.trace("> MidiInDevice: implClose()");
98 if (Printer.trace) Printer.trace("< MidiInDevic
[all...]
H A DAbstractMixer.java297 if (Printer.trace) Printer.trace(">> AbstractMixer: open()");
307 if (Printer.trace) Printer.trace("<< AbstractMixer: open() succeeded");
323 if (Printer.trace) Printer.trace(">> AbstractMixer: open(line = " + line + ")");
327 if (Printer.trace) Printer.trace("<< AbstractMixer: open(" + line + ") nothing done");
357 if (Printer.trace) Printer.trace("<< AbstractMixe
[all...]
H A DPortMixer.java75 if (Printer.trace) Printer.trace(">> PortMixer: constructor");
87 if (Printer.trace) Printer.trace("nGetPortCount() returned error code: " + count);
121 if (Printer.trace) Printer.trace("<< PortMixer: constructor completed");
158 if (Printer.trace) Printer.trace(">> PortMixer: implOpen (id="+id+")");
163 if (Printer.trace) Printer.trace("<< PortMixe
[all...]
H A DAbstractMidiDevice.java94 if(Printer.trace) Printer.trace(">> AbstractMidiDevice CONSTRUCTOR");
99 if(Printer.trace) Printer.trace("<< AbstractMidiDevice CONSTRUCTOR completed");
115 if (Printer.trace) Printer.trace("> AbstractMidiDevice: open()");
120 if (Printer.trace) Printer.trace("< AbstractMidiDevice: open() completed");
137 if (Printer.trace) Printer.trace("> AbstractMidiDevic
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DStackTracePanel.java47 if (trace == null) return null;
48 return trace.get(index);
51 if (trace == null) return 0;
52 return trace.size();
61 fireContentsChanged(this, 0, trace.size());
65 private java.util.List trace; field in class:StackTracePanel
93 public void setTrace(java.util.List trace) { argument
94 this.trace = trace;
109 StackTraceEntry entry = (StackTraceEntry) trace
[all...]
/openjdk7/jdk/test/com/sun/management/OperatingSystemMXBean/
H A DGetFreePhysicalMemorySize.java64 private static boolean trace = false; field in class:GetFreePhysicalMemorySize
67 if (args.length > 0 && args[0].equals("trace")) {
68 trace = true;
78 if (trace) {
H A DGetFreeSwapSpaceSize.java61 private static boolean trace = false; field in class:GetFreeSwapSpaceSize
64 if (args.length > 0 && args[0].equals("trace")) {
65 trace = true;
75 if (trace) {
H A DGetTotalPhysicalMemorySize.java63 private static boolean trace = false; field in class:GetTotalPhysicalMemorySize
66 if (args.length > 0 && args[0].equals("trace")) {
67 trace = true;
77 if (trace) {
/openjdk7/jdk/test/com/sun/management/UnixOperatingSystemMXBean/
H A DGetMaxFileDescriptorCount.java52 private static boolean trace = false; field in class:GetMaxFileDescriptorCount
55 if (args.length > 0 && args[0].equals("trace")) {
56 trace = true;
66 if (trace) {
H A DGetOpenFileDescriptorCount.java51 private static boolean trace = false; field in class:GetOpenFileDescriptorCount
54 if (args.length > 0 && args[0].equals("trace")) {
55 trace = true;
65 if (trace) {
/openjdk7/jdk/test/javax/management/ImplementationVersion/
H A DImplVersionReader.java46 String trace = in.readLine();
47 if (trace != null) {
48 System.out.println("ImplVersionCommand: " + trace);
/openjdk7/jdk/test/javax/management/remote/mandatory/version/
H A DImplVersionReader.java46 String trace = in.readLine();
47 if (trace != null) {
48 System.out.println("ImplVersionCommand: " + trace);
/openjdk7/jdk/test/com/sun/jdi/
H A DJdbMethodExitTest.sh48 * This tests the jdb trace command
166 // test trace methods
169 // test trace go methods
173 // test trace method exits
176 // test trace method exits
180 // test trace method exit
183 // test trace method exit
202 cmd trace methods
203 cmd trace
204 jdbFailIfNotPresent "trace method
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeTracer.hpp31 // bytecode tracing. If bytecode tracing is turned on, trace() will be called
50 static void trace(methodHandle method, address bcp, uintptr_t tos, uintptr_t tos2, outputStream* st = tty);
51 static void trace(methodHandle method, address bcp, outputStream* st = tty);
55 // For each bytecode, a BytecodeClosure's trace() routine will be called.
59 virtual void trace(methodHandle method, address bcp, uintptr_t tos, uintptr_t tos2, outputStream* st) = 0;
60 virtual void trace(methodHandle method, address bcp, outputStream* st) = 0;
/openjdk7/jdk/test/sun/management/HotspotRuntimeMBean/
H A DGetSafepointCount.java48 private static boolean trace = false; field in class:GetSafepointCount
51 if (args.length > 0 && args[0].equals("trace")) {
52 trace = true;
64 if (trace) {
81 if (trace) {
H A DGetSafepointSyncTime.java48 private static boolean trace = false; field in class:GetSafepointSyncTime
51 if (args.length > 0 && args[0].equals("trace")) {
52 trace = true;
64 if (trace) {
81 if (trace) {
H A DGetTotalSafepointTime.java48 private static boolean trace = false; field in class:GetTotalSafepointTime
51 if (args.length > 0 && args[0].equals("trace")) {
52 trace = true;
64 if (trace) {
80 if (trace) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/
H A DUtil.java43 // StackTraceElement[] trace = Thread.currentThread().getStackTrace();
44 StackTraceElement[] trace = new Exception().getStackTrace();
45 return Logger.getLogger(trace[1].getClassName());

Completed in 44 milliseconds

1234567