HomeSort by relevance Sort by last modified time
    Searched refs:traces (Results 1 - 25 of 106) sorted by null

1 2 3 4 5

  /tools/loganalysis/tests/src/com/android/loganalysis/parser/
TracesParserTest.java 102 TracesItem traces = new TracesParser().parse(lines); local
103 assertEquals(2887, traces.getPid().intValue());
104 assertEquals("com.android.package", traces.getApp());
105 assertEquals(ArrayUtil.join("\n", expectedStack), traces.getStack());
139 TracesItem traces = new TracesParser().parse(lines); local
140 assertEquals(2887, traces.getPid().intValue());
141 assertEquals("com.android.package", traces.getApp());
142 assertEquals(ArrayUtil.join("\n", expectedStack), traces.getStack());
162 traces = new TracesParser().parse(lines);
163 assertEquals(2887, traces.getPid().intValue())
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
rule-tracing.rb 16 @traces = []
20 attr_accessor :stack, :traces
23 @traces << ">#{rule_name}"
27 @traces << "<#{rule_name}"
33 @traces = []
37 attr_accessor :stack, :traces
40 @traces << ">#{rule_name}"
44 @traces << "<#{rule_name}"
62 lexer.traces.should == [
68 parser.traces.should == [
    [all...]
  /art/tools/dmtracedump/
dmtracedump.pl 4 @traces = grep { /.*\.dmtrace\.data/ } readdir(DIR);
6 foreach (@traces)
  /tools/loganalysis/src/com/android/loganalysis/parser/
TracesParser.java 25 * A {@link IParser} to parse Android traces files.
28 * stack from {@code /data/anr/traces.txt} which can be used to give some context about the ANR. If
56 TracesItem traces = new TracesItem(); local
63 traces.setPid(Integer.parseInt(m.group(1)));
67 traces.setApp(m.group(1));
79 traces.setStack(stack.toString().trim());
80 return traces;
86 traces.setStack(stack.toString().trim());
87 return traces;
BugreportParser.java 57 private static final String ANR_TRACES_SECTION_REGEX = "------ VM TRACES AT LAST ANR .*";
223 TracesItem traces = (TracesItem) getSection(mTracesParser); local
224 if (traces != null && traces.getApp() != null && traces.getStack() != null &&
226 addAnrTrace(mBugreport.getSystemLog().getAnrs(), traces.getApp(),
227 traces.getStack());
MonkeyLogParser.java 82 private static final Pattern TRACES_START = Pattern.compile("anr traces:");
83 private static final Pattern TRACES_STOP = Pattern.compile("// anr traces status was \\d+");
176 TracesItem traces = new TracesParser().parse(mBlock); local
179 if (traces != null && traces.getApp() != null && traces.getStack() != null &&
181 traces.getApp().equals(mMonkeyLog.getCrash().getApp())) {
182 ((AnrItem) mMonkeyLog.getCrash()).setTrace(traces.getStack());
  /external/antlr/antlr-3.4/runtime/Python/tests/
t044trace.py 16 self.traces = []
20 self.traces.append('>'+ruleName)
24 self.traces.append('<'+ruleName)
39 self.traces = []
43 self.traces.append('>'+ruleName)
47 self.traces.append('<'+ruleName)
68 lexer.traces,
76 parser.traces,
t047treeparser.py 13 self.traces = []
17 self.traces.append('>'+ruleName)
21 self.traces.append('<'+ruleName)
73 walker.traces,
t052import.py 31 self.traces.append('>'+ruleName)
35 self.traces.append('<'+ruleName)
58 self.traces.append('>'+ruleName)
62 self.traces.append('<'+ruleName)
    [all...]
t053hetero.py 22 self.traces.append('>'+ruleName)
26 self.traces.append('<'+ruleName)
49 self.traces.append('>'+ruleName)
53 self.traces.append('<'+ruleName)
t049treeparser.py 21 self.traces.append('>'+ruleName)
25 self.traces.append('<'+ruleName)
  /art/test/063-process-manager/src/
Main.java 26 Map<Thread, StackTraceElement[]> traces = Thread.getAllStackTraces(); local
30 traces.entrySet()) {
  /external/chromium-trace/catapult/telemetry/telemetry/timeline/
surface_flinger_importer.py 13 traces = trace_data.GetTracesFor(trace_data_module.SURFACE_FLINGER_PART)
14 assert len(traces) == 1
15 self._events = traces[0]
inspector_importer.py 17 traces = trace_data.GetTracesFor(
19 assert len(traces) == 1
20 self._events = traces[0]
trace_data.py 94 """ TraceData holds a collection of traces from multiple sources.
96 A TraceData can have multiple active parts. Each part represents traces
131 """ Return the list of traces for |part| in string or dictionary forms.
133 Note: since this API return the traces that can be directly accessed in
143 # Since this API return the traces in memory form, and since the memory
146 # all traces for part of form TraceFileHandle to the JSON form.
154 traces = self.GetTracesFor(part)
155 assert len(traces) == 1
156 return traces[0]
159 """ Remove all the traces that this has handles to
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
tracing_backend_unittest.py 125 traces = []
127 traces.append(d)
128 return traces
143 traces = self._GetRawChromeTracesFor(trace_data_builder)
144 self.assertEqual(2, len(traces))
145 self.assertEqual(1, len(traces[0].get('traceEvents', [])))
146 self.assertEqual(1, len(traces[1].get('traceEvents', [])))
158 traces = self._GetRawChromeTracesFor(trace_data_builder)
159 self.assertEqual(2, len(traces))
160 self.assertEqual(1, len(traces[0].get('traceEvents', []))
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_report.cc 434 static bool HandleRacyStacks(ThreadState *thr, VarSizeStackTrace traces[2],
443 hash.hash[0] = md5_hash(traces[0].trace, traces[0].size * sizeof(uptr));
444 hash.hash[1] = md5_hash(traces[1].trace, traces[1].size * sizeof(uptr));
480 static void AddRacyStacks(ThreadState *thr, VarSizeStackTrace traces[2],
485 hash.hash[0] = md5_hash(traces[0].trace, traces[0].size * sizeof(uptr));
486 hash.hash[1] = md5_hash(traces[1].trace, traces[1].size * sizeof(uptr))
626 VarSizeStackTrace traces[kMop]; local
    [all...]
  /external/minijail/tools/
generate_seccomp_policy.py 73 def main(traces):
102 for trace_filename in traces:
  /external/v8/tools/
run_perf.py 154 """Place holder for result traces."""
155 def __init__(self, traces=None, errors=None):
156 self.traces = traces or []
160 return {"traces": self.traces, "errors": self.errors}
167 self.traces += other.traces
244 results for a configured list of traces.
247 graph_names: List of names that configure the base path of the traces. E.g
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
tracing_controller_backend_unittest.py 97 traces = data.GetTracesFor(trace_data.TELEMETRY_PART)
98 if not traces:
100 assert len(traces) == 1
101 telemetry_trace = traces[0]
105 traces = data.GetTracesFor(trace_data.TELEMETRY_PART)
106 if not traces:
108 assert len(traces) == 1
109 telemetry_trace = traces[0]
  /external/blktrace/
blkrawverify.c 39 static struct trace_info traces[] = { variable in typeref:struct:trace_info
54 #define N_TRACES (sizeof(traces) / sizeof(struct trace_info))
94 sprintf(buf2, "| %s ", traces[i].string);
215 * skip notify traces, they don't have valid sequences
259 fprintf(ofp, "%8s %d traces\n", "", nbad_trace);
  /libcore/luni/src/test/java/libcore/java/lang/
ThreadTest.java 196 StackTraceElement[] traces = t1.getStackTrace(); local
197 StackTraceElement trace = traces[traces.length - 2];
216 // Expect to see the traces of all threads (not just t2)
217 assertTrue("Must have traces for all threads", visibleTraces.get() > 1);
  /prebuilts/go/darwin-x86/src/cmd/trace/
main.go 55 [pkg.test] argument is required for traces produced by Go 1.6 and below.
85 // Go 1.7 traces embed symbol info and does not require the binary.
86 // But we optionally accept binary as first arg for Go 1.5 traces.
  /prebuilts/go/linux-x86/src/cmd/trace/
main.go 55 [pkg.test] argument is required for traces produced by Go 1.6 and below.
85 // Go 1.7 traces embed symbol info and does not require the binary.
86 // But we optionally accept binary as first arg for Go 1.5 traces.
  /external/blktrace/btt/doc/
btt.tex 41 form of multiple individual traces per IO executed during the traced
73 parameters you want. You must save the traces to disk in this step,
94 files into one time-ordered stream of traces for all devices.
141 btt to refer to issue traces. Note that an I is used to refer to
142 \emph{insert} traces.}.
154 \item \emph{Q2Q} which measures the time between queue traces
162 = {Q2C}$ however, typically there are multiple queue traces that
354 \item[Per Process] As traces are emitted, they are tagged with the
358 provided which breaks down the traces according to process ID (name).
364 or kjournald for example). Similarly, completion traces are rarel
    [all...]

Completed in 452 milliseconds

1 2 3 4 5