OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DPRINTF
(Results
1 - 25
of
769
) sorted by relevancy
1
2
3
4
5
6
7
8
9
10
11
>>
/src/share/examples/puffs/pgfs/
pgfs_debug.h
31
#define
DPRINTF
(...) _dprintf(__func__, __VA_ARGS__);
/src/sys/compat/aoutm68k/
aoutm68k_util.h
38
#define
DPRINTF
(a) uprintf a;
40
#define
DPRINTF
(a)
/src/sys/arch/mmeye/stand/boot/
boot.h
30
#define
DPRINTF
(x) printf x;
32
#define
DPRINTF
(x)
/src/sys/arch/cobalt/stand/boot/
boot.h
32
#define
DPRINTF
(x) printf x;
34
#define
DPRINTF
(x)
/src/sys/arch/sparc/stand/ofwboot/
boot.h
35
#define
DPRINTF
(x) printf x;
37
#define
DPRINTF
(x)
/src/sys/arch/sparc64/sparc64/
ofw_patch.h
39
#define
DPRINTF
(l, s) do { if (autoconf_debug & l) printf s; } while (0)
41
#define
DPRINTF
(l, s)
/src/sys/compat/linux/common/
linux_oldmmap.c
64
#undef
DPRINTF
66
#define
DPRINTF
(a) uprintf a
68
#define
DPRINTF
(a)
90
DPRINTF
(("old_mmap: 0x%x\n", lmap.lm_offset));
101
DPRINTF
(("old_mmap(%#x, %u, %u, %u, %d, %u) = %d\n",
/src/sys/kern/
subr_disklabel.c
47
#define
DPRINTF
(a, ...) printf(a, ##__VA_ARGS__)
49
#define
DPRINTF
(a, ...) __nothing
66
DPRINTF
("%s: secpercyl/secsize %u/%u\n", __func__,
79
DPRINTF
("%s: bad magic %#x/%#x != %#x, partitions %u != %u"
90
DPRINTF
("%s: partition not found\n", __func__);
105
DPRINTF
("%s: mismatched offset/size", __func__);
/src/sys/arch/ews4800mips/ews4800mips/
vtoc.c
44
#define
DPRINTF
(fmt, args...) printf(fmt, ##args)
46
#define
DPRINTF
(arg...) ((void)0)
103
DPRINTF
("Invalid VTOC.\n");
107
DPRINTF
("[VTOC] (%d byte)\n", sizeof *vtoc);
108
DPRINTF
("Bootinfo = %08x %08x %08x\n",
110
DPRINTF
("Magic = %08x\n", vtoc->magic);
111
DPRINTF
("Version = %d\n", vtoc->version);
112
DPRINTF
("Volume = %s\n", vtoc->volume);
113
DPRINTF
("Sector size = %d\n", vtoc->sector_size_byte);
114
DPRINTF
("# of partitions = %d\n", vtoc->npartitions)
[
all
...]
pdinfo.c
43
#define
DPRINTF
(fmt, args...) printf(fmt, ##args)
45
#define
DPRINTF
(arg...) ((void)0)
76
DPRINTF
("no physical disk info.\n");
84
DPRINTF
("physical disk sector size %dbyte\n", sizeof *disk);
85
DPRINTF
("[disk]\n");
86
DPRINTF
("drive_id = %#x\n", disk->drive_id);
87
DPRINTF
("magic = %#x\n", disk->magic);
88
DPRINTF
("version = %d\n", disk->version);
89
DPRINTF
("serial # %s\n", disk->device_serial_number);
90
#define _(x)
DPRINTF
(#x " = %d\n", geom->x)
[
all
...]
/src/sys/fs/v7fs/
v7fs_dirent.c
57
#define
DPRINTF
(fmt, args...) printf("%s: " fmt, __func__, ##args)
59
#define
DPRINTF
(fmt, args...) ((void)0)
73
DPRINTF
("Invalid inode# %d %s\n", ino, dir->name);
v7fs_io.c
58
#define
DPRINTF
(fmt, args...) printf("%s: " fmt, __func__, ##args)
60
#define
DPRINTF
(fmt, args...) ((void)0)
76
DPRINTF
("No scratch area. increase V7FS_SELF_NSCRATCH\n");
83
DPRINTF
("*** I/O error block %ld\n", (long)blk);
98
DPRINTF
("*** I/O error block %ld\n",(long)blk);
v7fs_superblock_util.c
56
#define
DPRINTF
(fmt, args...) printf("%s: " fmt, __func__, ##args)
59
#define
DPRINTF
(fmt, args...) ((void)0)
75
DPRINTF
("block %d/%d, inode %d/%d\n", stat->free_blocks,
/src/sys/arch/alpha/tc/
tc_bootdev.c
46
#define
DPRINTF
(x) if (bootdev_debug) printf x
79
DPRINTF
(("\ntcdsdev = %s\n",
92
DPRINTF
(("\nscsidev = %s\n",
151
DPRINTF
(("\nbooted_device = %s\n", device_xname(dev)));
/src/sys/arch/evbppc/obs405/
rbus_machdep.c
52
# define
DPRINTF
printf
54
# define
DPRINTF
while (0) printf
60
DPRINTF
("md_space_map: 0x%x, 0x%x, 0x%x\n", t->pbs_base, bpa, size);
70
DPRINTF
("md_space_unmap: 0x%x 0x%x\n", t->pbs_base, bsh);
/src/sys/arch/macppc/dev/
fancontrol.c
44
#define
DPRINTF
printf
46
#define
DPRINTF
while (0) printf
60
DPRINTF
("nodata\n");
70
DPRINTF
("%s %d %d\n", z->name, temp, z->Tmin);
78
DPRINTF
("diff %d base %d %d sp %d\n",
/src/sys/arch/sun68k/stand/libsa/
promdev.c
46
# define
DPRINTF
(fmt, ...) \
52
# define
DPRINTF
(fmt, ...)
78
DPRINTF
("Boot device type: %s", ops->b_desc);
102
DPRINTF
("devaddr=%#x", si->si_devaddr);
107
DPRINTF
("dmaaddr=%#x", si->si_dmaaddr);
112
DPRINTF
("devdata=%#x", si->si_devdata);
117
DPRINTF
("calling prom open... %p", si);
119
DPRINTF
("prom open returned %d", error);
144
DPRINTF
("calling prom close... %p", si);
/src/sys/compat/linux/arch/i386/
linux_exec_machdep.c
51
#define
DPRINTF
(a)
53
#define
DPRINTF
(a) uprintf a
/src/sys/dev/ic/
fmv.c
53
#define
DPRINTF
printf
55
#define
DPRINTF
while (/* CONSTCOND */0) printf
72
DPRINTF
("%s: invalid ethernet address\n", __func__);
98
DPRINTF
("%s: unknown card\n", __func__);
/src/sys/dev/isa/
ess_isa.c
50
#define
DPRINTF
(x) printf x
52
#define
DPRINTF
(x) {}
87
DPRINTF
(("ess_isa_probe: Couldn't map I/O region at %x, "
103
DPRINTF
(("ess_isa_probe succeeded (score %d)\n", ret));
117
DPRINTF
(("ess_isa_probe failed\n"));
143
DPRINTF
(("ess_isa_attach: Couldn't map I/O region at %x, "
/src/sys/dev/usb/
umcpmio_transport.c
46
#define
DPRINTF
(x) do { if (umcpmiodebug) printf x; } while (0)
50
#define
DPRINTF
(x) __nothing
150
DPRINTF
(("umcpmio_send_report: uhidev_write errored with:"
169
DPRINTF
(("umcpmio_send_report:"
179
DPRINTF
(("umcpmio_send_report:"
188
DPRINTF
(("umcpmio_send_report: err_count exceeded:"
197
DPRINTF
(("umcpmio_send_report: EWOULDBLOCK:"
205
DPRINTF
(("umcpmio_send_report:"
/src/sys/dev/wscons/
tpcalib.c
46
#define
DPRINTF
(arg) if (tpcalib_debug) printf arg;
48
#define
DPRINTF
(arg)
127
DPRINTF
(("tpcalib: x=%d~%d y=%d~%d\n",
130
DPRINTF
(("tpcalib: Ax=%d Bx=%d Cx=%d\n",
132
DPRINTF
(("tpcalib: Ay=%d By=%d Cy=%d\n",
/src/tests/lib/libc/sys/
t_ptrace_wait.c
98
#define
DPRINTF
(a, ...) do \
/src/sys/arch/alpha/pci/
pci_bootdev.c
51
#define
DPRINTF
(x) if (bootdev_debug) printf x
85
DPRINTF
(("\npcidev = %s\n", device_xname(dev)));
102
DPRINTF
(("\nctrlrdev = %s\n",
143
DPRINTF
(("\natapi info: drive %d, channel %d\n",
145
DPRINTF
(("bootdev info: unit: %d, channel: %d\n",
187
DPRINTF
(("\nbooted_device = %s\n", device_xname(dev)));
/src/sys/arch/arm/gemini/
obio_ehci.c
58
#define
DPRINTF
(x) if (ehcidebug) printf x
61
#define
DPRINTF
(x)
121
DPRINTF
(("%s: offs=%d\n", devname, sc->sc_offs));
Completed in 24 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>
Indexes created Wed Apr 01 00:32:07 UTC 2026