/external/grpc-grpc/doc/ |
D | environment_variables.md | 40 - 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/kotlinx.coroutines/kotlinx-coroutines-debug/test/ |
D | DebugProbesTest.kt | 20 val traces = listOf( in <lambda>() constant 32 nestedMethod(deferred, traces) in <lambda>() 41 val traces = listOf( in <lambda>() constant 61 nestedMethod(deferred, traces) in <lambda>() 71 val traces = listOf( in <lambda>() constant 85 nestedMethod(deferred, traces) in <lambda>() 90 private suspend fun nestedMethod(deferred: Deferred<*>, traces: List<String>) { in nestedMethod() 91 oneMoreNestedMethod(deferred, traces) in nestedMethod() 95 private suspend fun oneMoreNestedMethod(deferred: Deferred<*>, traces: List<String>) { in oneMoreNestedMethod() 100 verifyStackTrace(e, traces) in oneMoreNestedMethod()
|
D | SanitizedProbesTest.kt | 27 val traces = listOf( in <lambda>() constant 44 nestedMethod(deferred, traces) in <lambda>() 134 private suspend fun nestedMethod(deferred: Deferred<*>, traces: List<String>) { in nestedMethod() 135 oneMoreNestedMethod(deferred, traces) in nestedMethod() 139 private suspend fun oneMoreNestedMethod(deferred: Deferred<*>, traces: List<String>) { in oneMoreNestedMethod() 144 verifyStackTrace(e, traces) in oneMoreNestedMethod()
|
D | StracktraceUtils.kt | 31 public fun verifyStackTrace(e: Throwable, traces: List<String>) { in verifyStackTrace() 33 traces.forEach { in verifyStackTrace() 36 traces.forEach { in verifyStackTrace() 47 assertEquals(causes, traces.map { it.count("Caused by") }.sum()) in verifyStackTrace() 58 public fun verifyDump(vararg traces: String, ignoredCoroutine: String? = null) { in count() 62 if (traces.isEmpty()) { in count() 73 …val expected = traces[index - 1].applyBackspace().split("\n\t(Coroutine creation stacktrace)\n", l… in count()
|
/external/mesa3d/.gitlab-ci/tracie/ |
D | query_traces_yaml.py | 48 traces = y['traces'] 49 traces = filter(lambda t: trace_type_from_filename(t['path']) in args.trace_types, 50 traces) 52 traces = filter(lambda t: args.device_name in trace_devices(t), traces) 54 traces = list(traces) 56 if len(traces) == 0: 59 print('\n'.join((t['path'] for t in traces))) 65 traces = y['traces'] 66 trace = next(t for t in traces if t['path'] == args.trace_path)
|
D | README.md | 8 The trace definition file contains information about the traces to run along 13 traces-db: 16 traces: 29 The `traces-db` entry can be absent, in which case it is assumed that 30 the traces can be found in the `CWD/traces-db` directory. 36 adding an entry to the `traces` list. The reference checksums can be calculated 43 The trace-db:download-url property contains an HTTPS url from which traces can 44 be downloaded, by appending traces:path properties to it. 53 1. If you mean to test GL traces, use the `.traces-test-gl` 58 my-hardware-gl-traces: [all …]
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/exceptions/ |
D | StackTraceRecoveryTest.kt | 35 val traces = listOf( in <lambda>() constant 47 nestedMethod(deferred, *traces.toTypedArray()) in <lambda>() 73 private suspend fun nestedMethod(deferred: Deferred<*>, vararg traces: String) { in nestedMethod() 74 oneMoreNestedMethod(deferred, *traces) in nestedMethod() 78 private suspend fun oneMoreNestedMethod(deferred: Deferred<*>, vararg traces: String) { in oneMoreNestedMethod() 83 verifyStackTrace(e, *traces) in oneMoreNestedMethod() 128 private suspend fun channelNestedMethod(channel: Channel<Int>, vararg traces: String) { in channelNestedMethod() 133 verifyStackTrace(e, *traces) in channelNestedMethod() 158 private suspend fun outerMethod(deferred: Deferred<*>, vararg traces: String) { in outerMethod() 160 innerMethod(deferred, *traces) in outerMethod() [all …]
|
D | Stacktraces.kt | 6 public fun verifyStackTrace(e: Throwable, vararg traces: String) { in verifyStackTrace() 9 traces.forEach { in verifyStackTrace() 19 assertEquals(traces.map { it.count("Caused by") }.sum(), causes) in verifyStackTrace()
|
/external/mesa3d/src/freedreno/.gitlab-ci/ |
D | genoutput.sh | 12 traces=$base/.gitlab-ci/traces 45 $cffdump --frame 0 --once $traces/fd-clouds.rd.gz | filter $output/fd-clouds.log 46 $cffdump --frame 0 --once $traces/es2gears-a320.rd.gz | filter $output/es2gears-a320.log 47 $cffdump --frame 1 --once $traces/glxgears-a420.rd.gz | filter $output/glxgears-a420.log 48 $cffdump --once $traces/dEQP-GLES2.functional.texture.specification.basic_teximage2d.rgba16f_2d.rd.… 49 $cffdump --frame 0 --once $traces/dEQP-VK.draw.indirect_draw.indexed.indirect_draw_count.triangle_l… 52 $cffdump --script $base/decode/scripts/parse-submits.lua $traces/shadow.rd.gz | filter $output/shad… 54 $crashdec -sf $traces/crash.devcore | filter $output/crash.log 56 $asm -g 6 $traces/afuc_test.asm $output/afuc_test.fw
|
/external/tensorflow/tensorflow/python/debug/lib/ |
D | debug_events_monitors_test.py | 138 traces = test_monitor.graph_execution_traces 140 self.assertLen(traces, 3) # [Placeholder:0, Unique:0 , Sum:0]. 141 self.assertEqual(traces[0].op_type, "Placeholder") 142 self.assertEqual(traces[0].output_slot, 0) 143 self.assertEqual(traces[1].op_type, "Unique") 144 self.assertEqual(traces[1].output_slot, 0) 146 self.assertEqual(traces[2].op_type, "Sum") 147 self.assertEqual(traces[2].output_slot, 0) 149 self.assertLen(traces[0].debug_tensor_value, 5) 150 self.assertLen(traces[1].debug_tensor_value, 5) [all …]
|
D | distributed_callbacks_test.py | 154 traces = reader.graph_execution_traces() 160 trace.op_type for trace in traces 164 trace.op_type for trace in traces 173 for trace in traces: 178 for trace in traces if trace.op_type == "MatMul" and 182 for trace in traces if trace.op_type == "BiasAdd" and 189 for trace in traces if trace.op_type == "MatMul" and 193 for trace in traces if trace.op_type == "BiasAdd" and 240 traces = reader.graph_execution_traces() 246 trace.op_type for trace in traces [all …]
|
/external/antlr/runtime/Python3/tests/ |
D | 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,
|
D | t047treeparser.py | 13 self.traces = [] 17 self.traces.append('>'+ruleName) 21 self.traces.append('<'+ruleName) 73 walker.traces,
|
/external/antlr/runtime/Python/tests/ |
D | 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,
|
D | t047treeparser.py | 13 self.traces = [] 17 self.traces.append('>'+ruleName) 21 self.traces.append('<'+ruleName) 73 walker.traces,
|
/external/tensorflow/tensorflow/compiler/mlir/lite/tests/debuginfo/ |
D | v1_1.0_224_frozen.wrong_attr.line.part.pbtxt.debug | 59 traces { 68 traces { 77 traces { 86 traces { 95 traces { 104 traces { 113 traces { 122 traces { 131 traces { 140 traces { [all …]
|
D | v1_1.0_224_frozen.wrong_attr.stack.part.pbtxt.debug | 59 traces { 68 traces { 77 traces { 86 traces { 95 traces { 104 traces { 113 traces { 122 traces { 131 traces { 140 traces { [all …]
|
/external/oss-fuzz/infra/base-images/base-runner/ |
D | collect_dft | 34 local traces="$OUT/${target}_dft" 39 rm -rf $traces && mkdir -p $traces 41 timeout $TIMEOUT dataflow_tracer.py $OUT/$target $corpus $traces &> $log
|
/external/python/cpython3/Lib/test/ |
D | test_tracemalloc.py | 154 def find_trace(self, traces, traceback): argument 155 for trace in traces: 166 traces = tracemalloc._get_traces() 167 trace = self.find_trace(traces, obj_traceback) 193 traces = tracemalloc._get_traces() 198 trace1 = self.find_trace(traces, obj1_traceback) 199 trace2 = self.find_trace(traces, obj2_traceback) 268 self.assertEqual(snapshot2.traces, snapshot.traces) 336 self.assertEqual(len(snapshot.traces), 1) 337 trace = snapshot.traces[0] [all …]
|
/external/igt-gpu-tools/benchmarks/ |
D | gem_exec_tracer.c | 53 } *traces; variable 230 for (p = &traces; (t = *p); p = &t->next) { in close() 291 for (p = &traces; (t = *p); p = &t->next) { in ioctl() 293 if (traces != t) { in ioctl() 295 t->next = traces; in ioctl() 296 traces = t; in ioctl() 326 t->next = traces; in ioctl() 327 traces = t; in ioctl()
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_rtl_report.cc | 434 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/perfetto/ |
D | README.md | 5 recording system-level and app-level traces, native + java heap profiling, a 6 library for analyzing traces using SQL and a web-based UI to visualize and 7 explore multi-GB traces.
|
/external/python/cpython3/Lib/ |
D | tracemalloc.py | 288 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/bcc/examples/lua/ |
D | tracepoint-offcputime.lua | 69 local traces = stack_traces[k.stack_id] 70 if traces then 71 for i, ip in ipairs(traces) do
|
/external/antlr/runtime/Ruby/test/functional/debugging/ |
D | rule-tracing.rb | 62 lexer.traces.should == [ 68 parser.traces.should == [
|