/third_party/node/test/parallel/ |
D | test-trace-events-binding.js | 34 const traces = JSON.parse(data.toString()).traceEvents constant 36 assert.strictEqual(traces.length, 3); 38 assert.strictEqual(traces[0].pid, proc.pid); 39 assert.strictEqual(traces[0].ph, 'b'); 40 assert.strictEqual(traces[0].cat, 'custom'); 41 assert.strictEqual(traces[0].name, 'type-value'); 42 assert.strictEqual(traces[0].id, '0xa'); 43 assert.deepStrictEqual(traces[0].args.data, { 'extra-value': 20 }); 45 assert.strictEqual(traces[1].pid, proc.pid); 46 assert.strictEqual(traces[1].ph, 'b'); [all …]
|
D | test-trace-events-metadata.js | 24 const traces = JSON.parse(data.toString()).traceEvents constant 26 assert(traces.length > 0); 27 assert(traces.some((trace) => 30 assert(traces.some((trace) => 33 assert(traces.some((trace) => 37 assert(traces.some((trace) => 70 assert(traces.some((trace) => 72 assert(traces.some((trace) =>
|
D | test-trace-events-async-hooks.js | 24 const traces = JSON.parse(data.toString()).traceEvents; constant 25 assert(traces.length > 0); 27 assert(!traces.some((trace) => { 38 assert(traces.some((trace) => { 47 assert(traces.some((trace) => { 58 const initEvents = traces.filter((trace) => {
|
D | test-trace-events-v8.js | 24 const traces = JSON.parse(data.toString()).traceEvents; constant 25 assert(traces.length > 0); 27 assert(traces.some((trace) => { 38 assert(!traces.some((trace) => { 48 assert(!traces.some((trace) => {
|
D | test-trace-events-all.js | 22 const traces = JSON.parse(data.toString()).traceEvents; constant 23 assert(traces.length > 0); 25 assert(traces.some((trace) => { 36 assert(traces.some((trace) => { 46 assert(traces.some((trace) => {
|
D | test-trace-events-worker-metadata-with-name.js | 22 const traces = JSON.parse(data.toString()).traceEvents; constant 23 assert(traces.length > 0); 24 assert(traces.some((trace) =>
|
D | test-trace-events-worker-metadata.js | 22 const traces = JSON.parse(data.toString()).traceEvents; constant 23 assert(traces.length > 0); 24 assert(traces.some((trace) =>
|
D | test-trace-events-net.js | 33 const traces = JSON.parse(data.toString()).traceEvents; constant 34 assert(traces.length > 0); 36 traces.forEach((trace) => {
|
D | test-trace-events-http.js | 32 const traces = JSON.parse(data.toString()).traceEvents; constant 33 assert(traces.length > 0); 35 traces.forEach((trace) => {
|
D | test-trace-events-threadpool.js | 45 const traces = JSON.parse(data.toString()).traceEvents; constant 47 assert(traces.length > 0); 53 traces.forEach((item) => {
|
D | test-trace-events-fs-sync.js | 139 const traces = JSON.parse(data.toString()).traceEvents; constant 140 assert(traces.length > 0); 143 assert(traces.some((trace) => {
|
/third_party/skia/third_party/externals/angle2/infra/specs/ |
D | angle_mb_config.pyl | 53 'angle_asan_bot': ['angle', 'opencl', 'traces', 'goma', 'asan', 'release'], 54 …'angle_goma_android_arm64_debug_bot': ['angle', 'opencl', 'traces', 'goma', 'android', 'arm64', 'd… 55 …'angle_goma_android_arm64_release_bot': ['angle', 'opencl', 'traces', 'goma', 'android', 'arm64', … 56 …'angle_goma_android_arm_debug_bot': ['angle', 'opencl', 'traces', 'goma', 'android', 'arm', 'debug… 57 …'angle_goma_android_arm_release_bot': ['angle', 'opencl', 'traces', 'goma', 'android', 'arm', 'rel… 58 'angle_goma_android_perf_bot': ['angle', 'traces', 'goma', 'android', 'arm64', 'perf'], 59 'angle_goma_debug_bot': ['angle', 'opencl', 'traces', 'goma', 'debug'], 60 'angle_goma_perf_bot': ['angle', 'traces', 'goma', 'perf'], 61 'angle_goma_release_bot': ['angle', 'opencl', 'traces', 'goma', 'release'], 62 'angle_goma_x86_debug_bot': ['angle', 'opencl', 'traces', 'goma', 'x86', 'debug'], [all …]
|
/third_party/skia/third_party/externals/angle2/ |
D | DEPS | 29 # Controls if we check out the restricted traces. 641 'package': 'angle/traces/aliexpress', 651 'package': 'angle/traces/among_us', 661 'package': 'angle/traces/angry_birds_2_1500', 671 'package': 'angle/traces/arena_of_valor', 681 'package': 'angle/traces/asphalt_8', 691 'package': 'angle/traces/avakin_life', 701 'package': 'angle/traces/aztec_ruins', 711 'package': 'angle/traces/badland', 721 'package': 'angle/traces/beach_buggy_racing', [all …]
|
/third_party/python/Modules/ |
D | _tracemalloc.c | 502 _Py_hashtable_t *traces = tracemalloc_get_traces_table(domain); in tracemalloc_remove_trace() local 503 if (!traces) { in tracemalloc_remove_trace() 507 trace_t *trace = _Py_hashtable_steal(traces, TO_PTR(ptr)); in tracemalloc_remove_trace() 531 _Py_hashtable_t *traces = tracemalloc_get_traces_table(domain); in tracemalloc_add_trace() local 532 if (traces == NULL) { in tracemalloc_add_trace() 533 traces = tracemalloc_create_traces_table(); in tracemalloc_add_trace() 534 if (traces == NULL) { in tracemalloc_add_trace() 538 if (_Py_hashtable_set(tracemalloc_domains, TO_PTR(domain), traces) < 0) { in tracemalloc_add_trace() 539 _Py_hashtable_destroy(traces); in tracemalloc_add_trace() 544 trace_t *trace = _Py_hashtable_get(traces, TO_PTR(ptr)); in tracemalloc_add_trace() [all …]
|
/third_party/python/Lib/test/ |
D | test_tracemalloc.py | 174 def find_trace(self, traces, traceback): argument 175 for trace in traces: 186 traces = tracemalloc._get_traces() 187 trace = self.find_trace(traces, obj_traceback) 213 traces = tracemalloc._get_traces() 218 trace1 = self.find_trace(traces, obj1_traceback) 219 trace2 = self.find_trace(traces, obj2_traceback) 307 self.assertGreater(snapshot.traces[1].traceback.total_nframe, 10) 315 self.assertEqual(snapshot2.traces, snapshot.traces) 380 self.assertEqual(len(snapshot.traces), 1) [all …]
|
/third_party/skia/third_party/externals/angle2/src/tests/restricted_traces/ |
D | gen_restricted_traces.py | 184 def gen_gni(traces, gni_file, format_args): argument 186 for trace in traces: 333 def gen_git_ignore(traces): argument 334 ignores = ['%s/' % trace for trace in traces] 393 traces = [trace_pair[0] for trace_pair in trace_pairs] 417 if not gen_gni(traces, gni_file, format_args): 421 trace_infos = ['{"%s", {%s}}' % (trace, get_trace_info(trace)) for trace in traces] 423 no_json_traces = filter(lambda trace: not json_metadata_exists(trace), traces) 438 if not gen_git_ignore(traces):
|
D | retrace_restricted_traces.py | 142 traces = json.loads(f.read()) 144 traces = [trace.split(' ')[0] for trace in traces['traces']] 152 for trace in fnmatch.filter(traces, args.filter):
|
D | restricted_trace_gold_tests.py | 324 def _get_batches(traces, batch_size): argument 325 for i in range(0, len(traces), batch_size): 326 yield traces[i:i + batch_size] 344 traces = [trace.split(' ')[0] for trace in tests] 348 for trace in traces: 356 traces = filtered 358 batches = _get_batches(traces, args.batch_size)
|
/third_party/node/deps/v8/tools/perf/ |
D | statistics-for-json.R | 39 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]])
|
/third_party/python/Lib/ |
D | tracemalloc.py | 312 def __init__(self, traces): argument 315 self._traces = traces 420 def __init__(self, traces, traceback_limit): argument 423 self.traces = _Traces(traces) 469 new_traces = [trace for trace in self.traces._traces 474 new_traces = self.traces._traces.copy() 487 for trace in self.traces._traces: 508 for trace in self.traces._traces: 558 traces = _get_traces() 560 return Snapshot(traces, traceback_limit)
|
/third_party/mesa3d/docs/ci/ |
D | index.rst | 20 - Replay of application traces 55 Application traces replay 58 The CI replays application traces with various drivers in two different jobs. The first 59 job replays traces listed in ``src/<driver>/ci/traces-<driver>.yml`` files and if any 60 of those traces fail the pipeline fails as well. The second job replays traces listed in 61 ``src/<driver>/ci/restricted-traces-<driver>.yml`` and it is allowed to fail. This second 63 has been granted access to these traces. 65 A traces YAML file also includes a ``download-url`` pointing to a MinIO 66 instance where to download the traces from. While the first job should always work with 67 publicly accessible traces, the second job could point to an url with restricted access. [all …]
|
/third_party/node/test/internet/ |
D | test-trace-events-dns.js | 63 const traces = JSON.parse(data.toString()).traceEvents constant 66 assert(traces.length > 0); 69 assert(traces.some((trace) => {
|
/third_party/skia/third_party/externals/angle2/src/tests/capture_replay_tests/ |
D | BUILD.gn | 11 # Set the trace directory. Default is traces 12 angle_capture_replay_test_trace_dir = "traces" 31 # TODO(jmadill): Merge this config with restricted traces. http://anglebug.com/5133 38 foreach(_trace, _test_names_json.traces) {
|
/third_party/skia/platform_tools/android/apps/skottie/ |
D | collect.sh | 6 cat ./perfetto_config.pb | adb shell perfetto -c - -o /data/misc/perfetto-traces/trace.pb 7 adb pull /data/misc/perfetto-traces/trace.pb trace
|
/third_party/skia/third_party/externals/angle2/util/capture/ |
D | frame_capture_test_utils.cpp | 50 std::vector<std::string> traces; in LoadTraceNamesFromJSON() local 64 traces.push_back(traceAndVersion[0]); in LoadTraceNamesFromJSON() 67 *namesOut = std::move(traces); in LoadTraceNamesFromJSON()
|