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

/freebsd-13-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.h150 int zfs_parsedev(struct zfs_devdesc *dev, const char *devspec,
H A Dzfs.c1555 zfs_parsedev(struct zfs_devdesc *dev, const char *devspec, const char **path) argument
1565 np = devspec;
/freebsd-13-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-13-stable/stand/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.h45 extern int ofw_getdev(void **vdev, const char *devspec, const char **path);
/freebsd-13-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-13-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.h52 int uboot_getdev(void **vdev, const char *devspec, const char **path);
/freebsd-13-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-13-stable/stand/efi/libefi/
H A Ddevicename.c46 * path in (devspec). If it contains an explicit device specification,
50 efi_getdev(void **vdev, const char *devspec, const char **path) argument
59 if (devspec == NULL || *devspec == '/' || !strchr(devspec, ':')) {
62 *path = devspec;
66 /* Parse the device name off the beginning of the devspec. */
67 return (efi_parsedev(dev, devspec, path));
72 * at the beginning of (devspec). Return a pointer to the remaining
75 * In all cases, the beginning of (devspec) i
84 efi_parsedev(struct devdesc **dev, const char *devspec, const char **path) argument
[all...]
/freebsd-13-stable/stand/powerpc/kboot/
H A Dmain.c42 int kboot_getdev(void **vdev, const char *devspec, const char **path);
214 kboot_getdev(void **vdev, const char *devspec, const char **path) argument
221 if (strchr(devspec, ':') != NULL) {
222 devpath = devspec;
223 filepath = strchr(devspec, ':') + 1;
226 filepath = devspec;
239 *path = strchr(devspec, ':') + 1;
/freebsd-13-stable/stand/efi/include/
H A Defilib.h75 int efi_getdev(void **vdev, const char *devspec, const char **path);
/freebsd-13-stable/stand/common/
H A Ddisk.c413 disk_parsedev(struct disk_devdesc *dev, const char *devspec, const char **path) argument
419 np = devspec;

Completed in 292 milliseconds