HomeSort by relevance Sort by last modified time
    Searched full:trace (Results 651 - 675 of 2719) sorted by null

<<21222324252627282930>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
DetailsPage.java 60 public DetailsPage(GLTrace trace) {
61 mTrace = trace;
64 public void setInput(GLTrace trace) {
65 mTrace = trace;
ICallDetailProvider.java 30 void updateControl(GLTrace trace, GLCall call);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMException.java 284 * Print the the trace of methods from where the error
285 * originated. This will trace all nested exception
293 * Print the the trace of methods from where the error
294 * originated. This will trace all nested exception
303 * Print the the trace of methods from where the error
304 * originated. This will trace all nested exception
354 s.println("Could not print stack trace...");
  /external/openssh/regress/
test-exec.sh 178 trace "wait for sshd to exit"
191 trace () function
193 echo "trace: $@" >>$TEST_SSH_LOGFILE
262 trace "adding sshd_config option $TEST_SSH_SSHD_CONFOPTS"
292 trace "adding ssh_config option $TEST_SSH_SSHD_CONFOPTS"
298 trace "generate keys"
382 trace "wait for sshd"
  /frameworks/base/core/java/android/content/
AbstractThreadedSyncAdapter.java 24 import android.os.Trace;
241 // Trace this sync instance. Note, conceptually this should be in
242 // SyncStorageEngine.insertStartSyncEvent(), but the trace functions require unique
244 Trace.traceBegin(Trace.TRACE_TAG_SYNC_MANAGER, mAuthority);
260 Trace.traceEnd(Trace.TRACE_TAG_SYNC_MANAGER);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
StateViewPage.java 70 * in the Function Trace view, and updates its view to reflect the state as of the selected call.
88 public StateViewPage(GLTrace trace) {
89 setInput(trace);
92 public void setInput(GLTrace trace) {
93 mTrace = trace;
94 if (trace != null) {
95 mGLCalls = trace.getGLCalls();
  /dalvik/hit/src/com/android/hit/
HprofParser.java 231 StackTrace trace = new StackTrace(serialNumber, threadSerialNumber, local
234 mState.addStackTrace(trace);
357 StackTrace trace = mState.getStackTraceAtDepth(thread.mStackTrace, local
360 threadSerialNumber, trace);
373 StackTrace trace = mState.getStackTraceAtDepth(thread.mStackTrace, local
376 trace);
388 StackTrace trace = mState.getStackTrace(thread.mStackTrace); local
390 threadSerialNumber, trace);
578 StackTrace trace = mState.getStackTraceAtDepth(thread.mStackTrace, local
581 threadSerialNumber, trace);
    [all...]
  /external/chromium/testing/gmock/test/
gmock_output_test_golden.txt 4 Stack trace:
9 Stack trace:
14 Stack trace:
18 Stack trace:
28 Stack trace:
78 Stack trace:
85 Stack trace:
269 Stack trace:
276 Stack trace:
287 Stack trace
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_thread.cc 60 // Can't increment epoch w/o writing to the trace as well.
93 // RoundUp so that one trace part does not contain events
115 const uptr trace = (epoch0 / kTracePartSize) % TraceParts(); local
116 thr->trace.headers[trace].epoch0 = epoch0;
128 // Can't increment epoch w/o writing to the trace as well.
139 dead_info->trace.headers[i].epoch0 = thr->trace.headers[i].epoch0;
140 dead_info->trace.headers[i].stack0.CopyFrom(
141 thr->trace.headers[i].stack0)
    [all...]
  /external/linux-tools-perf/util/scripting-engines/
trace-event-perl.c 2 * trace-event-perl. Feed perf script events to an embedded Perl interpreter.
30 #include "../trace-event.h"
46 newXS("Perf::Trace::Context::bootstrap", boot_Perf__Trace__Context,
345 * Start trace script
389 * Stop trace script
442 "Perf-Trace-Util/lib\";\n");
444 fprintf(ofp, "use lib \"./Perf-Trace-Util/lib\";\n");
445 fprintf(ofp, "use Perf::Trace::Core;\n");
446 fprintf(ofp, "use Perf::Trace::Context;\n");
447 fprintf(ofp, "use Perf::Trace::Util;\n\n")
    [all...]
trace-event-python.c 2 * trace-event-python. Feed trace events to an embedded Python interpreter.
32 #include "../trace-event.h"
54 Py_FatalError("problem in Python trace event handler");
361 * Start trace script
412 * Stop trace script
468 fprintf(ofp, "# See the perf-trace-python Documentation for the list "
475 fprintf(ofp, "\t'/scripts/python/Perf-Trace-Util/lib/Perf/Trace')\n");
  /external/jpeg/
jerror.c 8 * This file contains simple error-reporting and trace-message routines.
83 * Actual output of an error or trace message.
117 * Decide whether to emit a trace or warning message.
142 /* It's a trace message. Show it if trace_level >= msg_level. */
205 * This is called during compression startup to reset trace/error
  /external/qemu/distrib/jpeg-6b/
jerror.c 8 * This file contains simple error-reporting and trace-message routines.
83 * Actual output of an error or trace message.
117 * Decide whether to emit a trace or warning message.
142 /* It's a trace message. Show it if trace_level >= msg_level. */
205 * This is called during compression startup to reset trace/error
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
AutomaticActivity.java 33 import android.os.Trace;
83 Trace.traceBegin(Trace.TRACE_TAG_ALWAYS, "calculateError");
85 Trace.traceEnd(Trace.TRACE_TAG_ALWAYS);
  /external/proguard/docs/manual/retrace/
examples.html 15 <li><a href="#with">Restoring a stack trace with line numbers</a>
16 <li><a href="#withverbose">Restoring a stack trace with line numbers (verbose)</a>
17 <li><a href="#without">Restoring a stack trace without line numbers</a>
21 <h3>Restoring a stack trace with line numbers</h3>
34 stack trace in <code>proguard.trace</code>, shown below. Of course, in real
84 We can then use the following command to recover the stack trace:
86 <b>java -jar retrace.jar proguard.map proguard.trace</b>
137 <h3>Restoring a stack trace with line numbers (verbose)</h3>
141 <b>java -jar retrace.jar -verbose proguard.map proguard.trace</b
    [all...]
  /prebuilts/tools/common/proguard/proguard4.7/docs/manual/retrace/
examples.html 26 <li><a href="#with">Restoring a stack trace with line numbers</a></li>
27 <li><a href="#withverbose">Restoring a stack trace with line numbers
29 <li><a href="#without">Restoring a stack trace without line numbers</a></li>
32 <h3><a name="with">Restoring a stack trace with line numbers</a></h3>
45 stack trace in <code>proguard.trace</code>, shown below. Of course, in real
95 We can then use the following command to recover the stack trace:
97 <b>java -jar retrace.jar proguard.map proguard.trace</b>
147 <h3><a name="withverbose">Restoring a stack trace with line numbers (verbose)</a></h3>
151 <b>java -jar retrace.jar -verbose proguard.map proguard.trace</b
    [all...]
  /prebuilts/misc/android-mips/gdbserver/
gdbserver 
  /external/valgrind/main/coregrind/
m_options.c 260 /*=== --trace-children= support ===*/
277 /* Should we trace into this child executable (across execve etc) ?
278 This involves considering --trace-children=,
279 --trace-children-skip=, --trace-children-skip-by-arg=, and the name
292 // If --trace-children=no, the answer is simply NO.
298 // by --trace-children-skip=.
323 // by --trace-children-skip-by-arg=.
351 // --trace-children=yes, and this particular executable isn't
  /frameworks/base/core/java/com/android/internal/http/multipart/
Part.java 204 LOG.trace("enter sendStart(OutputStream out)");
217 LOG.trace("enter sendDispositionHeader(OutputStream out)");
230 LOG.trace("enter sendContentTypeHeader(OutputStream out)");
252 LOG.trace("enter sendTransferEncodingHeader(OutputStream out)");
267 LOG.trace("enter sendEndOfHeader(OutputStream out)");
293 LOG.trace("enter sendEnd(OutputStream out)");
306 LOG.trace("enter send(OutputStream out)");
326 LOG.trace("enter length()");
419 LOG.trace("getLengthOfParts(Parts[])");
  /external/protobuf/gtest/test/
gtest_output_test_golden_lin.txt 73 This failure is expected, and shouldn't have a trace.
76 This failure is expected, and should have a trace.
77 Google Test trace:
78 gtest_output_test_.cc:#: Expected trace
81 This failure is expected, and shouldn't have a trace.
89 Google Test trace:
95 Google Test trace:
104 Google Test trace:
110 Google Test trace:
119 Google Test trace
    [all...]
  /external/apache-http/src/org/apache/commons/logging/impl/
Jdk14Logger.java 86 // Hack (?) to get the stack trace.
242 * Is trace logging currently enabled?
261 * @see org.apache.commons.logging.Log#trace(Object)
263 public void trace(Object message) { method in class:Jdk14Logger
273 * @see org.apache.commons.logging.Log#trace(Object, Throwable)
275 public void trace(Object message, Throwable exception) { method in class:Jdk14Logger
  /frameworks/base/docs/html/tools/help/
proguard.jd 92 translates the obfuscated stack trace back to the original class, method, and member names.
154 <p>When your obfuscated code outputs a stack trace, the method names are obfuscated, which makes
160 or Mac OS X can convert an obfuscated stack trace to a readable one. It is located in the
175 you ensure that you can debug a problem if a user encounters a bug and submits an obfuscated stack trace.
182 containing a stack trace from the application that is currently published. You no longer have a way
183 of debugging the user's stack trace, because the <code>mapping.txt</code> file associated with the version
  /external/chromium-trace/trace-viewer/src/importer/
linux_perf_importer.js 6 * @fileoverview Imports text files in the Linux event trace format into the
11 * examples of the trace format.
15 * in a linux trace refers to a specific thread within a process. Within this
108 // Matches the trace record in 3.2 and later with the print-tgid option:
140 // Matches the default trace record in 3.2 and later (includes irq-info):
162 // Matches the default trace record pre-3.2:
187 // Some kernel trace events are manually classified in slices and
192 * Deduce the format of trace data. Linix kernels prior to 3.3 used one
194 * kernels can optionally trace the TGID.
214 * trace's body
    [all...]
  /system/core/liblog/
fake_log_device.c 39 #define TRACE(...) printf("fake_log_device: " __VA_ARGS__)
41 #define TRACE(...) ((void)0)
195 TRACE("Found ANDROID_LOG_TAGS='%s'\n", tags);
213 TRACE("ERROR: env tag too long (%d chars max)\n", kMaxTagLen-1);
247 TRACE("ERROR: garbage in tag env; expected whitespace\n");
248 TRACE(" env='%s'\n", tags);
255 TRACE("+++ global min prio %d\n", logState->globalMinPriority);
259 TRACE("+++ entry %d: %s:%d\n",
359 TRACE("LOG %d: %s %s", logPrio, tag, msg);
559 TRACE("%s: ignoring binary log\n", state->debugName)
    [all...]
  /external/jdiff/src/jdiff/
APIComparator.java 71 if (trace)
96 if (trace)
129 if (trace)
151 if (trace)
178 if (trace)
202 if (trace)
232 if (trace)
244 if (trace)
308 if (trace) {
348 if (trace)
933 private boolean trace = false; field in class:APIComparator
    [all...]

Completed in 493 milliseconds

<<21222324252627282930>>