/external/compiler-rt/lib/tsan/tests/unit/ |
D | tsan_stack_test.cc | 21 static void TestStackTrace(StackTraceTy *trace) { in TestStackTrace() argument 28 ObtainCurrentStack(&thr, 0, trace); in TestStackTrace() 29 EXPECT_EQ(0U, trace->size); in TestStackTrace() 31 ObtainCurrentStack(&thr, 42, trace); in TestStackTrace() 32 EXPECT_EQ(1U, trace->size); in TestStackTrace() 33 EXPECT_EQ(42U, trace->trace[0]); in TestStackTrace() 37 ObtainCurrentStack(&thr, 0, trace); in TestStackTrace() 38 EXPECT_EQ(2U, trace->size); in TestStackTrace() 39 EXPECT_EQ(100U, trace->trace[0]); in TestStackTrace() 40 EXPECT_EQ(101U, trace->trace[1]); in TestStackTrace() [all …]
|
/external/linux-tools-perf/src/tools/perf/ |
D | builtin-trace.c | 422 struct trace { struct 444 static bool trace__filter_duration(struct trace *trace, double t) in trace__filter_duration() argument 446 return t < (trace->duration_filter * NSEC_PER_MSEC); in trace__filter_duration() 449 static size_t trace__fprintf_tstamp(struct trace *trace, u64 tstamp, FILE *fp) in trace__fprintf_tstamp() argument 451 double ts = (double)(tstamp - trace->base_time) / NSEC_PER_MSEC; in trace__fprintf_tstamp() 463 static size_t trace__fprintf_entry_head(struct trace *trace, struct thread *thread, in trace__fprintf_entry_head() argument 466 size_t printed = trace__fprintf_tstamp(trace, tstamp, fp); in trace__fprintf_entry_head() 469 if (trace->multiple_threads) in trace__fprintf_entry_head() 475 static int trace__process_event(struct trace *trace, struct machine *machine, in trace__process_event() argument 482 color_fprintf(trace->output, PERF_COLOR_RED, in trace__process_event() [all …]
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_stacktrace_test.cc | 27 trace.Unwind(max_depth, start_pc, (uptr)&fake_stack[0], 0, fake_top, in TryFastUnwind() 38 BufferedStackTrace trace; member in __sanitizer::FastUnwindTest 78 EXPECT_EQ(6U, trace.size); in TEST_F() 79 EXPECT_EQ(start_pc, trace.trace[0]); in TEST_F() 81 EXPECT_EQ(PC(i*2 - 1), trace.trace[i]); in TEST_F() 92 EXPECT_EQ(4U, trace.size); in TEST_F() 93 EXPECT_EQ(start_pc, trace.trace[0]); in TEST_F() 95 EXPECT_EQ(PC(i*2 - 1), trace.trace[i]); in TEST_F() 105 EXPECT_EQ(4U, trace.size); in TEST_F() 106 EXPECT_EQ(start_pc, trace.trace[0]); in TEST_F() [all …]
|
D | sanitizer_stackdepot_test.cc | 25 EXPECT_NE(stack.trace, (uptr*)0); in TEST() 27 EXPECT_EQ(0, internal_memcmp(stack.trace, array, sizeof(array))); in TEST() 32 EXPECT_EQ((uptr*)0, stack.trace); in TEST() 38 EXPECT_EQ((uptr*)0, stack.trace); in TEST() 43 EXPECT_EQ((uptr*)0, stack.trace); in TEST() 53 EXPECT_NE(stack.trace, (uptr*)0); in TEST() 55 EXPECT_EQ(0, internal_memcmp(stack.trace, array, sizeof(array))); in TEST() 89 EXPECT_EQ(stack.trace, from_map.trace); in TEST()
|
/external/v8/test/mjsunit/ |
D | object-toprimitive.js | 39 var trace = []; variable 43 trace.push("vo"); 47 trace.push("ts"); 53 var ot = { get toString() { trace.push("gts"); 55 get valueOf() { trace.push("gvo"); 61 assertEquals(["gvo","vo"], trace); 63 trace = []; 66 assertEquals(["gts","ts"], trace); 68 trace = []; 72 assertEquals(["gvo", "vo", "gts", "ts"], trace); [all …]
|
/external/v8/tools/ |
D | gc-nvp-trace-processor.py | 59 trace = [] 64 info['i'] = len(trace) 65 trace.append(info) 66 return trace 173 def generate_datafile(datafile_name, trace, fields): argument 175 for line in trace: 180 def generate_script_and_datafile(plot, trace, datafile, output): argument 182 generate_datafile(datafile, trace, fields) 203 def plot_all(plots, trace, prefix): argument 209 script = generate_script_and_datafile(plot, trace, '~datafile', outfilename) [all …]
|
/external/wpa_supplicant_8/src/utils/ |
D | wpabuf.c | 33 struct wpabuf_trace *trace = wpabuf_get_trace(buf); in wpabuf_overflow() local 34 if (trace->magic != WPABUF_MAGIC) { in wpabuf_overflow() 36 trace->magic); in wpabuf_overflow() 51 struct wpabuf_trace *trace; in wpabuf_resize() local 60 trace = wpabuf_get_trace(buf); in wpabuf_resize() 61 if (trace->magic != WPABUF_MAGIC) { in wpabuf_resize() 63 trace->magic); in wpabuf_resize() 79 nbuf = os_realloc(trace, sizeof(struct wpabuf_trace) + in wpabuf_resize() 84 trace = (struct wpabuf_trace *) nbuf; in wpabuf_resize() 85 buf = (struct wpabuf *) (trace + 1); in wpabuf_resize() [all …]
|
/external/ltrace/testsuite/ltrace.minor/ |
D | Makefile.am | 23 time-record-ttt.exp trace-clone.c trace-clone.exp \ 24 trace-exec.exp trace-fork.c trace-fork.exp \ 25 trace-irelative.exp wchar.exp 29 time-record-tt time-record-ttt trace-clone trace-exec \ 30 trace-exec1 trace-fork libdl-simple
|
/external/compiler-rt/test/asan/TestCases/ |
D | debug_stacks.cc | 25 void *trace[100]; in main() local 28 num_frames = __asan_get_alloc_stack(mem, trace, num_frames, &thread_id); in main() 35 fprintf(stderr, "0x%lx\n", trace[0]); in main() 37 fprintf(stderr, "0x%lx\n", trace[1]); in main() 41 num_frames = __asan_get_free_stack(mem, trace, num_frames, &thread_id); in main() 48 fprintf(stderr, "0x%lx\n", trace[0]); in main() 50 fprintf(stderr, "0x%lx\n", trace[1]); in main()
|
/external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/ |
D | SubstituteLogger.java | 57 public void trace(String msg) { in trace() method in SubstituteLogger 58 delegate().trace(msg); in trace() 61 public void trace(String format, Object arg) { in trace() method in SubstituteLogger 62 delegate().trace(format, arg); in trace() 65 public void trace(String format, Object arg1, Object arg2) { in trace() method in SubstituteLogger 66 delegate().trace(format, arg1, arg2); in trace() 69 public void trace(String format, Object... arguments) { in trace() method in SubstituteLogger 70 delegate().trace(format, arguments); in trace() 73 public void trace(String msg, Throwable t) { in trace() method in SubstituteLogger 74 delegate().trace(msg, t); in trace() [all …]
|
D | Util.java | 57 Class<?>[] trace = SECURITY_MANAGER.getClassContext(); in getCallingClass() local 62 for (i = 0; i < trace.length; i++) { in getCallingClass() 63 if (thisClassName.equals(trace[i].getName())) in getCallingClass() 68 if (i >= trace.length || i + 2 >= trace.length) { in getCallingClass() 72 return trace[i + 2]; in getCallingClass()
|
D | MarkerIgnoringBase.java | 46 public void trace(Marker marker, String msg) { in trace() method in MarkerIgnoringBase 47 trace(msg); in trace() 50 public void trace(Marker marker, String format, Object arg) { in trace() method in MarkerIgnoringBase 51 trace(format, arg); in trace() 54 public void trace(Marker marker, String format, Object arg1, Object arg2) { in trace() method in MarkerIgnoringBase 55 trace(format, arg1, arg2); in trace() 58 public void trace(Marker marker, String format, Object... arguments) { in trace() method in MarkerIgnoringBase 59 trace(format, arguments); in trace() 62 public void trace(Marker marker, String msg, Throwable t) { in trace() method in MarkerIgnoringBase 63 trace(msg, t); in trace()
|
/external/chromium-trace/ |
D | README | 1 The trace-viewer directory contains code from: 3 http://trace-viewer.googlecode.com/svn/trunk/ 6 pulled. Changes should be made upstream and then pulled into the trace-viewer 12 into the git repository, and they get embedded in each trace HTML file that 15 To make development of trace-viewer code in the context of systrace easier, 17 trace-viewer development directory rather than embedding the JS and CSS in the 18 HTML. Do take advantage of this, you should check out the trace-viewer code in 19 a new directory (e.g. trace-viewer-dev) and use systrace as follows: 21 $ ./systrace.py --link-assets --asset-dir trace-viewer-dev
|
/external/llvm/docs/HistoricalNotes/ |
D | 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 the [all …]
|
/external/v8/src/base/ |
D | logging.cc | 24 void* trace[100]; in DumpBacktrace() local 25 int size = backtrace(trace, arraysize(trace)); in DumpBacktrace() 26 char** symbols = backtrace_symbols(trace, size); in DumpBacktrace() 56 bt_addr_t trace[100]; in DumpBacktrace() 57 int size = bt_get_backtrace(&acc, trace, arraysize(trace)); in DumpBacktrace() 62 bt_sprnf_addrs(&memmap, trace, size, const_cast<char*>("%a\n"), in DumpBacktrace()
|
/external/libnfc-nxp/Linux_x86/ |
D | phDal4Nfc_debug.h | 15 char trace[MAX_TRACE_BUFFER]; \ 16 snprintf(trace,MAX_TRACE_BUFFER,str,arg); \ 17 phOsalNfc_DbgString(trace); \ 23 char trace[MAX_TRACE_BUFFER]; \ 24 snprintf(trace,MAX_TRACE_BUFFER,"\n\t %s:",msg); \ 25 phOsalNfc_DbgString(trace); \
|
/external/slf4j/log4j-over-slf4j/compatibility/lib/ |
D | slf4j-api-1.4.2.jar | ... Marker)
org.slf4j.Marker marker
public void trace (org.slf4j.Marker, java.lang ... |
/external/slf4j/integration/lib/ |
D | slf4j-api-2.0.99.jar | ... Marker)
org.slf4j.Marker marker
public void trace (org.slf4j.Marker, java.lang ... |
D | slf4j-api-1.5.11.jar | ... Marker)
org.slf4j.Marker marker
public void trace (org.slf4j.Marker, java.lang ... |
D | slf4j-api-1.6.99.jar | ... Marker)
org.slf4j.Marker marker
public void trace (org.slf4j.Marker, java.lang ... |
D | slf4j-api-1.6.6.jar | ... Marker)
org.slf4j.Marker marker
public void trace (org.slf4j.Marker, java.lang ... |
/external/mesa3d/src/gallium/drivers/trace/ |
D | README | 6 This directory contains a Gallium3D trace debugger pipe driver. 16 GALLIUM_TRACE=tri.trace trivial/tri 18 which should create a tri.trace file, which is an XML file. You can view copying 19 trace.xsl to the same directory, and opening with a XSLT capable browser such as 24 src/gallium/tools/trace/dump.py tri.trace | less -R 36 You can integrate the trace pipe driver either inside the state tracker or the 43 The trace screen is then created by doing
|
D | SConscript | 5 trace = env.ConvenienceLibrary( 6 target = 'trace', 15 env.Alias('trace', trace) 17 Export('trace')
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_stacktrace.h | 42 const uptr *trace; member 51 StackTrace() : trace(nullptr), size(0), tag(0) {} in StackTrace() 52 StackTrace(const uptr *trace, u32 size) : trace(trace), size(size), tag(0) {} in StackTrace() 53 StackTrace(const uptr *trace, u32 size, u32 tag) in StackTrace() 54 : trace(trace), size(size), tag(tag) {} in StackTrace()
|
/external/jetty/lib/ |
D | slf4j-api-1.6.1.jar | ... Marker)
org.slf4j.Marker marker
public void trace (org.slf4j.Marker, java.lang ... |