Home
last modified time | relevance | path

Searched refs:traces (Results 1 – 25 of 275) sorted by relevance

1234567891011

/external/grpc-grpc/doc/
Denvironment_variables.md40 - api - traces api calls to the C core
41 - bdp_estimator - traces behavior of bdp estimation logic
42 - call_combiner - traces call combiner state
43 - call_error - traces the possible errors contributing to final call status
44 - channel - traces operations on the C core channel stack
45 - client_channel - traces client channel activity, including resolver
47 - compression - traces compression operations
48 - connectivity_state - traces connectivity state changes to channels
49 - executor - traces grpc's internal thread pool ('the executor')
50 - fd_trace - traces fd create(), shutdown() and close() calls for channel fds.
[all …]
/external/antlr/runtime/Python3/tests/
Dt044trace.py16 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,
Dt047treeparser.py13 self.traces = []
17 self.traces.append('>'+ruleName)
21 self.traces.append('<'+ruleName)
73 walker.traces,
Dt052import.py31 self.traces.append('>'+ruleName)
35 self.traces.append('<'+ruleName)
58 self.traces.append('>'+ruleName)
62 self.traces.append('<'+ruleName)
/external/antlr/runtime/Python/tests/
Dt044trace.py16 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,
Dt047treeparser.py13 self.traces = []
17 self.traces.append('>'+ruleName)
21 self.traces.append('<'+ruleName)
73 walker.traces,
Dt052import.py31 self.traces.append('>'+ruleName)
35 self.traces.append('<'+ruleName)
58 self.traces.append('>'+ruleName)
62 self.traces.append('<'+ruleName)
/external/python/cpython3/Lib/test/
Dtest_tracemalloc.py133 def find_trace(self, traces, traceback): argument
134 for trace in traces:
145 traces = tracemalloc._get_traces()
146 trace = self.find_trace(traces, obj_traceback)
172 traces = tracemalloc._get_traces()
177 trace1 = self.find_trace(traces, obj1_traceback)
178 trace2 = self.find_trace(traces, obj2_traceback)
247 self.assertEqual(snapshot2.traces, snapshot.traces)
315 self.assertEqual(len(snapshot.traces), 1)
316 trace = snapshot.traces[0]
[all …]
/external/v8/tools/perf/
Dstatistics-for-json.R39 for (i in seq(1, length(patch$traces))) {
40 testName <- patch$traces[[i]]$graphs[[2]]
43 nopatch_res <- as.integer(nopatch$traces[[i]]$results)
44 patch_res <- as.integer(patch$traces[[i]]$results)
65 xlab(patch$traces[[i]]$graphs[[2]])
73 xlab(patch$traces[[i]]$graphs[[2]])
/external/compiler-rt/lib/tsan/rtl/
Dtsan_rtl_report.cc434 static bool HandleRacyStacks(ThreadState *thr, VarSizeStackTrace traces[2], in HandleRacyStacks()
443 hash.hash[0] = md5_hash(traces[0].trace, traces[0].size * sizeof(uptr)); in HandleRacyStacks()
444 hash.hash[1] = md5_hash(traces[1].trace, traces[1].size * sizeof(uptr)); in HandleRacyStacks()
480 static void AddRacyStacks(ThreadState *thr, VarSizeStackTrace traces[2], in AddRacyStacks()
485 hash.hash[0] = md5_hash(traces[0].trace, traces[0].size * sizeof(uptr)); in AddRacyStacks()
486 hash.hash[1] = md5_hash(traces[1].trace, traces[1].size * sizeof(uptr)); in AddRacyStacks()
626 VarSizeStackTrace traces[kMop]; in ReportRace() local
628 ObtainCurrentStack(thr, toppc, &traces[0]); in ReportRace()
629 if (IsFiredSuppression(ctx, typ, traces[0])) in ReportRace()
638 RestoreStack(s2.tid(), s2.epoch(), &traces[1], mset2); in ReportRace()
[all …]
/external/python/cpython3/Lib/
Dtracemalloc.py288 def __init__(self, traces): argument
291 self._traces = traces
394 def __init__(self, traces, traceback_limit): argument
397 self.traces = _Traces(traces)
443 new_traces = [trace for trace in self.traces._traces
448 new_traces = self.traces._traces.copy()
461 for trace in self.traces._traces:
482 for trace in self.traces._traces:
532 traces = _get_traces()
534 return Snapshot(traces, traceback_limit)
/external/perfetto/docs/
Dtraceconv.md3 Perfetto traces can be converted into other trace formats using the
11 This is only valid for traces with
14 traceconv is also used in the UI to convert Perfetto traces to the Chrome
15 JSON format and directly open these traces in the legacy systrace UI
Dlong-traces.md1 # Long traces with Perfetto
9 traces that are way larger than that.
66 # /data/misc/perfetto-traces/, or SELinux will cause a failure.
67 …local/tmp/long_trace.cfg.protobuf | perfetto -c - -o /data/misc/perfetto-traces/trace --background'
78 $ adb shell gzip -c /data/misc/perfetto-traces/trace -3 | gzip -dc - > ~/trace
81 $ adb shell sha1sum /data/misc/perfetto-traces/trace
82 b9f7a7e3d62638b5d9e880db30f68787c458bb3c /data/misc/perfetto-traces/trace
DREADME.md22 **Processing of traces**
25 traces as input and exposes an SQL query interface to the data.
31 An open-source UI for inspection and analysis of traces.
64 **Long traces**
65 Pefetto aims at supporting hours-long / O(100GB) traces, both in terms of
69 Perfetto traces (output) and configuration (input) consists of protobuf
Ddetached-mode.md43 [`write_into_file`](long-traces.md) flag in the trace config, which transfers
108 ' | perfetto -c - --txt --detach=session1 -o /data/misc/perfetto-traces/trace
114 # /data/misc/perfetto-traces/trace.
142 ' | perfetto -c - --txt --detach=session2 -o /data/misc/perfetto-traces/trace
149 # /data/misc/perfetto-traces/trace.
171 ' | perfetto -c - --txt --detach=session3 -o /data/misc/perfetto-traces/trace
/external/v8/tools/
Drun_perf.py141 def __init__(self, traces=None, errors=None): argument
142 self.traces = traces or []
146 return {"traces": self.traces, "errors": self.errors}
153 self.traces += other.traces
272 if not res.traces or not calc_total:
276 if len(set(map(lambda t: len(t["results"]), res.traces))) != 1:
283 n_results = len(res.traces[0]["results"])
284 total_results = [GeometricMean(t["results"][i] for t in res.traces)
286 res.traces.append({
288 "units": res.traces[0]["units"],
[all …]
/external/bcc/examples/lua/
Dtracepoint-offcputime.lua69 local traces = stack_traces[k.stack_id]
70 if traces then
71 for i, ip in ipairs(traces) do
/external/blktrace/iowatcher/
Dblkparse.c735 struct tracelist *traces = NULL; in traces_list() local
758 tl->next = traces; in traces_list()
761 traces = tl; in traces_list()
770 return traces; in traces_list()
773 static void traces_free(struct tracelist *traces) in traces_free() argument
775 while (traces) { in traces_free()
776 struct tracelist *tl = traces; in traces_free()
777 traces = traces->next; in traces_free()
782 static int dump_traces(struct tracelist *traces, int count, char *dumpfile) in dump_traces() argument
801 for (tl = traces; tl != NULL; tl = tl->next) { in dump_traces()
[all …]
/external/grpc-grpc/
DTROUBLESHOOTING.md17 …enable extra logging for some internal gRPC components. Enabling the right traces can be invaluable
19 Multiple traces can be enable at once (use comma as separator).
30 # GPRC_VERBOSITY accordingly, no traces will be printed.
39 …itations: `GPRC_TRACE=tcp` is currently not implemented for Windows (you won't see any tcp traces).
/external/antlr/runtime/Ruby/test/functional/debugging/
Drule-tracing.rb62 lexer.traces.should == [
68 parser.traces.should == [
/external/autotest/server/site_tests/enterprise_CFM_PTZStress/
Denterprise_CFM_PTZStress.py68 traces = self._host.run_output(cmd, ignore_status = True)
69 if re.search('C Ii', traces) and re.search('S Ii', traces):
/external/python/cpython3/Doc/library/
Dtracemalloc.rst263 Clear traces of memory blocks allocated by Python.
297 traces of memory blocks.
312 allocators. Collected tracebacks of traces will be limited to *nframe*
335 allocators. Also clears all previously collected traces of memory blocks
338 Call :func:`take_snapshot` function to take a snapshot of traces before
347 Take a snapshot of traces of memory blocks allocated by Python. Return a new
353 Tracebacks of traces are limited to :func:`get_traceback_limit` frames. Use
367 Filter traces of memory blocks by their address space (domain).
389 Filter on traces of memory blocks.
397 * ``Filter(True, subprocess.__file__)`` only includes traces of the
[all …]
/external/blktrace/btreplay/doc/
Dabstract.tex26 \item Initiate \texttt{blktrace} to capture traces
27 \item Generate traces\ldots
29 \item Run \texttt{btrecord} to convert traces into IO records
/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_code.cc384 if (!node->call_stack() || node->call_stack()->traces().empty()) { in AddNode()
412 std::set<string> traces; in AddNode() local
413 for (int i = 0; i < node->call_stack()->traces().size(); ++i) { in AddNode()
416 const string& trace = GetTraceString(node->call_stack()->traces().at(i)); in AddNode()
417 traces.insert(trace); in AddNode()
419 trace, &node->call_stack()->traces().at(i), ""); in AddNode()
420 if (i == node->call_stack()->traces().size() - 1) { in AddNode()
438 for (int i = 0; i < fn->call_stack()->traces().size(); ++i) { in Build()
440 GetTraceString(fn->call_stack()->traces().at(i)) + kGradientSuffix; in Build()
442 trace, &fn->call_stack()->traces().at(i), kGradientSuffix); in Build()
[all …]
/external/proguard/examples/
Dservlets.pro16 # traces later on. Keep a fixed source file attribute and all line number
17 # tables to get line numbers in the stack traces.
18 # You can comment this out if you're not interested in stack traces.

1234567891011