/sdk/emulator/qtools/ |
post_trace.cpp | 24 TraceReaderBase *trace = new TraceReaderBase; local 25 trace->SetPostProcessing(true); 26 trace->Open(trace_filename); 34 if (trace->ReadStatic(&static_rec)) 44 trace->ReadStaticInsns(static_rec.num_insns, insns); 46 trace->Close(); 52 trace->Open(trace_filename); 54 trace->ReadStatic(&blocks[ii].bb); 58 trace->ReadStaticInsns(num_insns, blocks[ii].insns); 72 // Write the changes back to the trace fil [all...] |
exc_dump.cpp | 13 TraceReaderBase *trace = new TraceReaderBase; local 14 trace->Open(trace_filename); 21 if (trace->ReadExc(&time, &pc, &recnum, &target_pc, &bb_num,
|
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;
|
/system/core/rootdir/ |
init.trace.rc | 1 ## Permissions to allow system-wide tracing to the kernel trace buffer. 5 # Allow writing to the kernel trace log. 31 # Allow only the shell group to read and truncate the kernel trace. 32 chown root shell /sys/kernel/debug/tracing/trace 33 chmod 0660 /sys/kernel/debug/tracing/trace
|
/external/llvm/docs/HistoricalNotes/ |
2003-06-25-Reoptimizer1.txt | 56 together to form our trace. But we do not allow more than 5 paths; if 60 exit edge from the hot trace is less than 10% of the number of 87 When we finally generate an optimized trace we first copy the code 88 into the trace cache. This leaves us with 3 copies of the code: the 89 original code, the instrumented code, and the optimized trace. The 90 optimized trace does not have instrumentation. The original code and 91 the instrumented code are modified to have a branch to the trace 97 trace cache. Then we instrument that code. The process is similar for 98 generating the final optimized trace; we copy the same basic blocks 105 original code, trace, and instrumented code. So we have to keep th [all...] |
/frameworks/base/media/libdrm/mobile1/src/objmng/ |
drm_file.c | 69 Trace("convertFilename '%.*S' too long", strLength, strData); 92 Trace("getFileStat: %.*S", nameLen, name); 96 Trace("getFileStat: bad filename"); 100 Trace("getFileStat %s: stat() errno=%d", tmpPathBuf1, errno); 209 Trace("DRM_file_startup"); 227 Trace("DRM_file_listOpen: %.*S", prefixLen, prefix); 231 Trace("DRM_file_listOpen: bad filename"); 248 sep = " <empty>"; /* trace will show sep+1 */ 261 Trace("DRM_file_listOpen: opendir %s: errno=%d", tmpPathBuf1, errno); 265 Trace("DRM_file_listOpen: dir %s, filter %s", tmpPathBuf1, sep+1) [all...] |
/external/dropbear/ |
common-channel.c | 84 TRACE(("enter chancleanup")) 87 TRACE(("channel %d closing", i)) 92 TRACE(("leave chancleanup")) 106 TRACE(("enter newchannel")) 118 TRACE(("leave newchannel: max chans reached")) 162 TRACE(("leave newchannel")) 207 TRACE(("send normal readfd")) 214 TRACE(("send normal errfd")) 264 TRACE(("check_close: writefd %d, readfd %d, errfd %d, sent_close %d, recv_close %d", 267 TRACE(("writebuf size %d extrabuf size %d" [all...] |
svr-tcpfwd.c | 73 TRACE(("enter recv_msg_global_request_remotetcp")) 76 TRACE(("leave recv_msg_global_request_remotetcp: remote tcp forwarding disabled")) 84 TRACE(("name len is wrong: %d", namelen)) 93 TRACE(("reqname isn't tcpip-forward: '%s'", reqname)) 107 TRACE(("leave recv_msg_global_request")) 146 TRACE(("enter cancelremotetcp")) 150 TRACE(("addr len too long: %d", addrlen)) 168 TRACE(("leave cancelremotetcp")) 180 TRACE(("enter remotetcpreq")) 184 TRACE(("addr len too long: %d", addrlen) [all...] |
/external/linux-tools-perf/scripts/perl/Perf-Trace-Util/ |
Makefile.PL | 6 NAME => 'Perf::Trace::Context', 7 VERSION_FROM => 'lib/Perf/Trace/Context.pm', # finds $VERSION 10 (ABSTRACT_FROM => 'lib/Perf/Trace/Context.pm', # retrieve abstract from module
|
/external/linux-tools-perf/Documentation/ |
perf-sched.txt | 6 perf-sched - Tool to trace/measure scheduler properties (latencies) 11 'perf sched' {record|latency|map|replay|trace} 23 'perf sched trace' to see a detailed trace of the workload that 28 that mimic the workload based on the events in the trace. These 50 --dump-raw-trace=::
|
/external/webrtc/src/system_wrappers/source/ |
trace_unittest.cc | 11 #include "system_wrappers/interface/trace.h" 18 using webrtc::Trace; 25 Trace::CreateTrace(); 28 Trace::SetTraceFile(trace_file.c_str()); 29 Trace::SetLevelFilter(webrtc::kTraceAll); 32 Trace::ReturnTrace();
|
/external/wpa_supplicant_8/src/utils/ |
wpabuf.c | 12 #include "trace.h" 33 struct wpabuf_trace *trace = wpabuf_get_trace(buf); local 34 if (trace->magic != WPABUF_MAGIC) { 36 trace->magic); 51 struct wpabuf_trace *trace; local 60 trace = wpabuf_get_trace(buf); 61 if (trace->magic != WPABUF_MAGIC) { 63 trace->magic); 79 nbuf = os_realloc(trace, sizeof(struct wpabuf_trace) + 84 trace = (struct wpabuf_trace *) nbuf 116 struct wpabuf_trace *trace = os_zalloc(sizeof(struct wpabuf_trace) + local 138 struct wpabuf_trace *trace = os_zalloc(sizeof(struct wpabuf_trace) + local 185 struct wpabuf_trace *trace; local [all...] |
/external/eigen/doc/examples/ |
tut_arithmetic_redux_basic.cpp | 15 cout << "Here is mat.trace(): " << mat.trace() << endl;
|
/external/webkit/Source/ThirdParty/ANGLE/src/common/ |
debug.h | 18 void trace(const char *format, ...); 21 // A macro to output a trace of a function call and its arguments to the debugging log 23 #define TRACE(message, ...) gl::trace("trace: %s"message"\n", __FUNCTION__, __VA_ARGS__) 25 #define TRACE(...) ((void)0) 29 #define FIXME(message, ...) gl::trace("fixme: %s"message"\n", __FUNCTION__, __VA_ARGS__) 32 #define ERR(message, ...) gl::trace("err: %s"message"\n", __FUNCTION__, __VA_ARGS__)
|
/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. 87 // 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. */
|
/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/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. 79 #error ATRACE_TAG must be defined to be one of the tags defined in cutils/trace.h 84 * Maximum size of a message that can be logged to the trace buffer. 86 * Names should be kept short to get the most use of the trace buffer. 91 * Opens the trace file for writing and reads the property for initial tags. 92 * The atrace.tags.enableflags property sets the tags to trace. 94 * 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
|