Searched refs:debug (Results 1 - 25 of 311) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/include/lwip/lwip/
H A Ddebug.h37 /** lower two bits indicate debug level
49 /** flag for LWIP_DEBUGF to enable that debug message */
51 /** flag for LWIP_DEBUGF to disable that debug message */
56 /** flag for LWIP_DEBUGF indicating a state debug message (to follow module states) */
60 /** flag for LWIP_DEBUGF to halt after printing this debug message */
78 /** print debug message only if debug message type is enabled...
83 #define LWIP_DEBUGF(debug, message) do { \
88 #define LWIP_DEBUGF(debug, message)
92 #define LWIP_DEBUGF(debug, messag
[all...]
/barrelfish-2018-10-04/tools/harness/
H A Dreprocess.py13 import harness, debug, tests namespace
19 debug.addopts(p, 'debuglevel')
31 debug.current_level = options.debuglevel
37 debug.log('reprocessing %s' % dirname)
38 debug.verbose('parse %s/description.txt for test' % dirname)
49 debug.error('unable to parse description for %s, skipped' % dirname)
52 debug.verbose('locate test "%s"' % testname)
57 debug.error('unknown test "%s" in %s, skipped' % (testname, dirname))
60 debug.verbose('reprocess results')
H A Dharness.py14 import debug namespace
34 debug.verbose("Writing menu.lst to %s" % menu_lst_file_name)
41 debug.verbose('open %s for raw output' % raw_file_name)
46 debug.verbose('harness: setup test')
49 debug.verbose('harness: run test')
56 debug.debug('[%s] %s' % (timestr, self._clean_line(out)))
59 debug.verbose('harness: output complete')
62 debug.error('Interrupted! Performing cleanup...')
66 debug
[all...]
/barrelfish-2018-10-04/include/x86emu/
H A Ddebug.h35 * Description: Header file for debug definitions.
64 # define DEBUG_INSTRUMENT() (M.x86.debug & DEBUG_INSTRUMENT_F)
65 # define DEBUG_DECODE() (M.x86.debug & DEBUG_DECODE_F)
66 # define DEBUG_TRACE() (M.x86.debug & DEBUG_TRACE_F)
67 # define DEBUG_STEP() (M.x86.debug & DEBUG_STEP_F)
68 # define DEBUG_DISASSEMBLE() (M.x86.debug & DEBUG_DISASSEMBLE_F)
69 # define DEBUG_BREAK() (M.x86.debug & DEBUG_BREAK_F)
70 # define DEBUG_SVC() (M.x86.debug & DEBUG_SVC_F)
71 # define DEBUG_SAVE_IP_CS() (M.x86.debug & DEBUG_SAVE_IP_CS_F)
73 # define DEBUG_FS() (M.x86.debug
[all...]
/barrelfish-2018-10-04/include/lwip2/lwip/
H A Ddebug.h68 /** @name Enable/disable debug messages completely (LWIP_DBG_TYPES_ON)
71 /** flag for LWIP_DEBUGF to enable that debug message */
73 /** flag for LWIP_DEBUGF to disable that debug message */
84 /** flag for LWIP_DEBUGF indicating a state debug message (to follow module states) */
88 /** flag for LWIP_DEBUGF to halt after printing this debug message */
139 /** Enable debug message printing, but only if debug message type is enabled
151 #define LWIP_DEBUGF(debug, message) do { \
153 ((debug) & LWIP_DBG_ON) && \
154 ((debug)
[all...]
/barrelfish-2018-10-04/tools/harness/machines/
H A Dgem5.py15 import debug, machines namespace
58 debug.verbose('creating temporary directory for Gem5 files')
60 debug.verbose('Gem5 install directory is %s' % self.tftp_dir)
67 debug.verbose('starting "%s" in gem5.py:reboot' % ' '.join(cmd))
93 debug.verbose("writing menu.lst in build directory")
96 debug.verbose("writing menu.lst in build directory: %s" %
99 debug.verbose("building proper gem5 image")
100 debug.checkcmd(["make", self._machine.imagename],
H A Dfvp.py11 import debug namespace
40 debug.verbose('Creating temporary directory for FVP files')
42 debug.verbose('FVP install directory is %s' % self.tftp_dir)
48 debug.verbose('starting "%s" in FVP:reboot' % ' '.join(cmd))
64 debug.verbose("writing menu.lst in build directory")
67 debug.verbose("writing menu.lst in build directory: %s" %
70 debug.verbose("building proper FVP image")
71 debug.checkcmd(["make", self.imagename],
114 debug.verbose("writing menu.lst in build directory")
117 debug
[all...]
H A Dpandaboard.py10 import debug, eth_machinedata namespace
57 debug.verbose("building proper pandaboard image")
58 debug.checkcmd(["make", self._machine.imagename],
62 debug.verbose("Usbbooting pandaboard; press reset")
63 debug.verbose("build dir: %s" % self._machine.options.builds[0].build_dir)
64 debug.checkcmd(["make", "usbboot_panda"],
80 # debug.verbose("Sending C-A C-X to picocom")
83 debug.verbose("Killing picocom")
149 debug.verbose("building proper pandaboard image")
150 debug
[all...]
H A Dqemu.py11 import debug namespace
57 debug.verbose('creating temporary directory for QEMU TFTP files')
59 debug.verbose('QEMU TFTP directory is %s' % self.tftp_dir)
63 debug.verbose('writing %s' % path)
64 debug.debug(data)
93 debug.verbose('starting "%s"' % ' '.join(cmd))
170 debug.verbose("Writing menu.lst in build directory.")
176 debug.verbose("Building QEMU image.")
177 debug
[all...]
H A Duw.py11 import debug, machines, uw_machinedata namespace
76 debug.verbose('writing %s' % path)
77 debug.debug(data)
84 debug.verbose('relinking %s to %s' % (ip_menu_name, relpath))
99 debug.verbose('executing "console -i %s" to check state' %
117 debug.verbose('starting "console %s"' % self.get_machine_name())
131 debug.verbose('quitting console process (%d)' % self.lockprocess.pid)
139 debug.checkcmd([RACKBOOT] + args + [self.get_machine_name()])
149 debug
[all...]
H A Deth.py11 import debug, eth_machinedata namespace
63 debug.verbose('starting "console %s"' % self._machine.get_machine_name())
77 debug.verbose('quitting console process (%d)' % self.lockprocess.pid)
151 debug.verbose('writing %s' % path)
152 debug.debug(data)
165 debug.verbose('relinking %s to %s' % (ip_menu_name, relpath))
177 debug.verbose('executing "console -i %s" to check state' %
186 debug.checkcmd([RACKBOOT] + args + [self._machine.get_machine_name()])
196 debug
[all...]
H A Dmsrc.py11 import debug, machines, msrc_machinedata namespace
60 debug.verbose('writing %s' % path)
61 debug.debug(data)
68 debug.verbose('relinking %s to %s' % (ip_menu_name, relpath))
83 debug.verbose('executing "console -i %s" to check state' %
101 debug.verbose('starting "console %s"' % self.get_machine_name())
115 debug.verbose('terminating console process (%d)' % self.lockprocess.pid)
121 debug.checkcmd([RACKBOOT] + args + [self.get_machine_name()])
128 debug
[all...]
/barrelfish-2018-10-04/tools/harness/siteconfig/
H A D__init__.py11 import debug namespace
34 debug.warning("unable to guess site, using ETH... expect breakage!")
/barrelfish-2018-10-04/lib/dma/ioat/
H A Dioat_dma_dca.c14 #include <debug.h>
/barrelfish-2018-10-04/kernel/arch/x86_32/
H A Ddebug.c17 #include <arch/x86/debug.h>
H A Dpaging.c58 debug(SUBSYS_PAGING, "mapped!\n");
61 debug(SUBSYS_PAGING, "already existing! remapping it\n");
81 debug(SUBSYS_PAGING, "mapped!\n");
84 debug(SUBSYS_PAGING, "already existing! remapping it\n");
114 debug(SUBSYS_PAGING, "mapped!\n");
117 debug(SUBSYS_PAGING, "already existing! remapping it\n");
182 debug(SUBSYS_PAGING, "Mapping 2M page: vaddr = 0x%"PRIxLVADDR", addr = 0x%"PRIxLVADDR", "
188 debug(SUBSYS_PAGING, "Mapping 4M page: vaddr = 0x%"PRIxLVADDR", addr = 0x%"PRIxLVADDR", "
193 debug(SUBSYS_PAGING, "Mapping 4K page: vaddr = 0x%"PRIxLVADDR", "
239 debug(SUBSYS_PAGIN
[all...]
/barrelfish-2018-10-04/lib/acpica/source/tools/acpidump/
H A Dapfiles_barrelfish.c124 #include <barrelfish/debug.h>
/barrelfish-2018-10-04/lib/openssl-1.0.0d/util/pl/
H A Dultrix.pl13 if ($debug)
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/include/
H A Ddebug.h4 #include <barrelfish/debug.h>
/barrelfish-2018-10-04/usr/monitor/arch/arm/
H A Dmonitor_server.c16 #include <barrelfish/debug.h> // XXX: To set the cap_identify_reply handler
/barrelfish-2018-10-04/kernel/arch/k1om/
H A Dmcheck.c49 debug(SUBSYS_STARTUP, "Machine-check exceptions supported\n");
51 debug(SUBSYS_STARTUP, "Machine-check architecture supported, "
/barrelfish-2018-10-04/tools/harness/tests/
H A Dmt_waitset.py14 import debug namespace
24 debug.verbose("%s: increasing test timeout delta by factor 3: new = %s" %
/barrelfish-2018-10-04/lib/skb/
H A Dskb_internal.h13 #include <barrelfish/debug.h>
/barrelfish-2018-10-04/usr/tests/usleeptest/
H A Dusleeptest.c12 #include <barrelfish/debug.h>
/barrelfish-2018-10-04/lib/libc/regex/grot/
H A DMakefile29 SRC = $(REGSRC) debug.c main.c $(SRCMISSING)
33 OBJS = $(OBJPRODN) debug.o main.o $(OBJMISSING)
37 LINTC = regcomp.c regexec.c regerror.c regfree.c debug.c main.c $(SRCMISSING)
59 regcomp.o regexec.o regfree.o debug.o: utils.h regex.h regex2.h
64 debug.o: debug.ih
65 main.o: debug.ih main.ih split.ih

Completed in 119 milliseconds

1234567891011>>