HomeSort by relevance Sort by last modified time
    Searched full:trace (Results 926 - 950 of 3884) sorted by null

<<31323334353637383940>>

  /frameworks/base/core/java/android/content/
AbstractThreadedSyncAdapter.java 24 import android.os.Trace;
246 // Trace this sync instance. Note, conceptually this should be in
247 // SyncStorageEngine.insertStartSyncEvent(), but the trace functions require unique
249 Trace.traceBegin(Trace.TRACE_TAG_SYNC_MANAGER, mAuthority);
265 Trace.traceEnd(Trace.TRACE_TAG_SYNC_MANAGER);
  /libnativehelper/
JNIHelp.cpp 149 * Returns an exception (with stack trace) as a string.
261 std::string trace(jniGetStackTrace(env, exception));
262 __android_log_write(priority, tag, trace.c_str());
280 std::string trace; local
281 if (!getStackTrace(env, exception, trace)) {
283 getExceptionSummary(env, exception, trace);
290 return trace;
  /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/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");
  /development/scripts/
stack_core.py 24 """Print back trace."""
27 print "Stack Trace:"
69 # Note that both trace and value line matching allow for variable amounts of
74 # Examples of matched trace lines include lines from tombstone files like:
147 # display "a -> b -> c" in the stack trace instead of just "a -> c"
  /external/chromium_org/extensions/browser/
extension_error.cc 187 "\n Stack Trace: ";
203 // Only look at the first frame of a stack trace to save time and group
205 // of displaying an old and inaccurate stack trace.
226 // trace. (For instance, in a browser action error, the source is the page -
228 // Make the source match the stack trace, since that is more likely the cause
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
tr_dump.c 31 * Trace dumping functions.
33 * For now we just use standard XML for dumping the trace calls, as this is
221 trace_dump_writes("</trace>\n");
244 trace_dump_writes("<?xml-stylesheet type='text/xsl' href='trace.xsl'?>\n");
245 trace_dump_writes("<trace version='0.1'>\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/mesa3d/src/gallium/drivers/trace/
tr_dump.c 31 * Trace dumping functions.
33 * For now we just use standard XML for dumping the trace calls, as this is
221 trace_dump_writes("</trace>\n");
244 trace_dump_writes("<?xml-stylesheet type='text/xsl' href='trace.xsl'?>\n");
245 trace_dump_writes("<trace version='0.1'>\n");
  /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/chromium_org/v8/tools/
ll_prof.py 55 This will produce a binary trace file (perf.data) that %prog can analyse.
77 $ %prog --log=foo.log --snapshot-log=snap-foo.log --trace=foo.data --snapshot
502 """Descriptor of a structure in the binary trace log."""
520 def Read(self, trace, offset):
521 return self.ctype.from_buffer(trace, offset)
622 """Perf (linux-2.6/tools/perf) trace file reader."""
628 self.trace = mmap.mmap(self.trace_file.fileno(), 0, mmap.MAP_PRIVATE)
629 self.trace_header = TRACE_HEADER_DESC.Read(self.trace, 0)
631 print >>sys.stderr, "Warning: unsupported trace header magic"
634 assert self.limit <= self.trace.size(),
    [all...]
  /external/chromium_org/base/debug/
trace_event_impl.h 27 // Older style trace macros with explicit id and extra data
241 // TraceResultBuffer collects and converts trace fragments returned by TraceLog
249 // JSON trace output.
272 // Call AddFragment 0 or more times to add trace fragments from TraceLog.
357 // Options determines how the trace buffer stores data.
359 // Record until the trace buffer is full.
362 // Record until the user ends the trace. The trace buffer is a fixed size
399 // Enables normal tracing (recording trace events in the trace buffer)
    [all...]
  /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 
  /cts/tests/tests/media/src/android/media/cts/
PresentationSyncTest.java 23 import android.os.Trace;
148 Trace.beginSection("TEST BEGIN");
150 Trace.endSection();
160 Trace.beginSection("swapbuf " + frameNum);
162 Trace.endSection();
294 Trace.beginSection("TEST BEGIN fd=" + frameDelay);
296 Trace.endSection();
360 Trace.beginSection("swapbuf " + mCurFrame);
362 Trace.endSection();
  /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[])");
  /libcore/dalvik/src/main/java/dalvik/system/
VMDebug.java 34 * startAllocCounting to the trace key file.
147 * trace files.
152 * the default is /sdcard/dmtrace.trace.</p>
154 * @param traceFileName name to give the trace file
166 * FileDescriptor in which the trace is written. The file name is also
212 * Starts sending Dalvik method trace info to the emulator.
217 * Stops sending Dalvik method trace info to the emulator.
330 * Crashes the VM. Seriously. Dumps the interpreter stack trace for
332 * stack trace. Useful for figuring out how you got somewhere when
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
AttachmentDrawable.java 25 import com.android.bitmap.Trace;
145 Trace.beginSection("set image");
172 Trace.endSection();
188 Trace.endSection();
352 Trace.beginSection("decode");
367 Trace.endSection();
379 Trace.endSection();
390 Trace.beginSection("set load state");
418 Trace.endSection();
  /external/chromium_org/content/public/common/
content_switches.cc 456 // Enables TRACE for GL calls in the renderer.
    [all...]

Completed in 1292 milliseconds

<<31323334353637383940>>