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

  /src/sys/arch/atari/atari/
device.h 43 const struct cfargs *);
autoconf.c 143 const struct cfargs *cfargs)
151 rv = config_found(parent, aux, pfn, cfargs) != NULL;
163 if ((cf = config_search(parent, aux, cfargs)) != NULL) {
  /src/sys/arch/amiga/amiga/
device.h 42 const struct cfargs *);
autoconf.c 167 const struct cfargs *cfargs)
175 rv = config_found(parent, aux, pfn, cfargs) != NULL;
188 if ((cf = config_search(parent, aux, cfargs)) != NULL) {
  /src/sys/arch/amigappc/amigappc/
autoconf.c 127 const struct cfargs *cfargs)
135 rv = config_found(parent, aux, pfn, cfargs) != NULL;
148 if ((cf = config_search(parent, aux, cfargs)) != NULL) {
  /src/sys/sys/
device.h 483 struct cfargs { struct
496 #define CFARGS_VERSION 1 /* current cfargs version */
498 #define CFARGS_NONE NULL /* no cfargs to pass */
501 * Construct a cfargs with this macro, like so:
503 * CFARGS(.submatch = config_stdsubmatch,
509 #define CFARGS(...) \
510 &((const struct cfargs){ \
560 cfdata_t config_search(device_t, void *, const struct cfargs *);
562 device_t config_found(device_t, void *, cfprint_t, const struct cfargs *);
565 const struct cfargs *);
    [all...]
  /src/sys/kern/
subr_autoconf.c 181 * Internal version of the cfargs structure; all versions are
1177 cfargs_canonicalize(const struct cfargs * const cfargs,
1185 if (cfargs == NULL) {
1192 if (cfargs->cfargs_version != CFARGS_VERSION) {
1194 (unsigned long)cfargs->cfargs_version);
1200 if (cfargs->submatch != NULL && cfargs->search != NULL) {
1204 if (cfargs->submatch != NULL) {
1205 args->submatch = cfargs->submatch
    [all...]

Completed in 26 milliseconds