HomeSort by relevance Sort by last modified time
    Searched refs:trace (Results 76 - 100 of 1247) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/JavaExtensions/
ExceptionExtensions.cs 43 string trace = e.StackTrace ?? string.Empty;
44 foreach ( string line in trace.Split( '\n', '\r' ) )
  /external/autotest/client/common_lib/perf_expectations/
expectation_checker.py 20 """Catch the error when an expectation is not defined for a trace."""
87 def compare_one_trace(self, trace, trace_perf_value):
88 """Compare a performance value of a trace with the expectation.
90 @param trace: the name of the trace
91 @param trace_perf_value: the performance value of the trace.
95 or None if expectation for trace is not defined.
97 perf_key = '/'.join([self._board, self._test_name, trace])
99 raise TraceNotFound('Expectation for trace %s not defined' % trace)
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace.h 40 const uptr *trace; member in struct:__sanitizer::StackTrace
49 StackTrace() : trace(nullptr), size(0), tag(0) {}
50 StackTrace(const uptr *trace, u32 size) : trace(trace), size(size), tag(0) {}
51 StackTrace(const uptr *trace, u32 size, u32 tag)
52 : trace(trace), size(size), tag(tag) {}
115 // Use this macro if you want to print stack trace with the caller
127 // Use this macro if you want to print stack trace with the curren
    [all...]
  /external/libchrome/base/debug/
stack_trace.cc 17 StackTrace::StackTrace(const void* const* trace, size_t count) {
20 memcpy(trace_, trace, count * sizeof(trace_[0]));
  /external/slf4j/log4j-over-slf4j/src/test/java/org/apache/log4j/
Trivial.java 35 l.trace("t");
43 l.trace("t", e);
  /external/strace/tests/
aio.test 10 run_strace -a14 -e trace=$syscalls $args > "$OUT"
clock_nanosleep.test 10 run_strace -e trace=$syscalls $args > "$OUT"
clock_xettime.test 10 run_strace -a36 -e trace=$syscalls $args > "$OUT"
nanosleep.test 10 run_strace -a20 -e trace=$syscalls $args > "$OUT"
restart_syscall.test 10 run_strace -a20 -e trace=$syscalls $args > "$OUT"
timer_xettime.test 10 run_strace -e trace=$syscalls $args > "$OUT"
timerfd_xettime.test 10 run_strace -e trace=$syscalls $args > "$OUT"
xettimeofday.test 10 run_strace -a20 -e trace=$syscalls $args > "$OUT"
  /external/webrtc/webrtc/test/testsupport/
perf_test.h 27 // "_browser"; |trace| is a description of the particular data point, e.g.
34 // string to specify a particular graph and the |trace| to identify a trace
38 const std::string& trace,
46 const std::string& trace,
55 const std::string& trace,
63 const std::string& trace,
73 const std::string& trace,
81 const std::string& trace,
92 const std::string& trace,
    [all...]
  /external/chromium-trace/catapult/systrace/profile_chrome/
main.py 74 'chromium.org/developers/how-tos/trace-event-'
80 'download the resulting trace.', metavar='N',
87 cont_options.add_option('--ring-buffer', help='Use the trace buffer as a '
89 'instead of appending events into one long trace.',
96 'e.g., "*", "cat1*,-cat1a". Omit this option to trace '
102 chrome_opts.add_option('--trace-cc',
103 help='Deprecated, use --trace-frame-viewer.',
105 chrome_opts.add_option('--trace-frame-viewer',
106 help='Enable enough trace categories for '
108 chrome_opts.add_option('--trace-ubercompositor'
    [all...]
  /art/runtime/base/
systrace.h 21 #include <cutils/trace.h>
23 #include <utils/Trace.h>
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
ExceptionExtensions.cs 48 StackTrace trace = new StackTrace(e, true);
49 StackFrame[] frames = trace.GetFrames();
51 // don't include this helper function in the trace
75 string trace = e.StackTrace ?? string.Empty;
76 foreach (string line in trace.Split('\n', '\r')) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ExceptionExtensions.cs 53 StackTrace trace = new StackTrace( e, true );
54 StackFrame[] frames = trace.GetFrames();
57 // don't include this helper function in the trace
84 string trace = e.StackTrace ?? string.Empty;
85 foreach ( string line in trace.Split( '\n', '\r' ) )
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
decorators_test.py 18 self.assertRaises(Exception, lambda: decorators.trace(1))
19 self.assertRaises(Exception, lambda: decorators.trace(""))
20 self.assertRaises(Exception, lambda: decorators.trace([]))
23 self.assertRaises(Exception, lambda: decorators.trace(generator))
  /external/chromium-trace/catapult/third_party/coverage/coverage/ctracer/
filedisp.h 16 PyObject * trace; member in struct:CFileDisposition
  /external/junit/src/junit/runner/
TestRunListener.java 19 public void testFailed(int status, String testName, String trace);
  /external/mesa3d/src/gallium/drivers/trace/
Makefile 4 LIBNAME = trace
  /external/slf4j/jcl-over-slf4j/src/test/java/org/apache/commons/logging/
InvokeJCLTest.java 47 log.trace(null);
48 log.trace("trace message");
65 log.trace(null, e);
66 log.trace("trace message", e);
  /hardware/qcom/camera/QCamera2/stack/mm-jpeg-interface/inc/
mm_jpeg_dbg.h 43 #include <cutils/trace.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/list_update_map_/
trace_fn_imps.hpp 46 trace() const function in class:PB_DS_CLASS_C_DEC

Completed in 925 milliseconds

1 2 34 5 6 7 8 91011>>