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 467 struct cfargs { struct
480 #define CFARGS_VERSION 1 /* current cfargs version */
482 #define CFARGS_NONE NULL /* no cfargs to pass */
485 * Construct a cfargs with this macro, like so:
487 * CFARGS(.submatch = config_stdsubmatch,
493 #define CFARGS(...) \
494 &((const struct cfargs){ \
543 cfdata_t config_search(device_t, void *, const struct cfargs *);
545 device_t config_found(device_t, void *, cfprint_t, const struct cfargs *);
548 const struct cfargs *);
    [all...]
  /src/sys/kern/
subr_autoconf.c 173 * Internal version of the cfargs structure; all versions are
1087 cfargs_canonicalize(const struct cfargs * const cfargs,
1095 if (cfargs == NULL) {
1102 if (cfargs->cfargs_version != CFARGS_VERSION) {
1104 (unsigned long)cfargs->cfargs_version);
1110 if (cfargs->submatch != NULL && cfargs->search != NULL) {
1114 if (cfargs->submatch != NULL) {
1115 args->submatch = cfargs->submatch
    [all...]

Completed in 14 milliseconds