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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/tools/telemetry/telemetry/core/
trace_result.py 10 """Serializes the trace result to a file-like object"""
14 """Parses the trace result into a timeline model for in-memory
  /external/eigen/doc/examples/
tut_arithmetic_redux_basic.cpp 15 cout << "Here is mat.trace(): " << mat.trace() << endl;
  /external/mesa3d/src/gallium/auxiliary/target-helpers/
inline_debug_helper.h 10 * one or more debug driver: rbug, trace.
16 #include "trace/tr_public.h"
  /frameworks/base/core/java/android/os/
Trace.java 22 * Writes trace events to the system trace buffer. These trace events can be
29 public final class Trace {
31 * Writes trace events to the kernel trace buffer. These trace events can be
35 private static final String TAG = "Trace";
37 // These tags must be kept in sync with system/core/include/cutils/trace.h.
89 // We configure two separate change callbacks, one in Trace.cpp and one here. Th
    [all...]
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_context.h 50 /** GL Trace Context info associated with each EGLContext */
54 GLTraceState *mState; /* parent GL Trace state (for per process GL Trace State Info) */
60 BufferedOutputStream *mBufferedOutputStream; /* stream where trace info is sent */
86 /** Per process trace state. */
93 certain trace calls. */
111 /* Methods to set trace options. */
116 /* Methods to retrieve trace options. */
  /sdk/emulator/qtools/
q2g.cpp 44 TraceReader<symbol> *trace = new TraceReader<symbol>; local
45 trace->Open(qemu_trace_file);
46 trace->ReadKernelSymbols(elf_file);
47 trace->SetRoot(root);
48 TraceHeader *qheader = trace->GetHeader();
54 if (GetNextValidEvent(trace, &event, &ignored, &sym))
95 eof = GetNextValidEvent(trace, &event, &ignored, &sym);
106 delete trace;
  /art/runtime/
trace.cc 17 #include "trace.h"
90 method_trace_(Trace::AllocStackTrace()) {}
101 // Returns a stack trace where the topmost frame corresponds with the first element of the vector.
119 ProfilerClockSource Trace::default_clock_source_ = kProfilerClockSourceDual;
121 ProfilerClockSource Trace::default_clock_source_ = kProfilerClockSourceWall;
124 Trace* volatile Trace::the_trace_ = NULL;
125 pthread_t Trace::sampling_pthread_ = 0U;
126 UniquePtr<std::vector<mirror::ArtMethod*> > Trace::temp_stack_trace_;
143 std::vector<mirror::ArtMethod*>* Trace::AllocStackTrace()
    [all...]
  /external/chromium_org/tools/tcmalloc/
print-live-objects.py 34 trace = { "size": int(matches.group(1)),
37 result.append(trace)
43 for trace in traces:
44 for frame in trace["frames"]:
61 for trace in traces:
63 for frame in trace["frames"]:
65 trace["frames"] = frames
83 for trace in sorted(traces, key=lambda x: -x["size"]):
84 print "Leak of %d bytes at address %s" % (trace["size"], trace["address"]
    [all...]
  /external/webrtc/src/system_wrappers/interface/
trace.h 12 // Note: All log messages will be written to the same trace file.
21 #define WEBRTC_TRACE Trace::Add
24 class Trace
28 // Increments the reference count to the trace.
30 // Decrements the reference count to the trace.
32 // Note: any instance that writes to the trace file should increment and
36 // Specifies what type of messages should be written to the trace file. The
42 // Returns what type of messages are written to the trace file.
51 // Returns the name of the file that the trace is currently writing to.
54 // Registers callback to receive trace messages. TODO (hellner
    [all...]
  /frameworks/native/opengl/libs/GLES_trace/
DESIGN.txt 8 enabled. Currently, the shell properties "debug.egl.trace" and "debug.egl.debug_proc" together
10 calls GLTrace_start() to start the trace server.
13 specific gl_hooks structure to point to the trace implementation. From this point on, every
14 GLES call is redirected to the trace implementation.
19 trace implementation.
21 For EGL calls, the trace library provides a bunch of functions that must be explicitly called
35 real GL implementation, and we need to switch them to point to the trace implementation.
42 - switch the gl hooks to point to the trace implementation.
43 - call trace eglMakeCurrent to indicate that there is now a new context that is current.
45 This switches the hooks to point to the trace implementation only for the current context
    [all...]
  /frameworks/base/docs/html/tools/debugging/
debugging-tracing.jd 21 <li><a href="#creatingtracefiles">Creating Trace Files</a></li>
23 <li><a href="#copyingfiles">Copying Trace Files to a Host Machine</a></li>
25 <li><a href="#runningtraceview">Viewing Trace Files in Traceview</a></li>
40 <p>When you have a trace log file (generated by adding tracing code to your application or by DDMS),
89 <h2 id="creatingtracefiles">Creating Trace Files</h2>
91 <p>To use Traceview, you need to generate log files containing the trace information you want to
94 <p>There are two ways to generate trace logs:</p>
97 methods to start and stop logging of trace information to disk. This method is very precise because
98 you can specify in your code exactly where to start and stop logging trace data.</li>
99 <li>Use the method profiling feature of DDMS to generate trace logs. This method is les
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
XF86dri.c 91 #define TRACE(msg) fprintf(stderr,"XF86DRI%s\n", msg);
93 #define TRACE(msg)
102 TRACE("QueryExtension...");
106 TRACE("QueryExtension... return True");
110 TRACE("QueryExtension... return False");
123 TRACE("QueryVersion...");
133 TRACE("QueryVersion... return False");
141 TRACE("QueryVersion... return True");
153 TRACE("QueryDirectRenderingCapable...");
164 TRACE("QueryDirectRenderingCapable... return False")
    [all...]
  /external/chromium_org/v8/tools/
gc-nvp-trace-processor.py 33 # run with flags --trace-gc --trace-gc-nvp. Relies on gnuplot for actual
36 # Usage: gc-nvp-trace-processor.py <GC-trace-filename>
59 trace = []
64 info['i'] = len(trace)
65 trace.append(info)
66 return trace
173 def generate_datafile(datafile_name, trace, fields):
175 for line in trace
    [all...]
  /external/mesa3d/src/glx/
XF86dri.c 91 #define TRACE(msg) fprintf(stderr,"XF86DRI%s\n", msg);
93 #define TRACE(msg)
102 TRACE("QueryExtension...");
106 TRACE("QueryExtension... return True");
110 TRACE("QueryExtension... return False");
123 TRACE("QueryVersion...");
133 TRACE("QueryVersion... return False");
141 TRACE("QueryVersion... return True");
153 TRACE("QueryDirectRenderingCapable...");
164 TRACE("QueryDirectRenderingCapable... return False")
    [all...]
  /external/v8/tools/
gc-nvp-trace-processor.py 33 # run with flags --trace-gc --trace-gc-nvp. Relies on gnuplot for actual
36 # Usage: gc-nvp-trace-processor.py <GC-trace-filename>
59 trace = []
64 info['i'] = len(trace)
65 trace.append(info)
66 return trace
173 def generate_datafile(datafile_name, trace, fields):
175 for line in trace
    [all...]
  /system/core/include/cutils/
trace.h 36 * The ATRACE_TAG macro can be defined before including this header to trace
38 * following ATRACE_TAG_* macros. The trace tag is used to filter tracing in
43 * has a performance cost even when the trace is not being recorded. Defining
51 * Keep these in sync with frameworks/base/core/java/android/os/Trace.java.
80 #error ATRACE_TAG must be defined to be one of the tags defined in cutils/trace.h
85 * Maximum size of a message that can be logged to the trace buffer.
87 * Names should be kept short to get the most use of the trace buffer.
92 * Opens the trace file for writing and reads the property for initial tags.
93 * The atrace.tags.enableflags property sets the tags to trace.
95 * trace function will cause it to be run safely
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t044trace.g 1 // @@ANTLR Tool Options@@: -trace
t049treeparserhWalker.g 1 // @@ANTLR Tool Options@@: -trace
t051treeRewriteASTaaWalker.g 1 // @@ANTLR Tool Options@@: -trace
t051treeRewriteASTabWalker.g 1 // @@ANTLR Tool Options@@: -trace
t051treeRewriteASTnWalker.g 1 // @@ANTLR Tool Options@@: -trace
t051treeRewriteASTtWalker.g 1 // @@ANTLR Tool Options@@: -trace
t051treeRewriteASTvWalker.g 1 // @@ANTLR Tool Options@@: -trace
t051treeRewriteASTwWalker.g 1 // @@ANTLR Tool Options@@: -trace
t051treeRewriteASTxWalker.g 1 // @@ANTLR Tool Options@@: -trace

Completed in 795 milliseconds

1 2 3 4 5 67 8 91011>>