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

/freebsd-10-stable/sys/boot/zfs/
H A Ddevicename_stubs.c35 zfs_parsedev(struct zfs_devdesc *dev, const char *devspec, const char **path) argument
H A Dlibzfs.h60 int zfs_parsedev(struct zfs_devdesc *dev, const char *devspec,
H A Dzfs.c600 zfs_parsedev(struct zfs_devdesc *dev, const char *devspec, const char **path) argument
610 np = devspec;
/freebsd-10-stable/sys/boot/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.h63 int i386_getdev(void **vdev, const char *devspec, const char **path);
/freebsd-10-stable/sys/boot/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.h45 extern int ofw_getdev(void **vdev, const char *devspec, const char **path);
/freebsd-10-stable/sys/boot/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-10-stable/sys/boot/ia64/common/
H A Ddevicename.c43 * path in (devspec). If it contains an explicit device specification,
47 ia64_getdev(void **vdev, const char *devspec, const char **path) argument
56 if (devspec == NULL || *devspec == '/' || !strchr(devspec, ':')) {
59 *path = devspec;
63 /* Parse the device name off the beginning of the devspec. */
64 return (ia64_parsedev(dev, devspec, path));
69 * at the beginning of (devspec). Return a pointer to the remaining
72 * In all cases, the beginning of (devspec) i
81 ia64_parsedev(struct devdesc **dev, const char *devspec, const char **path) argument
[all...]
/freebsd-10-stable/sys/boot/efi/loader/
H A Ddevicename.c49 * path in (devspec). If it contains an explicit device specification,
53 efi_getdev(void **vdev, const char *devspec, const char **path) argument
62 if (devspec == NULL || *devspec == '/' || !strchr(devspec, ':')) {
65 *path = devspec;
69 /* Parse the device name off the beginning of the devspec. */
70 return (efi_parsedev(dev, devspec, path));
75 * at the beginning of (devspec). Return a pointer to the remaining
78 * In all cases, the beginning of (devspec) i
87 efi_parsedev(struct devdesc **dev, const char *devspec, const char **path) argument
[all...]
H A Dloader_efi.h38 int efi_getdev(void **vdev, const char *devspec, const char **path);
/freebsd-10-stable/sys/boot/powerpc/ps3/
H A Ddevicename.c39 static int ps3_parsedev(struct ps3_devdesc **dev, const char *devspec,
44 * path in (devspec). If it contains an explicit device specification,
48 ps3_getdev(void **vdev, const char *devspec, const char **path) argument
57 if ((devspec == NULL) || (devspec[0] == '/') ||
58 (strchr(devspec, ':') == NULL)) {
62 *path = devspec;
67 * Try to parse the device name off the beginning of the devspec.
69 return (ps3_parsedev(dev, devspec, path));
74 * at the beginning of (devspec)
87 ps3_parsedev(struct ps3_devdesc **dev, const char *devspec, const char **path) argument
[all...]
H A Dmain.c49 int ps3_getdev(void **vdev, const char *devspec, const char **path);
/freebsd-10-stable/sys/boot/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-10-stable/sys/boot/common/
H A Ddisk.h106 extern int disk_parsedev(struct disk_devdesc *dev, const char *devspec,
H A Ddisk.c444 disk_parsedev(struct disk_devdesc *dev, const char *devspec, const char **path) argument
450 np = devspec;

Completed in 776 milliseconds