| /src/sys/dev/ic/ |
| timer_cpcbus.c | 55 struct cpcbus_attach_args *caa = aux; local 57 return (strcmp(caa->cpca_name, "cpctim") == 0); 64 struct cpcbus_attach_args *caa = aux; 66 int addr = caa->cpca_addr; 67 int irq = caa->cpca_irq;
|
| timer_cpcbus.c | 55 struct cpcbus_attach_args *caa = aux; local 57 return (strcmp(caa->cpca_name, "cpctim") == 0); 64 struct cpcbus_attach_args *caa = aux; 66 int addr = caa->cpca_addr; 67 int irq = caa->cpca_irq;
|
| com_cpcbus.c | 62 struct cpcbus_attach_args *caa = aux; local 64 return (strcmp(caa->cpca_name, "com") == 0); 70 struct cpcbus_attach_args *caa = aux; local 72 int iobase = caa->cpca_addr; 73 int irq = caa->cpca_irq; 78 if (!com_is_console(caa->cpca_tag, iobase, &ioh) && 79 bus_space_map(caa->cpca_tag, iobase, COM_NPORTS, 0, &ioh)) { 83 com_init_regs(&sc->sc_com.sc_regs, caa->cpca_tag, ioh, iobase); 85 sc->sc_com.sc_frequency = CPC_COM_SPEED(caa->cpca_freq);
|
| iic_cpcbus.c | 58 struct cpcbus_attach_args *caa = aux; local 60 return (strcmp(caa->cpca_name, "cpciic") == 0); 66 struct cpcbus_attach_args *caa = aux; local 69 sc->sc_iot = caa->cpca_tag; 70 if (bus_space_map(sc->sc_iot, caa->cpca_addr, CPC_IIC_SIZE, 0,
|
| sc16is7xx_tty.c | 121 struct sc16is7xx_tty_attach_args *caa = aux; local 136 sc->sc_com.sc_regs.cr_channel = caa->aa_channel;
|
| com_cpcbus.c | 62 struct cpcbus_attach_args *caa = aux; local 64 return (strcmp(caa->cpca_name, "com") == 0); 70 struct cpcbus_attach_args *caa = aux; local 72 int iobase = caa->cpca_addr; 73 int irq = caa->cpca_irq; 78 if (!com_is_console(caa->cpca_tag, iobase, &ioh) && 79 bus_space_map(caa->cpca_tag, iobase, COM_NPORTS, 0, &ioh)) { 83 com_init_regs(&sc->sc_com.sc_regs, caa->cpca_tag, ioh, iobase); 85 sc->sc_com.sc_frequency = CPC_COM_SPEED(caa->cpca_freq);
|
| iic_cpcbus.c | 58 struct cpcbus_attach_args *caa = aux; local 60 return (strcmp(caa->cpca_name, "cpciic") == 0); 66 struct cpcbus_attach_args *caa = aux; local 69 sc->sc_iot = caa->cpca_tag; 70 if (bus_space_map(sc->sc_iot, caa->cpca_addr, CPC_IIC_SIZE, 0,
|
| sc16is7xx_tty.c | 121 struct sc16is7xx_tty_attach_args *caa = aux; local 136 sc->sc_com.sc_regs.cr_channel = caa->aa_channel;
|
| cpc700.c | 100 struct cpcbus_attach_args *caa = aux; local 103 aprint_normal("%s at %s", caa->cpca_name, pnp); 105 aprint_normal(" addr 0x%08x", caa->cpca_addr); 106 if (caa->cpca_irq != CPCBUSCF_IRQ_DEFAULT) 107 aprint_normal(" irq %d", caa->cpca_irq); 116 struct cpcbus_attach_args *caa = aux; local 118 if (cf->cf_loc[CPCBUSCF_ADDR] != caa->cpca_addr)
|
| cpc700.c | 100 struct cpcbus_attach_args *caa = aux; local 103 aprint_normal("%s at %s", caa->cpca_name, pnp); 105 aprint_normal(" addr 0x%08x", caa->cpca_addr); 106 if (caa->cpca_irq != CPCBUSCF_IRQ_DEFAULT) 107 aprint_normal(" irq %d", caa->cpca_irq); 116 struct cpcbus_attach_args *caa = aux; local 118 if (cf->cf_loc[CPCBUSCF_ADDR] != caa->cpca_addr)
|
| /src/sys/arch/amiga/clockport/ |
| com_ss.c | 66 struct clockport_attach_args *caa = aux; local 73 bus_space_map(caa->cp_iot, 0, COM_SS_REGS, 0, &ioh); 75 com_init_regs(&sc->sc_regs, caa->cp_iot, ioh, 0 /* off */); 79 caa->cp_intr_establish(comintr, sc);
|
| flipper.c | 38 * - interrupts: caa->cp_intr_establish(dspintr, sc); 64 struct clockport_attach_args *caa = aux; local 68 bus_space_map(caa->cp_iot, 0, FLIPPER_REGSIZE, 0, &ioh); 70 delfinaver = bus_space_read_1(caa->cp_iot, ioh, FLIPPER_HOSTCTL); 75 bus_space_unmap(caa->cp_iot, ioh, FLIPPER_REGSIZE); 87 struct clockport_attach_args *caa = aux; local 89 sc->sc_iot = caa->cp_iot;
|
| com_ss.c | 66 struct clockport_attach_args *caa = aux; local 73 bus_space_map(caa->cp_iot, 0, COM_SS_REGS, 0, &ioh); 75 com_init_regs(&sc->sc_regs, caa->cp_iot, ioh, 0 /* off */); 79 caa->cp_intr_establish(comintr, sc);
|
| flipper.c | 38 * - interrupts: caa->cp_intr_establish(dspintr, sc); 64 struct clockport_attach_args *caa = aux; local 68 bus_space_map(caa->cp_iot, 0, FLIPPER_REGSIZE, 0, &ioh); 70 delfinaver = bus_space_read_1(caa->cp_iot, ioh, FLIPPER_HOSTCTL); 75 bus_space_unmap(caa->cp_iot, ioh, FLIPPER_REGSIZE); 87 struct clockport_attach_args *caa = aux; local 89 sc->sc_iot = caa->cp_iot;
|
| /src/sys/arch/x86/x86/ |
| mainbus.c | 192 struct cpu_attach_args caa; local 194 memset(&caa, 0, sizeof(caa)); 195 caa.cpu_number = 0; 196 caa.cpu_role = CPU_ROLE_SP; 197 caa.cpu_func = 0; 199 config_found(self, &caa, mainbus_cpu_print,
|
| mainbus.c | 192 struct cpu_attach_args caa; local 194 memset(&caa, 0, sizeof(caa)); 195 caa.cpu_number = 0; 196 caa.cpu_role = CPU_ROLE_SP; 197 caa.cpu_func = 0; 199 config_found(self, &caa, mainbus_cpu_print,
|
| /src/sys/dev/hdmicec/ |
| hdmicec.c | 93 struct hdmicec_attach_args *caa = opaque; local 96 sc->sc_priv = caa->priv; 97 sc->sc_hwif = caa->hwif;
|
| hdmicec.c | 93 struct hdmicec_attach_args *caa = opaque; local 96 sc->sc_priv = caa->priv; 97 sc->sc_hwif = caa->hwif;
|
| /src/sys/dev/cardbus/ |
| cardslot.c | 90 struct cardslot_attach_args *caa = aux; local 92 if (caa->caa_cb_attach == NULL && caa->caa_16_attach == NULL) { 118 struct cardslot_attach_args *caa = aux; local 120 struct cbslot_attach_args *cba = caa->caa_cb_attach; 121 struct pcmciabus_attach_args *pa = caa->caa_16_attach;
|
| cardslot.c | 90 struct cardslot_attach_args *caa = aux; local 92 if (caa->caa_cb_attach == NULL && caa->caa_16_attach == NULL) { 118 struct cardslot_attach_args *caa = aux; local 120 struct cbslot_attach_args *cba = caa->caa_cb_attach; 121 struct pcmciabus_attach_args *pa = caa->caa_16_attach;
|
| /src/external/mpl/bind/dist/lib/dns/rdata/generic/ |
| caa_257.c | 449 dns_rdata_caa_t *caa = source; local 454 REQUIRE(caa != NULL); 455 REQUIRE(caa->common.rdtype == type); 456 REQUIRE(caa->common.rdclass == rdclass); 457 REQUIRE(caa->tag != NULL && caa->tag_len != 0); 458 REQUIRE(caa->value != NULL); 466 RETERR(uint8_tobuffer(caa->flags, target)); 471 RETERR(uint8_tobuffer(caa->tag_len, target)); 476 region.base = caa->tag 495 dns_rdata_caa_t *caa = target; local 538 dns_rdata_caa_t *caa = (dns_rdata_caa_t *)source; local [all...] |
| caa_257.c | 449 dns_rdata_caa_t *caa = source; local 454 REQUIRE(caa != NULL); 455 REQUIRE(caa->common.rdtype == type); 456 REQUIRE(caa->common.rdclass == rdclass); 457 REQUIRE(caa->tag != NULL && caa->tag_len != 0); 458 REQUIRE(caa->value != NULL); 466 RETERR(uint8_tobuffer(caa->flags, target)); 471 RETERR(uint8_tobuffer(caa->tag_len, target)); 476 region.base = caa->tag 495 dns_rdata_caa_t *caa = target; local 538 dns_rdata_caa_t *caa = (dns_rdata_caa_t *)source; local [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ |
| caa_257.c | 450 dns_rdata_caa_t *caa = source; local 455 REQUIRE(caa != NULL); 456 REQUIRE(caa->common.rdtype == type); 457 REQUIRE(caa->common.rdclass == rdclass); 458 REQUIRE(caa->tag != NULL && caa->tag_len != 0); 459 REQUIRE(caa->value != NULL); 467 RETERR(uint8_tobuffer(caa->flags, target)); 472 RETERR(uint8_tobuffer(caa->tag_len, target)); 477 region.base = caa->tag 496 dns_rdata_caa_t *caa = target; local 555 dns_rdata_caa_t *caa = (dns_rdata_caa_t *)source; local [all...] |
| caa_257.c | 450 dns_rdata_caa_t *caa = source; local 455 REQUIRE(caa != NULL); 456 REQUIRE(caa->common.rdtype == type); 457 REQUIRE(caa->common.rdclass == rdclass); 458 REQUIRE(caa->tag != NULL && caa->tag_len != 0); 459 REQUIRE(caa->value != NULL); 467 RETERR(uint8_tobuffer(caa->flags, target)); 472 RETERR(uint8_tobuffer(caa->tag_len, target)); 477 region.base = caa->tag 496 dns_rdata_caa_t *caa = target; local 555 dns_rdata_caa_t *caa = (dns_rdata_caa_t *)source; local [all...] |
| /src/sys/arch/arm/nvidia/ |
| tegra_cec.c | 133 struct hdmicec_attach_args caa; local 199 memset(&caa, 0, sizeof(caa)); 200 caa.priv = sc; 201 caa.hwif = &tegra_cec_hw_if; 202 sc->sc_cecdev = config_found(self, &caa, NULL, CFARGS_NONE);
|