Searched refs:rid (Results 251 - 275 of 471) sorted by relevance

<<111213141516171819

/freebsd-9.3-release/sys/arm/xscale/ixp425/
H A Dixp425.c497 ixp425_alloc_resource(device_t dev, device_t child, int type, int *rid, argument
516 rman_set_rid(rv, *rid);
555 rman_set_rid(rv, *rid);
562 if (bus_activate_resource(child, type, *rid, rv)) {
571 ixp425_release_resource(device_t bus, device_t child, int type, int rid, argument
579 ixp425_activate_resource(device_t dev, device_t child, int type, int rid, argument
604 ixp425_deactivate_resource(device_t bus, device_t child, int type, int rid, argument
H A Davila_ata.c139 int sc_rid; /* rid for IRQ */
284 ata_avila_alloc_resource(device_t dev, device_t child, int type, int *rid, argument
289 KASSERT(type == SYS_RES_IRQ && *rid == ATA_IRQ_RID,
290 ("type %u rid %u start %lu end %lu count %lu flags %u",
291 type, *rid, start, end, count, flags));
298 ata_avila_release_resource(device_t dev, device_t child, int type, int rid, argument
301 KASSERT(type == SYS_RES_IRQ && rid == ATA_IRQ_RID,
302 ("type %u rid %u", type, rid));
/freebsd-9.3-release/sys/dev/sound/isa/
H A Dsb8.c289 int rid; local
291 rid = 0;
294 &rid, RF_ACTIVE);
295 rid = 0;
298 &rid, RF_ACTIVE);
299 rid = 0;
302 &rid, RF_ACTIVE);
H A Dsb16.c468 int rid; local
470 rid = 0;
473 &rid, RF_ACTIVE);
475 rid = 0;
477 sb->irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
480 rid = 0;
482 sb->drq1 = bus_alloc_resource_any(dev, SYS_RES_DRQ, &rid,
485 rid = 1;
487 sb->drq2 = bus_alloc_resource_any(dev, SYS_RES_DRQ, &rid,
/freebsd-9.3-release/sys/dev/usb/
H A Dusb_hid.c76 int32_t rid; member in struct:hid_pos_data
138 if (s->last_pos[i].rid == c->report_ID)
140 if (s->last_pos[i].rid == 0)
145 s->last_pos[i].rid = c->report_ID;
159 if (s->last_pos[i].rid == next_rID)
161 if (s->last_pos[i].rid == 0)
166 s->last_pos[i].rid = next_rID;
/freebsd-9.3-release/sys/dev/an/
H A Dif_an.c393 an_alloc_port(device_t dev, int rid, int size) argument
398 res = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid,
401 sc->port_rid = rid;
412 int an_alloc_memory(device_t dev, int rid, int size) argument
417 res = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid,
420 sc->mem_rid = rid;
432 int an_alloc_aux_memory(device_t dev, int rid, int size) argument
437 res = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid,
440 sc->mem_aux_rid = rid;
453 an_alloc_irq(device_t dev, int rid, in argument
3320 unsigned short rid; local
3397 int rid, command, error; local
[all...]
/freebsd-9.3-release/sys/dev/ata/chipsets/
H A Data-via.c224 int i, rid; local
228 rid = PCIR_BAR(ch->unit);
231 &rid, RF_ACTIVE)))
280 int rid; local
282 rid = PCIR_BAR(ch->unit);
284 SYS_RES_IOPORT, rid, ch->r_io[ATA_CONTROL].res); local
/freebsd-9.3-release/sys/mips/malta/
H A Dgt_pci.c258 int rid; local
389 if ((sc->sc_irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid,
609 gt_pci_alloc_resource(device_t bus, device_t child, int type, int *rid, argument
639 rman_set_rid(rv, *rid);
646 if (bus_activate_resource(child, type, *rid, rv)) {
656 gt_pci_activate_resource(device_t bus, device_t child, int type, int rid, argument
/freebsd-9.3-release/sys/mips/nlm/
H A Dxlp_pci.c512 xlp_pci_alloc_resource(device_t bus, device_t child, int type, int *rid, argument
553 rman_set_rid(rv, *rid);
567 if (bus_activate_resource(child, type, *rid, rv)) {
577 xlp_pci_release_resource(device_t bus, device_t child, int type, int rid, argument
594 xlp_pci_activate_resource(device_t bus, device_t child, int type, int rid, argument
602 xlp_pci_deactivate_resource(device_t bus, device_t child, int type, int rid, argument
/freebsd-9.3-release/sys/ofed/include/linux/
H A Dpci.h123 _pci_get_rle(struct pci_dev *pdev, int type, int rid) argument
130 return resource_list_find(rl, type, rid);
241 int rid; local
247 rid = PCIR_BAR(bar);
248 if (bus_alloc_resource_any(pdev->dev.bsddev, type, &rid,
261 bus_release_resource(pdev->dev.bsddev, rle->type, rle->rid, rle->res);
/freebsd-9.3-release/sys/dev/agp/
H A Dagp_amd.c222 int error, rid; local
228 rid = AGP_AMD751_REGISTERS;
229 sc->regs = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
H A Dagp_ati.c176 int error, rid; local
206 rid = ATI_GART_MMADDR;
207 sc->regs = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid, RF_ACTIVE);
/freebsd-9.3-release/sys/dev/usb/controller/
H A Dxhci_pci.c162 int count, err, rid; local
173 rid = PCI_XHCI_CBMEM;
174 sc->sc_io_res = bus_alloc_resource_any(self, SYS_RES_MEMORY, &rid,
/freebsd-9.3-release/sys/mips/cavium/octe/
H A Dethernet.c210 int rid; local
250 rid = 0;
251 sc->sc_rx_irq = bus_alloc_resource(bus, SYS_RES_IRQ, &rid,
/freebsd-9.3-release/sys/powerpc/powermac/
H A Data_kauai.c203 int i, found, rid; local
231 rid = PCIR_BARS;
232 sc->sc_memr = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
/freebsd-9.3-release/crypto/openssl/crypto/ocsp/
H A Docsp_vfy.c185 OCSP_RESPID *rid = bs->tbsResponseData->responderId; local
186 if ((signer = ocsp_find_signer_sk(certs, rid))) {
191 (signer = ocsp_find_signer_sk(bs->certs, rid))) {
/freebsd-9.3-release/contrib/gcc/cp/
H A Dlex.c171 ENUM_BITFIELD(rid) const rid : 16;
324 C_RID_CODE (id) = reswords[i].rid;
325 ridpointers [(int) reswords[i].rid] = id;
/freebsd-9.3-release/contrib/groff/src/preproc/refer/
H A Dref.h51 reference_id rid; member in class:reference
/freebsd-9.3-release/sys/dev/acpica/
H A Dacpi.c122 int rid, u_long start, u_long count);
124 int type, int *rid, u_long start, u_long end,
129 int rid, struct resource *r);
131 int rid);
1111 &rle->rid, rle->start, rle->start + rle->count - 1, rle->count, 0);
1176 resource_list_reserve(rl, dev, children[i], rle->type, &rle->rid,
1185 acpi_set_resource(device_t dev, device_t child, int type, int rid, argument
1214 if (resource_list_busy(rl, type, rid))
1218 if (resource_list_reserved(rl, type, rid))
1219 resource_list_unreserve(rl, dev, child, type, rid);
1252 acpi_alloc_resource(device_t bus, device_t child, int type, int *rid, u_long start, u_long end, u_long count, u_int flags) argument
1329 acpi_alloc_sysres(device_t child, int type, int *rid, u_long start, u_long end, u_long count, u_int flags) argument
1389 acpi_release_resource(device_t bus, device_t child, int type, int rid, struct resource *r) argument
1411 acpi_delete_resource(device_t bus, device_t child, int type, int rid) argument
1427 acpi_bus_alloc_gas(device_t dev, int *type, int *rid, ACPI_GENERIC_ADDRESS *gas, struct resource **res, u_int flags) argument
[all...]
H A Dacpivar.h347 int acpi_bus_alloc_gas(device_t dev, int *type, int *rid,
380 ACPI_STATUS acpi_lookup_irq_resource(device_t dev, int rid,
384 struct resource *acpi_alloc_sysres(device_t child, int type, int *rid,
468 int *rid, struct resource **dst, u_int flags);
/freebsd-9.3-release/sys/dev/mvs/
H A Dmvs_soc.c331 mvs_alloc_resource(device_t dev, device_t child, int type, int *rid, argument
356 if (*rid == ATA_IRQ_RID)
364 mvs_release_resource(device_t dev, device_t child, int type, int rid, argument
373 if (rid != ATA_IRQ_RID)
/freebsd-9.3-release/sys/dev/scc/
H A Dscc_bfe.h143 int scc_bfe_probe(device_t dev, u_int regshft, u_int rclk, u_int rid);
/freebsd-9.3-release/sys/mips/adm5120/
H A Dadmpci.c358 admpci_alloc_resource(device_t bus, device_t child, int type, int *rid, argument
388 rman_set_rid(rv, *rid);
395 if (bus_activate_resource(child, type, *rid, rv)) {
406 admpci_activate_resource(device_t bus, device_t child, int type, int rid, argument
/freebsd-9.3-release/sys/x86/isa/
H A Datpic.c593 int rid; local
596 rid = 0;
597 res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, 0);
599 bus_release_resource(dev, SYS_RES_IRQ, rid, res);
/freebsd-9.3-release/sys/dev/wi/
H A Dif_wi.c162 wi_write_val(struct wi_softc *sc, int rid, u_int16_t val) argument
166 return wi_write_rid(sc, rid, &val, sizeof(val));
1702 wi_write_ssid(struct wi_softc *sc, int rid, u_int8_t *buf, int buflen) argument
1711 return wi_write_rid(sc, rid, &ssid, sizeof(ssid));
1993 wi_read_rid(struct wi_softc *sc, int rid, void *buf, int *buflenp) argument
1999 error = wi_cmd(sc, WI_CMD_ACCESS | WI_ACCESS_READ, rid, 0, 0);
2003 error = wi_read_bap(sc, rid, 0, ltbuf, sizeof(ltbuf));
2007 if (le16toh(ltbuf[1]) != rid) {
2008 device_printf(sc->sc_dev, "record read mismatch, rid=%x, got=%x\n",
2009 rid, le16to
2024 wi_write_rid(struct wi_softc *sc, int rid, void *buf, int buflen) argument
2049 wi_write_appie(struct wi_softc *sc, int rid, const struct ieee80211_appie *ie) argument
2063 wi_alloc(device_t dev, int rid) argument
[all...]

Completed in 321 milliseconds

<<111213141516171819