| /freebsd-12-stable/stand/userboot/userboot/ |
| D | devicename.c | 105 if (strncmp(devspec, devsw[i]->dv_name, in userboot_parsedev() 106 strlen(devsw[i]->dv_name)) == 0) { in userboot_parsedev() 115 np = (devspec + strlen(dv->dv_name)); in userboot_parsedev() 191 sprintf(buf, "%s%d:", dev->d_dev->dv_name, dev->d_unit); in userboot_fmtdev() 198 sprintf(buf, "%s%d:", dev->d_dev->dv_name, dev->d_unit); in userboot_fmtdev() 205 sprintf(buf, "%s%d:", dev->d_dev->dv_name, dev->d_unit); in userboot_fmtdev()
|
| D | host.c | 124 printf("%s devices:", host_dev.dv_name); in host_dev_print() 175 .dv_name = "host",
|
| D | userboot_disk.c | 128 printf("%s devices:", userboot_disk.dv_name); in userdisk_print()
|
| /freebsd-12-stable/stand/mips/beri/loader/ |
| D | devicename.c | 100 if (!strncmp(devspec, devsw[i]->dv_name, strlen(devsw[i]->dv_name))) { in beri_arch_parsedev() 109 np = (devspec + strlen(dv->dv_name)); in beri_arch_parsedev() 177 sprintf(buf, "%s%d:", dev->dd.d_dev->dv_name, dev->dd.d_unit); in beri_arch_fmtdev() 185 sprintf(buf, "%s%d:", dev->dd.d_dev->dv_name, dev->dd.d_unit); in beri_arch_fmtdev()
|
| D | beri_disk_cfi.c | 52 .dv_name = "cfi", 122 printf("%s devices:", beri_cfi_disk.dv_name); in beri_cfi_disk_print()
|
| D | beri_disk_sdcard.c | 52 .dv_name = "sdcard", 128 printf("%s devices:", beri_sdcard_disk.dv_name); in beri_sdcard_disk_print()
|
| /freebsd-12-stable/stand/common/ |
| D | vdisk.c | 47 .dv_name = "vdisk", 101 argv[0], argv[1], vdisk_dev.dv_name, in command_mapvd() 181 vdisk_dev.dv_name, vd->vdisk_unit); in command_mapvd() 199 printf("usage: %s %sN\n", argv[0], vdisk_dev.dv_name); in command_unmapvd() 203 len = strlen(vdisk_dev.dv_name); in command_unmapvd() 204 if (strncmp(vdisk_dev.dv_name, argv[1], len) != 0) { in command_unmapvd() 380 printf("%s devices:", vdisk_dev.dv_name); in vdisk_print() 393 " %s%d", vdisk_dev.dv_name, vd->vdisk_unit); in vdisk_print()
|
| D | dev_net.c | 133 devname = dev->d_dev->dv_name; in net_open() 352 printf("%s devices:", netdev.dv_name); in net_print() 360 printf("\t%s%d:", netdev.dv_name, cnt++); in net_print()
|
| D | md.c | 151 printf("%s devices:", md_dev.dv_name); in md_print()
|
| /freebsd-12-stable/stand/uboot/lib/ |
| D | devicename.c | 100 if (!strncmp(devspec, devsw[i]->dv_name, in uboot_parsedev() 101 strlen(devsw[i]->dv_name))) { in uboot_parsedev() 110 np = (devspec + strlen(dv->dv_name)); in uboot_parsedev() 180 sprintf(buf, "%s%d:", dev->dd.d_dev->dv_name, dev->dd.d_unit); in uboot_fmtdev()
|
| D | disk.c | 49 printf("%s%d: ", dev->dd.d_dev->dv_name, dev->dd.d_unit); \ 250 printf("%s devices:", uboot_storage.dv_name); in stor_print()
|
| /freebsd-12-stable/stand/efi/libefi/ |
| D | devicename.c | 99 if (!strncmp(devspec, dv->dv_name, strlen(dv->dv_name))) in efi_parsedev() 105 np = devspec + strlen(dv->dv_name); in efi_parsedev() 193 sprintf(buf, "%s%d:", dev->d_dev->dv_name, dev->d_unit); in efi_fmtdev()
|
| D | efinet.c | 346 .dv_name = "net", 449 printf("%s devices:", efinet_dev.dv_name); in efinet_dev_print() 455 printf(" %s%d:", efinet_dev.dv_name, unit); in efinet_dev_print()
|
| D | efizfs.c | 116 efipart_hddev.dv_name, hd->pd_unit, pd->pd_unit); in efi_zfs_probe()
|
| D | efipart.c | 73 .dv_name = "fd", 85 .dv_name = "cd", 97 .dv_name = "disk", 801 printf("%s devices:", dev->dv_name); in efipart_print_common() 817 " %s%d", dev->dv_name, pd->pd_unit); in efipart_print_common()
|
| /freebsd-12-stable/stand/i386/libi386/ |
| D | devicename.c | 99 if (!strncmp(devspec, devsw[i]->dv_name, strlen(devsw[i]->dv_name))) { in i386_parsedev() 107 np = (devspec + strlen(dv->dv_name)); in i386_parsedev() 188 sprintf(buf, "%s%d:", dev->dd.d_dev->dv_name, dev->dd.d_unit); in i386_fmtdev()
|
| D | biosdisk.c | 160 .dv_name = "fd", 172 .dv_name = "cd", 184 .dv_name = "disk", 327 biosfd.dv_name, unit); in fd_init() 356 bioshd.dv_name, unit); in bd_init() 667 const char *dv_name; in bd_int13probe() local 670 dv_name = biosfd.dv_name; in bd_int13probe() 672 dv_name = bioshd.dv_name; in bd_int13probe() 675 dv_name, bd->bd_unit); in bd_int13probe() 721 printf("%s devices:", dev->dv_name); in bd_print_common() [all …]
|
| D | pxe.c | 114 .dv_name = "net", 252 printf("%s devices:", pxedisk.dv_name); in pxe_print() 255 printf(" %s0:", pxedisk.dv_name); in pxe_print()
|
| /freebsd-12-stable/stand/libofw/ |
| D | devicename.c | 101 if (strncmp(dv->dv_name, type, strlen(dv->dv_name)) == 0) in ofw_parsedev() 118 p = devspec + strlen(dv->dv_name); in ofw_parsedev()
|
| /freebsd-12-stable/tools/tools/bootparttest/ |
| D | bootparttest.c | 47 const char dv_name[8]; member 58 .dv_name = "disk",
|
| /freebsd-12-stable/stand/usb/storage/ |
| D | umass_loader.c | 55 .dv_name = "umass", 188 printf("%s devices:", umass_disk.dv_name); in umass_disk_print()
|
| /freebsd-12-stable/stand/uboot/common/ |
| D | main.c | 499 printf("Found U-Boot device: %s\n", devsw[i]->dv_name); in main() 505 strcmp(devsw[i]->dv_name, "disk") == 0) { in main() 512 strcmp(devsw[i]->dv_name, "net") == 0) in main()
|
| /freebsd-12-stable/stand/powerpc/kboot/ |
| D | main.c | 231 if (strncmp(dv->dv_name, devpath, strlen(dv->dv_name)) == 0) in kboot_getdev()
|
| /freebsd-12-stable/stand/libsa/zfs/ |
| D | zfs.c | 894 printf("%s devices:", zfs_dev.dv_name); in zfs_dev_print() 969 .dv_name = "zfs", 1060 sprintf(buf, "%s:%s:", dev->dd.d_dev->dv_name, spa->spa_name); in zfs_fmtdev() 1062 sprintf(buf, "%s:%s/%s:", dev->dd.d_dev->dv_name, spa->spa_name, in zfs_fmtdev()
|
| /freebsd-12-stable/stand/i386/zfsboot/ |
| D | zfsboot.c | 628 devsw[i]->dv_name); in parse_cmd() 689 snprintf(devname, sizeof (devname), "%s%d:", bioshd.dv_name, in i386_zfs_probe()
|