Home
last modified time | relevance | path

Searched refs:debug (Results 1 – 25 of 136) sorted by relevance

123456

/xen/automation/gitlab-ci/
A Dbuild.yaml37 debug: n
42 debug: y
54 debug: n
59 debug: y
111 debug: n
116 debug: y
138 debug: n
143 debug: y
165 debug: n
170 debug: y
[all …]
A Dtest.yaml162 adl-smoke-x86-64-gcc-debug:
168 - alpine-3.18-gcc-debug
176 - alpine-3.18-gcc-debug
184 - alpine-3.18-gcc-debug
192 - alpine-3.18-gcc-debug
200 - alpine-3.18-gcc-debug
208 - alpine-3.18-gcc-debug
216 - alpine-3.18-gcc-debug
224 - alpine-3.18-gcc-debug
232 - alpine-3.18-gcc-debug
[all …]
/xen/xen/common/
A Dspinlock.c140 if ( taken[i] == debug ) in check_lock()
205 if ( taken[i - 1] == debug ) in lock_exit()
231 lock_enter(debug); in got_lock()
239 lock_exit(debug); in rel_lock()
241 debug->cpu = SPINLOCK_NO_CPU; in rel_lock()
320 check_lock(debug, false); in spin_lock_common()
331 got_lock(debug); in spin_lock_common()
367 rel_lock(debug); in spin_unlock_common()
412 check_lock(debug, true); in spin_trylock_common()
430 got_lock(debug); in spin_trylock_common()
[all …]
A Drwlock.c61 lock_enter(&lock->lock.debug); in queue_read_lock_slowpath()
114 lock_enter(&lock->lock.debug); in queue_write_lock_slowpath()
166 lock_enter(&percpu_rwlock->rwlock.lock.debug); in _percpu_write_lock()
/xen/tools/libacpi/
A DMakefile46 $(MK_DSDT) --debug=$(debug) --dm-version qemu-xen >> $@.$(TMP_SUFFIX)
54 $(MK_DSDT) --debug=$(debug) --maxcpu $* >> $@.$(TMP_SUFFIX)
60 $(MK_DSDT) --debug=$(debug) --maxcpu any --dm-version none >> $@
64 $(MK_DSDT) --debug=$(debug) >> $@.$(TMP_SUFFIX)
A Dmk_dsdt.c18 static bool debug = false; variable
156 debug = true; in main()
409 if (debug) in main()
418 if (debug) in main()
499 if (debug) in main()
/xen/xen/include/xen/
A Drwlock.h66 check_lock(&lock->lock.debug, true); in _read_trylock()
77 lock_enter(&lock->lock.debug); in _read_trylock()
103 check_lock(&lock->lock.debug, false); in _read_lock()
104 lock_enter(&lock->lock.debug); in _read_lock()
137 lock_exit(&lock->lock.debug); in _read_unlock()
185 check_lock(&lock->lock.debug, false); in _write_lock()
186 lock_enter(&lock->lock.debug); in _write_lock()
223 check_lock(&lock->lock.debug, true); in _write_trylock()
232 lock_enter(&lock->lock.debug); in _write_trylock()
245 lock_exit(&lock->lock.debug); in _write_unlock()
[all …]
A Dspinlock.h26 void check_lock(union lock_debug *debug, bool try);
27 void lock_enter(const union lock_debug *debug);
28 void lock_exit(const union lock_debug *debug);
111 .debug = LOCK_DEBUG_, \
116 .debug = LOCK_DEBUG_, \
177 .debug = LOCK_DEBUG_, \
181 .debug = LOCK_DEBUG_, \
206 union lock_debug debug; member
219 union lock_debug debug; member
/xen/tools/firmware/vgabios/
A DChangeLog11 - added debug message for unsupported VBE modes
284 VGABIOS-lgpl-latest.cirrus.debug.bin (1.9),
310 VGABIOS-lgpl-latest.cirrus.debug.bin (1.6),
319 VGABIOS-lgpl-latest.cirrus.debug.bin (1.5),
332 VGABIOS-lgpl-latest.debug.bin (1.53):
669 VGABIOS-lgpl-latest.debug.bin (1.22):
676 VGABIOS-lgpl-latest.debug.bin (1.21):
719 VGABIOS-lgpl-latest.debug.bin (1.18):
747 VGABIOS-lgpl-latest.debug.bin (1.15):
755 VGABIOS-lgpl-latest.debug.bin (1.14):
[all …]
A DMakefile17 bios: biossums vgabios.bin vgabios.debug.bin
20 cirrus-bios: vgabios-cirrus.bin vgabios-cirrus.debug.bin
/xen/tools/hotplug/Linux/
A Dxen-network-common.sh131 log debug "adding $dev to bridge $bridge"
138 log debug "$dev already on bridge $bridge"
152 log debug "removing $dev from bridge $bridge"
159 log debug "$dev not on bridge $bridge"
177 log debug "$bridge MTU is $mtu"
182 log debug "setting $dev MTU to $mtu"
/xen/xen/scripts/
A Ddiff-report.py8 from xen_analysis.diff_tool.debug import Debug
82 debug = Debug(args)
89 debug.debug_print_parsed_report(baseline)
95 debug.debug_print_parsed_report(new_rep)
110 debug.debug_print_parsed_diff(diffs)
119 debug.debug_print_patched_report(baseline_patched)
/xen/docs/
A Dxen-headers43 our $debug=0;
53 "D+" => \$debug,
98 debug(3, $f);
109 sub debug { subroutine
111 return unless $debug >= $msglevel;
126 debug(2,"DEFN $. $type $name $hparams |$text|");
243 debug(1,"$pass $infile => $outfile");
273 debug(3,"$. $_");
378 debug(1,"$pass $File::Find::name excluded");
A Dsupport-matrix-generate74 debug () { function
80 debug "select_commitish $commitish"
122 debug "current_version=$current_version"
153 debug "search_version=$search_version"
164 debug "${args[*]}"
A Dgen-html-index23 our $debug;
26 "D" => \$debug)
80 print "$l: get title: $@" if $@ && $debug;
/xen/config/
A DStubdom.mk.in7 # A debug build of stubdom? //FIXME: Someone make this do something
8 debug := @debug@
/xen/tools/xl/
A Dxl_migrate.c180 const char *rune, int debug, in migrate_domain() argument
207 if (debug) in migrate_domain()
319 static void migrate_receive(int debug, int daemonize, int monitor, in migrate_receive() argument
343 dom_info.debug = debug; in migrate_receive()
481 int debug = 0, daemonize = 1, monitor = 1, pause_after_migration = 0; in main_migrate_receive() local
503 debug = 1; in main_migrate_receive()
526 migrate_receive(debug, daemonize, monitor, pause_after_migration, in main_migrate_receive()
540 int opt, daemonize = 1, monitor = 1, debug = 0, pause_after_migration = 0; in main_migrate() local
569 debug = 1; in main_migrate()
601 debug ? " -d" : "", in main_migrate()
[all …]
A Dxl_saverestore.c172 int paused = 0, debug = 0, daemonize = 1, monitor = 1, in main_restore() local
189 debug = 1; in main_restore()
217 dom_info.debug = debug; in main_restore()
/xen/xen/scripts/xen_analysis/diff_tool/
A Ddebug.py39 if not self.args.debug:
45 if not self.args.debug:
52 if not self.args.debug:
/xen/xen/tools/kconfig/
A Dqconf.cc1129 QString debug; in debug_info() local
1131 debug += "type: "; in debug_info()
1135 debug += "<br>"; in debug_info()
1139 debug += "<br>"; in debug_info()
1153 debug += ": "; in debug_info()
1155 debug += "<br>"; in debug_info()
1161 debug += "<br>"; in debug_info()
1167 debug += "<br>"; in debug_info()
1172 debug += "<br>"; in debug_info()
1175 debug += "<br>"; in debug_info()
[all …]
/xen/xen/
A DKconfig.debug78 bool "Verbose debug messages"
85 bool "Device tree debug messages"
105 This requires a UBSAN capable compiler and it is a debug only feature.
119 Debug trace enables to record debug trace messages which are printed
130 source "arch/$(SRCARCH)/Kconfig.debug"
135 bool "Compile Xen with debug info"
138 Say Y here if you want to build Xen with debug information. This
/xen/tools/fuzz/cpu-policy/
A Dafl-policy-fuzzer.c15 static bool debug; variable
73 if ( debug ) in check_policy()
112 debug = true; in main()
/xen/tools/ocaml/xenstored/
A Ddomain.ml19 let debug fmt = Logging.debug "domain" fmt function
84 debug "domain %d rebind %s => %s"
92 debug "domain %d unbind %s" dom.id (string_of_port_pair dom.ports);
106 debug "domain %d bind %s" id (string_of_port_pair ports);
/xen/tools/libs/light/
A Dlibxl_save_msgs_gen.pl7 our $debug = 0; # produce copious debugging output at run-time?
229 <<END_ALWAYS.($debug ? <<END_DEBUG : '').<<END_ALWAYS);
270 <<END_ALWAYS.($debug ? <<END_DEBUG : '').<<END_ALWAYS);
355 (<<END_ALWAYS.($debug ? <<END_DEBUG : '').<<END_ALWAYS));
/xen/tools/debugger/gdbsx/
A DREADME5 Welcome to gdbsx. gdbsx is a gdbserver program to debug guest kernels and
6 kernel modules. It runs on dom0 running on xen hypervisor and allows debug
26 - Additionally, to debug 32bit loadable kernel modules, please do following:
57 - Must be at least gdb version 6.5-16.x to debug el5 kernels.
70 # Courtesy Zhigang W (http://10.182.120.78/tech/vt/ovm/debug/gdbinit.macros):

Completed in 38 milliseconds

123456