Symbol: devsw
stand/boot/common/bootstrap.h
43
struct devsw *d_dev;
stand/boot/common/commands.c
493
for (i = 0; devsw[i] != NULL; i++) {
stand/boot/common/commands.c
494
if (devsw[i]->dv_print != NULL){
stand/boot/common/commands.c
495
sprintf(line, "%s devices:\n", devsw[i]->dv_name);
stand/boot/common/commands.c
498
devsw[i]->dv_print(verbose);
stand/boot/common/commands.c
500
sprintf(line, "%s: (unknown)\n", devsw[i]->dv_name);
stand/boot/common/dev_net.c
91
struct devsw netdev = {
stand/boot/common/dev_net.h
30
extern struct devsw netdev;
stand/boot/common/misc.c
210
for (i = 0; devsw[i] != NULL; ++i)
stand/boot/common/misc.c
211
if (devsw[i]->dv_cleanup != NULL)
stand/boot/common/misc.c
212
(devsw[i]->dv_cleanup)();
stand/boot/efi/include/efilib.h
37
extern struct devsw efipart_dev;
stand/boot/efi/include/efilib.h
38
extern struct devsw efinet_dev;
stand/boot/efi/include/efilib.h
43
struct devsw *d_dev;
stand/boot/efi/include/efilib.h
69
int efi_register_handles(struct devsw *, EFI_HANDLE *, EFI_HANDLE *, int);
stand/boot/efi/include/efilib.h
70
EFI_HANDLE efi_find_handle(struct devsw *, int);
stand/boot/efi/include/efilib.h
71
int efi_handle_lookup(EFI_HANDLE, struct devsw **, int *, uint64_t *);
stand/boot/efi/include/efilib.h
72
int efi_handle_update_dev(EFI_HANDLE, struct devsw *, int, uint64_t);
stand/boot/efi/libefi/efinet.c
250
struct devsw efinet_dev = {
stand/boot/efi/libefi/efipart.c
50
struct devsw efipart_dev = {
stand/boot/efi/libefi/handles.c
102
efi_handle_update_dev(EFI_HANDLE h, struct devsw *dev, int unit,
stand/boot/efi/libefi/handles.c
36
struct devsw *dev;
stand/boot/efi/libefi/handles.c
45
efi_register_handles(struct devsw *sw, EFI_HANDLE *handles,
stand/boot/efi/libefi/handles.c
68
efi_find_handle(struct devsw *dev, int unit)
stand/boot/efi/libefi/handles.c
83
efi_handle_lookup(EFI_HANDLE h, struct devsw **dev, int *unit, uint64_t *extra)
stand/boot/efi/loader/conf.c
35
struct devsw *devsw[] = {
stand/boot/efi/loader/devicename.c
102
if (devsw[i] == NULL)
stand/boot/efi/loader/devicename.c
87
struct devsw *dv;
stand/boot/efi/loader/devicename.c
97
for (i = 0; devsw[i] != NULL; i++) {
stand/boot/efi/loader/devicename.c
98
dv = devsw[i];
stand/boot/efi/loader/main.c
199
struct devsw *dev;
stand/boot/efi/loader/main.c
337
for (i = 0; devsw[i] != NULL; i++)
stand/boot/efi/loader/main.c
338
if (devsw[i]->dv_init != NULL)
stand/boot/efi/loader/main.c
339
(devsw[i]->dv_init)();
stand/boot/efi/loader/main.c
459
for (i = 0; devsw[i] != NULL; ++i)
stand/boot/efi/loader/main.c
460
if (devsw[i]->dv_cleanup != NULL)
stand/boot/efi/loader/main.c
461
(devsw[i]->dv_cleanup)();
stand/boot/pc32/libi386/bioscd.c
98
struct devsw bioscd = {
stand/boot/pc32/libi386/biosdisk.c
128
struct devsw biosdisk = {
stand/boot/pc32/libi386/devicename.c
87
struct devsw *dv;
stand/boot/pc32/libi386/devicename.c
97
for (i = 0, dv = NULL; devsw[i] != NULL; i++) {
stand/boot/pc32/libi386/devicename.c
98
if (!strncmp(devspec, devsw[i]->dv_name, strlen(devsw[i]->dv_name))) {
stand/boot/pc32/libi386/devicename.c
99
dv = devsw[i];
stand/boot/pc32/libi386/libi386.h
38
struct devsw *d_dev;
stand/boot/pc32/libi386/libi386.h
96
extern struct devsw bioscd;
stand/boot/pc32/libi386/libi386.h
97
extern struct devsw biosdisk;
stand/boot/pc32/libi386/libi386.h
98
extern struct devsw pxedisk;
stand/boot/pc32/libi386/pxe.c
125
struct devsw pxedisk = {
stand/boot/pc32/loader/conf.c
46
struct devsw *devsw[] = {
stand/boot/pc32/loader/main.c
238
for (i = 0; devsw[i] != NULL; i++) {
stand/boot/pc32/loader/main.c
240
if (devsw[i]->dv_init != NULL)
stand/boot/pc32/loader/main.c
241
(devsw[i]->dv_init)();
stand/boot/pc32/loader/main.c
361
for (i = 0; devsw[i] != NULL; ++i)
stand/boot/pc32/loader/main.c
362
if (devsw[i]->dv_cleanup != NULL)
stand/boot/pc32/loader/main.c
363
(devsw[i]->dv_cleanup)();
stand/lib/stand.h
151
extern struct devsw netdev;
stand/lib/stand.h
158
struct devsw *f_dev; /* pointer to device operations */
stand/lib/stand.h
385
extern struct devsw *devsw[];