Searched defs:trace (Results 1 - 25 of 224) sorted by relevance

123456789

/external/javasqlite/src/main/java/SQLite/
H A DTrace.java4 * Callback interface for SQLite's trace function.
10 * Callback to trace (ie log) one SQL statement.
15 public void trace(String stmt); method in interface:Trace
/external/chromium-trace/catapult/firefighter/default/
H A Dmain.py9 from handlers import trace namespace
13 ('/', trace.Trace),
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_stack_test.cc21 static void TestStackTrace(StackTraceTy *trace) { argument
28 ObtainCurrentStack(&thr, 0, trace);
29 EXPECT_EQ(0U, trace->size);
31 ObtainCurrentStack(&thr, 42, trace);
32 EXPECT_EQ(1U, trace->size);
33 EXPECT_EQ(42U, trace->trace[0]);
37 ObtainCurrentStack(&thr, 0, trace);
38 EXPECT_EQ(2U, trace->size);
39 EXPECT_EQ(100U, trace
50 TestTrim(StackTraceTy *trace) argument
76 VarSizeStackTrace trace; local
81 BufferedStackTrace trace; local
86 VarSizeStackTrace trace; local
91 BufferedStackTrace trace; local
[all...]
/external/compiler-rt/test/asan/TestCases/
H A Ddebug_stacks.cc1 // Check that the stack trace debugging API works and returns correct
28 void *trace[100]; local
31 num_frames = __asan_get_alloc_stack(mem, trace, num_frames, &thread_id);
38 fprintf(stderr, "0x%lx\n", trace[0]);
40 fprintf(stderr, "0x%lx\n", trace[1]);
44 num_frames = __asan_get_free_stack(mem, trace, num_frames, &thread_id);
51 fprintf(stderr, "0x%lx\n", trace[0]);
53 fprintf(stderr, "0x%lx\n", trace[1]);
/external/libunwind/src/unwind/
H A DBacktrace.c30 _Unwind_Backtrace (_Unwind_Trace_Fn trace, void *trace_parameter) argument
48 else if ((*trace) (&context, trace_parameter) != _URC_NO_REASON)
/external/chromium-trace/catapult/telemetry/telemetry/internal/results/
H A Dchart_json_output_formatter.py10 from telemetry.value import trace namespace
18 by chart and trace name. This function takes the key pieces of data needed to
47 # Dashboard handles the chart_name of trace values specially: it
48 # strips out the field with chart_name 'trace'. Hence in case trace
52 if value.tir_label and not isinstance(value, trace.TraceValue):
55 # This intentionally overwrites the trace if it already exists because this
H A Dcsv_pivot_table_output_formatter.py9 from telemetry.value import trace namespace
17 (optionally) data from --output-trace-tag. This format matches what
20 A trace tag (--output-trace-tag) can be used to tag each value, to allow
37 # Observe trace_tag. Use comma to split up the trace tag.
55 isinstance(value, trace.TraceValue)):
/external/chromium-trace/catapult/third_party/coverage/coverage/ctracer/
H A Dfiledisp.h16 PyObject * trace; member in struct:CFileDisposition
/external/jdiff/src/jdiff/
H A DOptions.java152 if (trace)
157 if (trace)
161 if (trace)
442 private static boolean trace = false; field in class:Options
H A DMergeChanges.java113 if (trace && ctorDiff.modifiersChange_ != null)
173 if (trace) {
251 if (trace) {
331 if (trace) {
341 private static boolean trace = false; field in class:MergeChanges
/external/mockito/cglib-and-asm/src/org/mockito/asm/util/
H A DTraceable.java51 void trace(StringBuffer buf, Map labelNames); method in interface:Traceable
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
H A Dtrace_event.py15 To use trace event, call trace_event_enable and start instrumenting your code:
18 if "--trace" in sys.argv:
19 trace_enable("myfile.trace")
30 trace_event records trace events to an in-memory buffer. If your application is
31 long running and you want to see the results of a trace before it exits, you can
40 trace_event is safe with regard to Python threads. Simply trace as you normally
41 would and each thread's timing will show up in the trace file.
88 def trace(name, **kwargs): function in function:trace_can_enable
89 return trace_event_impl.trace(name, **kwargs)
98 Add a clock sync event to the trace lo
141 def trace(name, **kwargs): function
[all...]
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
H A Ddecorators.py14 def trace(name, **kwargs): function
28 raise Exception("Can not trace generators.")
/external/junit/src/junit/framework/
H A DTestFailure.java45 public String trace() { method in class:TestFailure
/external/libchrome/base/debug/
H A Dstack_trace.cc17 StackTrace::StackTrace(const void* const* trace, size_t count) { argument
20 memcpy(trace_, trace, count * sizeof(trace_[0]));
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/utils/
H A DSerializationException.java22 private StringBuffer trace; field in class:SerializationException
52 if (trace == null) return super.getMessage();
56 buffer.append("Serialization trace:");
57 buffer.append(trace);
62 * can catch {@link SerializationException}, add trace information, and rethrow the exception. */
65 if (trace == null) trace = new StringBuffer(512);
66 trace.append('\n');
67 trace.append(info);
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
H A DSerializationException.java22 private StringBuffer trace; field in class:SerializationException
53 if (trace == null) return super.getMessage();
57 buffer.append("Serialization trace:");
58 buffer.append(trace);
63 * can catch {@link SerializationException}, add trace information, and rethrow the exception. */
66 if (trace == null) trace = new StringBuffer(512);
67 trace.append('\n');
68 trace.append(info);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
H A DDebug.java68 public static void trace(String format, Object... args) { method in class:Debug
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
H A DLogger.java70 * Delegates to {@link org.slf4j.Logger#trace(String)} method in SLF4J.
72 public void trace(Object message) { method in class:Logger
77 * Delegates to {@link org.slf4j.Logger#trace(String,Throwable)}
80 public void trace(Object message, Throwable t) { method in class:Logger
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/cal10n/
H A DLocLogger.java71 public void trace(Enum<?> key, Object... args) { method in class:LocLogger
81 logger.trace(LOCALIZED, translatedMsg, mpo);
/external/v8/src/base/
H A Dlogging.cc56 void* trace[100]; local
57 int size = backtrace(trace, arraysize(trace));
58 OS::PrintError("\n==== C stack trace ===============================\n\n");
66 if (!dladdr(trace[i], &info) || !info.dli_sname) {
67 OS::PrintError("%p\n", trace[i]);
84 bt_addr_t trace[100];
85 int size = bt_get_backtrace(&acc, trace, arraysize(trace));
86 OS::PrintError("\n==== C stack trace
[all...]
/external/v8/test/mjsunit/
H A Darray-concat.js239 var trace = []; variable
241 function mkGetter(i) { return function() { trace.push(i); }; }
250 assertEquals(expectedTrace, trace);
H A Dobject-toprimitive.js39 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/apache-http/src/org/apache/commons/logging/
H A DLog.java28 * <li>trace (the least serious)</li>
122 * <p> Is trace logging currently enabled? </p>
126 * when the log level is more than trace. </p>
128 * @return true if trace is enabled in the underlying logger.
149 * <p> Log a message with trace log level. </p>
153 public void trace(Object message); method in interface:Log
157 * <p> Log an error with trace log level. </p>
162 public void trace(Object message, Throwable t); method in interface:Log
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stacktrace_test.cc27 trace.Unwind(max_depth, start_pc, (uptr)&fake_stack[0], 0, fake_top,
38 BufferedStackTrace trace; member in class:__sanitizer::FastUnwindTest
59 // Mark the last fp point back up to terminate the stack trace.
78 EXPECT_EQ(6U, trace.size);
79 EXPECT_EQ(start_pc, trace.trace[0]);
81 EXPECT_EQ(PC(i*2 - 1), trace.trace[i]);
92 EXPECT_EQ(4U, trace.size);
93 EXPECT_EQ(start_pc, trace
[all...]

Completed in 3359 milliseconds

123456789