HomeSort by: relevance | last modified time | path
    Searched refs:devspec (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/arch/x68k/stand/libsa/
devopen.c 36 extern struct devspec devspec[]; /* defined in conf.c */
70 for (i = 0; devspec[i].ds_name != 0; i++) {
71 if (strncmp (devspec[i].ds_name, s,
72 strlen(devspec[i].ds_name)) == 0)
76 if (devspec[i].ds_name == 0)
78 s += strlen(devspec[i].ds_name);
79 *dev = devspec[i].ds_dev;
81 if (devspec[i].ds_net) {
86 if (*unit < 0 || *unit > devspec[i].ds_maxunit
    [all...]
libx68k.h 33 struct devspec { struct
  /src/sys/arch/ia64/stand/efi/libefi/
devicename.c 44 static int efi_parsedev(struct efi_devdesc **dev, const char *devspec, const char **path);
48 * path in (devspec). If it contains an explicit device specification,
52 efi_getdev(void **vdev, const char *devspec, const char **path)
61 if ((devspec == NULL) ||
62 (devspec[0] == '/') ||
63 (strchr(devspec, ':') == NULL)) {
67 *path = devspec;
72 * Try to parse the device name off the beginning of the devspec
74 return(efi_parsedev(dev, devspec, path));
79 * at the beginning of (devspec). Return a pointer to the remainin
    [all...]
efiboot.h 58 extern int efi_getdev(void **vdev, const char *devspec, const char **path);
  /src/sys/arch/ia64/stand/ia64/ski/
devicename.c 40 static int ski_parsedev(struct ski_devdesc **dev, const char *devspec, const char **path);
44 * path in (devspec). If it contains an explicit device specification,
48 ski_getdev(void **vdev, const char *devspec, const char **path)
57 if ((devspec == NULL) ||
58 (devspec[0] == '/') ||
59 (strchr(devspec, ':') == NULL)) {
63 *path = devspec;
68 * Try to parse the device name off the beginning of the devspec
70 return(ski_parsedev(dev, devspec, path));
75 * at the beginning of (devspec). Return a pointer to the remainin
    [all...]
libski.h 50 extern int ski_getdev(void **vdev, const char *devspec, const char **path);
  /src/sys/arch/x68k/stand/boot/
conf.c 52 const struct devspec devspec[] = { variable in typeref:typename:const struct devspec[]

Completed in 13 milliseconds