Searched refs:devspec (Results 1 - 15 of 15) sorted by relevance

/freebsd-11-stable/stand/libsa/zfs/
H A Ddevicename_stubs.c35 zfs_parsedev(struct zfs_devdesc *dev, const char *devspec, const char **path) argument
H A Dlibzfs.h47 int zfs_parsedev(struct zfs_devdesc *dev, const char *devspec,
H A Dzfs.c731 zfs_parsedev(struct zfs_devdesc *dev, const char *devspec, const char **path) argument
741 np = devspec;
/freebsd-11-stable/stand/uboot/lib/
H A Ddevicename.c37 static int uboot_parsedev(struct uboot_devdesc **dev, const char *devspec,
42 * path in (devspec). If it contains an explicit device specification,
46 uboot_getdev(void **vdev, const char *devspec, const char **path) argument
55 if ((devspec == NULL) || (devspec[0] == '/') ||
56 (strchr(devspec, ':') == NULL)) {
60 *path = devspec;
65 * Try to parse the device name off the beginning of the devspec.
67 return (uboot_parsedev(dev, devspec, path));
72 * at the beginning of (devspec)
85 uboot_parsedev(struct uboot_devdesc **dev, const char *devspec, const char **path) argument
[all...]
H A Dlibuboot.h51 int uboot_getdev(void **vdev, const char *devspec, const char **path);
/freebsd-11-stable/stand/mips/beri/loader/
H A Ddevicename.c37 const char *devspec, const char **path);
41 * path in (devspec). If it contains an explicit device specification,
45 beri_arch_getdev(void **vdev, const char *devspec, const char **path) argument
54 if ((devspec == NULL) ||
55 (devspec[0] == '/') ||
56 (strchr(devspec, ':') == NULL)) {
60 *path = devspec;
65 * Try to parse the device name off the beginning of the devspec
67 return(beri_arch_parsedev(dev, devspec, path));
72 * at the beginning of (devspec)
85 beri_arch_parsedev(struct disk_devdesc **dev, const char *devspec, const char **path) argument
[all...]
/freebsd-11-stable/stand/i386/libi386/
H A Ddevicename.c37 static int i386_parsedev(struct i386_devdesc **dev, const char *devspec, const char **path);
41 * path in (devspec). If it contains an explicit device specification,
45 i386_getdev(void **vdev, const char *devspec, const char **path) argument
54 if ((devspec == NULL) ||
55 (devspec[0] == '/') ||
56 (strchr(devspec, ':') == NULL)) {
60 *path = devspec;
65 * Try to parse the device name off the beginning of the devspec
67 return(i386_parsedev(dev, devspec, path));
72 * at the beginning of (devspec)
85 i386_parsedev(struct i386_devdesc **dev, const char *devspec, const char **path) argument
[all...]
H A Dlibi386.h83 int i386_getdev(void **vdev, const char *devspec, const char **path);
/freebsd-11-stable/stand/ofw/libofw/
H A Ddevicename.c40 * path in (devspec). If it contains an explicit device specification,
44 ofw_getdev(void **vdev, const char *devspec, const char **path) argument
53 if ((devspec == NULL) ||
54 ((strchr(devspec, '@') == NULL) &&
55 (strchr(devspec, ':') == NULL))) {
59 *path = devspec;
64 * Try to parse the device name off the beginning of the devspec
66 return(ofw_parsedev(dev, devspec, path));
71 * at the beginning of (devspec). Return a pointer to the remaining
75 ofw_parsedev(struct ofw_devdesc **dev, const char *devspec, cons argument
[all...]
H A Dlibofw.h44 extern int ofw_getdev(void **vdev, const char *devspec, const char **path);
/freebsd-11-stable/stand/userboot/userboot/
H A Ddevicename.c41 static int userboot_parsedev(struct disk_devdesc **dev, const char *devspec, const char **path);
45 * path in (devspec). If it contains an explicit device specification,
49 userboot_getdev(void **vdev, const char *devspec, const char **path) argument
58 if ((devspec == NULL) ||
59 (devspec[0] == '/') ||
60 (strchr(devspec, ':') == NULL)) {
64 *path = devspec;
69 * Try to parse the device name off the beginning of the devspec
71 return(userboot_parsedev(dev, devspec, path));
76 * at the beginning of (devspec)
89 userboot_parsedev(struct disk_devdesc **dev, const char *devspec, const char **path) argument
[all...]
/freebsd-11-stable/stand/efi/libefi/
H A Ddevicename.c48 * path in (devspec). If it contains an explicit device specification,
52 efi_getdev(void **vdev, const char *devspec, const char **path) argument
61 if (devspec == NULL || *devspec == '/' || !strchr(devspec, ':')) {
64 *path = devspec;
68 /* Parse the device name off the beginning of the devspec. */
69 return (efi_parsedev(dev, devspec, path));
74 * at the beginning of (devspec). Return a pointer to the remaining
77 * In all cases, the beginning of (devspec) i
86 efi_parsedev(struct devdesc **dev, const char *devspec, const char **path) argument
[all...]
/freebsd-11-stable/stand/powerpc/kboot/
H A Dmain.c43 int kboot_getdev(void **vdev, const char *devspec, const char **path);
215 kboot_getdev(void **vdev, const char *devspec, const char **path) argument
222 if (strchr(devspec, ':') != NULL) {
223 devpath = devspec;
224 filepath = strchr(devspec, ':') + 1;
227 filepath = devspec;
240 *path = strchr(devspec, ':') + 1;
/freebsd-11-stable/stand/efi/include/
H A Defilib.h73 int efi_getdev(void **vdev, const char *devspec, const char **path);
/freebsd-11-stable/stand/common/
H A Ddisk.c398 disk_parsedev(struct disk_devdesc *dev, const char *devspec, const char **path) argument
404 np = devspec;

Completed in 118 milliseconds