Home
last modified time | relevance | path

Searched +full:enable +full:- +full:trace (Results 1 – 25 of 750) sorted by relevance

12345678910>>...30

/third_party/node/doc/api/
Dtracing.md1 # Trace events
3 <!--introduced_in=v7.7.0-->
5 > Stability: 1 - Experimental
7 <!-- source_link=lib/trace_events.js -->
12 Tracing can be enabled with the `--trace-event-categories` command-line flag
13 or by using the `trace_events` module. The `--trace-event-categories` flag
14 accepts a list of comma-separated category names.
19 * `node.async_hooks`: Enables capture of detailed [`async_hooks`][] trace data.
25 * `node.dns.native`: Enables capture of trace data for DNS queries.
27 * `node.fs.sync`: Enables capture of trace data for file system sync methods.
[all …]
Dtracing.json6 "textRaw": "Trace events",
11--trace-event-categories</code> command-line flag\nor by using the <code>trace_events</code> modul…
32enable or disable tracing for sets of\ncategories. Instances are created using the <code>trace_eve…
44 …"desc": "<p>A comma-separated list of the trace event categories covered by this\n<code>Tracing</c…
75trace event categories <em>not</em> covered by other enabled <code>Tracing</code> objects\nand <em…
78 "textRaw": "`tracing.enable()`",
80 "name": "enable",
125 …"textRaw": "`categories` {string[]} An array of trace category names. Values included in the array…
128 …"desc": "An array of trace category names. Values included in the array are coerced to a string wh…
135-js\">const trace_events = require('trace_events');\nconst categories = ['node.perf', 'node.async_…
[all …]
Dtracing.html4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width">
6 <meta name="nodejs.org:node-version" content="v14.21.2">
7 <title>Trace events | Node.js v14.21.2 Documentation</title>
13 <body class="alt apidoc" id="api-section-tracing">
22 <li><a href="documentation.html" class="nav-documentation">About this documentation</a></li>
23 <li><a href="synopsis.html" class="nav-synopsis">Usage and example</a></li>
27 <li><a href="assert.html" class="nav-assert">Assertion testing</a></li>
28 <li><a href="async_hooks.html" class="nav-async_hooks">Async hooks</a></li>
29 <li><a href="buffer.html" class="nav-buffer">Buffer</a></li>
[all …]
Dcli.md1 # Command-line options
3 <!--introduced_in=v5.9.1-->
4 <!--type=misc-->
6 Node.js comes with a variety of CLI options. These options expose built-in
13 `node [options] [V8 options] [script.js | -e "script" | -] [--] [arguments]`
15 `node inspect [script.js | -e "script" | <host>:<port>] …`
17 `node --v8-options`
24 <!-- YAML
26 - version: v10.12.0
27 pr-url: https://github.com/nodejs/node/pull/23020
[all …]
/third_party/node/test/parallel/
Dtest-trace-events-api.js1 // Flags: --expose-gc --no-warnings
9 common.skip('missing trace events');
25 const indexOfCatFlag = process.execArgv.indexOf('--trace-event-categories');
26 if (indexOfCatFlag === -1) {
61 tracing.enable();
62 tracing.enable(); // Purposefully enable twice to test calling twice
74 tracing2.enable();
82 tracing.enable();
85 // Will emit mark and measure trace events
92 // Intentional non-op, part of the test
[all …]
Dtest-trace-events-async-hooks-dynamic.js10 common.skip('missing trace events');
18 const enable = `require("trace_events").createTracing( constant
19 { categories: ["node.async_hooks"] }).enable();`;
29 ['-e', enable + code ],
42 const data = fs.readFileSync(filename, 'utf-8');
45 function filterTimeoutTraces(trace) { argument
46 if (trace.pid !== proc.pid)
48 if (trace.cat !== 'node,node.async_hooks')
50 if (trace.name !== 'Timeout')
59 for (const trace of timeoutTraces) {
[all …]
Dtest-source-map-enable.js26 require.resolve('../fixtures/source-map/basic'),
41 require.resolve('../fixtures/source-map/sigint'),
54 // Outputs source maps when source-file calls process.exit(1).
58 require.resolve('../fixtures/source-map/exit-1'),
61 const sourceMap = getSourceMapFromCache('exit-1.js', coverageDirectory);
65 // Outputs source-maps for esm module.
69 '--no-warnings',
70 require.resolve('../fixtures/source-map/esm-basic.mjs'),
73 const sourceMap = getSourceMapFromCache('esm-basic.mjs', coverageDirectory);
77 // Loads source-maps with relative path from .map file on disk.
[all …]
/third_party/node/doc/
Dnode.18 .\" https://atom.io/packages/language-roff
11 .\" mandoc -Wall -Tlint /path/to/this.file # BSD
12 .\" groff -w all -z /path/to/this.file # GNU/Linux, macOS
18 .\" the Roff formatter better control over text-spacing, line-wrapping,
34 .Nd server-side JavaScript runtime
40 .Op Ar v8-options
42 .Op Fl -
51 .Op Fl -v8-options
56 It is primarily focused on creating simple, easy-to-build network clients and servers.
63 .Bl -tag -width 6n
[all …]
/third_party/flutter/engine/flutter/shell/common/
Dswitches.h2 // Use of this source code is governed by a BSD-style license that can be
15 // clang-format off
25 // clang-format on
29 "aot-shared-library-name",
32 "snapshot-asset-path",
37 "vm-snapshot-data",
38 "The VM snapshot data that will be memory mapped as read-only. "
41 "vm-snapshot-instr",
45 "isolate-snapshot-data",
46 "The isolate snapshot data that will be memory mapped as read-only. "
[all …]
/third_party/python/Lib/test/
Dtest_faulthandler.py27 '-fsanitize=undefined' in _cflags or
28 '--with-undefined-behavior-sanitizer' in _config_args
31 '-fsanitize=memory' in _cflags or
32 '--with-memory-sanitizer' in _config_args
41 return '^' + (regex + '\n') * (min_count - 1) + regex
74 process = script_helper.spawn_python('-c', code, pass_fds=pass_fds)
106 header = 'Current thread 0x[0-9a-f]+'
108 header = 'Thread 0x[0-9a-f]+'
117 regex.append(' Garbage-collecting')
124 # Enable MULTILINE flag
[all …]
/third_party/node/deps/icu-small/source/common/
Drestrace.h18 * Instances of this class store information used to trace reads from resource
19 * bundles when ICU is built with --enable-tracing.
34 fIndex(-1) {} in ResourceTracer()
40 fIndex(-1) {} in ResourceTracer()
46 fIndex(-1) {} in ResourceTracer()
58 fIndex(-1) {} in ResourceTracer()
68 void trace(const char* type) const;
72 * Calls trace() if the resB or parent provided to the constructor was
73 * non-null; otherwise, does nothing.
77 trace(type); in maybeTrace()
[all …]
/third_party/icu/icu4c/source/common/
Drestrace.h18 * Instances of this class store information used to trace reads from resource
19 * bundles when ICU is built with --enable-tracing.
34 fIndex(-1) {} in ResourceTracer()
40 fIndex(-1) {} in ResourceTracer()
46 fIndex(-1) {} in ResourceTracer()
58 fIndex(-1) {} in ResourceTracer()
68 void trace(const char* type) const;
72 * Calls trace() if the resB or parent provided to the constructor was
73 * non-null; otherwise, does nothing.
77 trace(type); in maybeTrace()
[all …]
/third_party/skia/third_party/externals/icu/source/common/
Drestrace.h18 * Instances of this class store information used to trace reads from resource
19 * bundles when ICU is built with --enable-tracing.
34 fIndex(-1) {} in ResourceTracer()
40 fIndex(-1) {} in ResourceTracer()
46 fIndex(-1) {} in ResourceTracer()
58 fIndex(-1) {} in ResourceTracer()
68 void trace(const char* type) const;
72 * Calls trace() if the resB or parent provided to the constructor was
73 * non-null; otherwise, does nothing.
77 trace(type); in maybeTrace()
[all …]
/third_party/mesa3d/docs/drivers/
Dd3d12.rst5 --------
13 ---------
21 Enable verbose output to stdout
23 Trace blit and copy resource calls
25 Enable experimental shader models feature
33 Enable `debug layer`_
35 Enable `GPU validator`_
40 Enable verbose output to stdout
43 ``trace``
44 Trace instruction conversion
[all …]
/third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/
Drun.dart2 // Use of this source code is governed by a BSD-style license that can be
36 ..addFlag('trace-startup',
38 help: 'Trace application startup, then exit, saving the trace to a file.',
40 ..addFlag('verbose-system-logs',
55 bool get traceStartup => argResults['trace-startup'];
65 ..addFlag('start-paused',
69 ..addFlag('enable-software-rendering',
71 help: 'Enable rendering using the Skia software backend. '
76 ..addFlag('skia-deterministic-rendering',
78 help: 'When combined with --enable-software-rendering, provides 100% '
[all …]
/third_party/node/src/
Dnode_trace_events.cc1 #include "base_object-inl.h"
2 #include "env-inl.h"
3 #include "memory_tracker-inl.h"
6 #include "node_v8_platform-inl.h"
8 #include "util-inl.h"
34 static void Enable(const FunctionCallbackInfo<Value>& args);
40 tracker->TrackField("categories", categories_); in MemoryInfo()
61 CHECK(args[0]->IsArray()); in New()
63 for (size_t n = 0; n < cats->Length(); n++) { in New()
65 if (!cats->Get(env->context(), n).ToLocal(&category)) return; in New()
[all …]
/third_party/mesa3d/src/amd/vulkan/
Dradv_sqtt.c42 return device->physical_device->rad_info.cu_mask[se][0] == 0; in radv_se_is_disabled()
46 gfx10_get_thread_trace_ctrl(struct radv_device *device, bool enable) in gfx10_get_thread_trace_ctrl() argument
48 uint32_t thread_trace_ctrl = S_008D1C_MODE(enable) | S_008D1C_HIWATER(5) | in gfx10_get_thread_trace_ctrl()
54 if (device->physical_device->rad_info.gfx_level == GFX10_3) in gfx10_get_thread_trace_ctrl()
57 if (device->physical_device->rad_info.has_sqtt_auto_flush_mode_bug) in gfx10_get_thread_trace_ctrl()
68 cs, device->physical_device->rad_info.gfx_level, NULL, 0, in radv_emit_wait_for_idle()
69 family == AMD_IP_COMPUTE && device->physical_device->rad_info.gfx_level >= GFX7, in radv_emit_wait_for_idle()
82 uint32_t shifted_size = device->thread_trace.buffer_size >> SQTT_BUFFER_ALIGN_SHIFT; in radv_emit_thread_trace_start()
83 struct radeon_info *rad_info = &device->physical_device->rad_info; in radv_emit_thread_trace_start()
84 unsigned max_se = rad_info->max_se; in radv_emit_thread_trace_start()
[all …]
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
DREADME.md5 You can also build your own dashboards. For example, a comparison of ANGLE's back-end draw call per…
9 …. Build the `angle_perftests` target. Note that all test scores are higher-is-better. You should a…
15--gtest_filter=*TestName*`. To select a particular ANGLE back-end, add the name of the back-end to…
17 ### Null/No-op Configurations
19 ANGLE implements a no-op driver for OpenGL, D3D11 and Vulkan. To run on these configurations use th…
21 ### Command-line Arguments
23 Several command-line arguments control how the tests run:
25 * `--one-frame-only`: Runs tests once and quickly exits. Used as a quick smoke test.
26 * `--enable-trace`: Write a JSON event log that can be loaded in Chrome.
27 * `--trace-file file`: Name of the JSON event log for `--enable-trace`.
[all …]
/third_party/mesa3d/docs/_extra/specs/OLD/
DMESA_trace.spec32 Provides the application with means to enable and disable logging
38 The application can add comments and enable or disable tracing of GL
42 Application-side implementation of these features raises namespace
50 in Mesa is covered by Mesa's XFree86-style copyright by the authors above.
67 (2) Should the Trace API explicitely support the notion of "frames?
72 trace into frames, in whatever way considered adequate.
76 PBuffers and other render-to-texture solutions demonstrate that
84 will be traced as requested by Enable/DisableTraceMESA, in the order
85 encountered. Whether the resulting trace is available as a readable
89 additional information added to the trace (statistics, profiling/timing,
[all …]
/third_party/rust/crates/tracing/tracing-subscriber/tests/layer_filters/
Dper_event.rs12 ) -> bool { in enabled()
20 ) -> bool { in event_enabled()
24 if field.name() == "enable" { in event_enabled()
45 .event(event::mock().at_level(Level::TRACE)) in per_subscriber_event_field_filtering()
54 tracing::trace!(enable = true, "hello trace"); in per_subscriber_event_field_filtering()
56 tracing::info!(enable = true, "hello info"); in per_subscriber_event_field_filtering()
57 tracing::warn!(enable = false, "hello warn"); in per_subscriber_event_field_filtering()
/third_party/openssl/doc/man3/
DOSSL_trace_set_channel.pod8 OSSL_trace_set_callback, OSSL_trace_cb - Enabling trace output
12 #include <openssl/trace.h>
25 internal trace output.
28 The trace output is divided into categories which can be
31 I<trace channel> to it, which in the simplest case is just a BIO object
34 get more finegrained trace information. This callback will be wrapped
37 For the tracing code, both trace channel types are indistinguishable.
38 These are called a I<simple trace channel> and a I<callback trace channel>,
43 OSSL_trace_set_channel() is used to enable the given trace C<category>
44 by attaching the B<BIO> I<bio> object as (simple) trace channel.
[all …]
/third_party/skia/third_party/externals/angle2/src/tests/restricted_traces/
Dretrace_restricted_traces.py4 # Use of this source code is governed by a BSD-style license that can be
8 Script that re-captures the traces in the restricted trace folder. We can
9 use this to update traces without needing to re-run the app on a device.
27 # We preserve select metadata in the trace header that can't be re-captured properly.
32 def src_trace_path(trace): argument
34 return os.path.join(script_dir, trace)
37 def context_header(trace, trace_path): argument
41 header = try_path_expr % (trace, context_id)
45 logging.fatal('Could not find context header for %s' % trace)
49 def get_num_frames(trace): argument
[all …]
/third_party/node/src/inspector/
Dnode_protocol.pdl1 # Please notify @nodejs/v8-inspector and @nodejs/trace-events before modifying this file
9 # Controls how the trace buffer stores data.
23 # Start trace events collection.
28 # Stop trace events collection. Remaining collected events will be sent as a sequence of
32 # Contains an bucket of collected trace events.
37 # Signals that tracing is stopped and there is no trace buffers pending flush, all data were
65 command enable
103 # Enable the `NodeRuntime.waitingForDisconnect`.
/third_party/mesa3d/docs/
Dperfetto.rst6 `producers <https://perfetto.dev/docs/concepts/service-model>`__ each with
7 one or more data-sources. Perfetto already provides various producers and
8 data-sources for things like:
10 - CPU scheduling events (``linux.ftrace``)
11 - CPU frequency scaling (``linux.ftrace``)
12 - System calls (``linux.ftrace``)
13 - Process memory utilization (``linux.process_stats``)
21 - pps-producer: A systemwide daemon that can collect global performance
23 - mesa: Per-process producer within mesa to capture render-stage traces
28 .. list-table:: Supported data-sources
[all …]
/third_party/openssl/.github/workflows/
Drun-checker-daily.yml1 # Copyright 2021-2022 The OpenSSL Project Authors. All Rights Reserved.
8 name: Run-checker daily
13 - cron: '0 6 * * *'
18 run-checker:
20 fail-fast: false
24 no-afalgeng,
25 no-aria,
26 no-asan,
27 no-asm,
28 no-async,
[all …]

12345678910>>...30