Lines Matching refs:req

44 void (*pci_cfgacc_acc_p)(pci_cfgacc_req_t *req);
49 pci_cfgacc_req_t req; in pci_cfgacc_get8() local
51 PCI_CFGACC_FILLREQ(req, rcdip, bdf, off, 1, B_FALSE, 0); in pci_cfgacc_get8()
52 (*pci_cfgacc_acc_p)(&req); in pci_cfgacc_get8()
53 return (VAL8(&req)); in pci_cfgacc_get8()
59 pci_cfgacc_req_t req; in pci_cfgacc_put8() local
61 PCI_CFGACC_FILLREQ(req, rcdip, bdf, off, 1, B_TRUE, data); in pci_cfgacc_put8()
62 (*pci_cfgacc_acc_p)(&req); in pci_cfgacc_put8()
68 pci_cfgacc_req_t req; in pci_cfgacc_get16() local
70 PCI_CFGACC_FILLREQ(req, rcdip, bdf, off, 2, B_FALSE, 0); in pci_cfgacc_get16()
71 (*pci_cfgacc_acc_p)(&req); in pci_cfgacc_get16()
72 return (VAL16(&req)); in pci_cfgacc_get16()
78 pci_cfgacc_req_t req; in pci_cfgacc_put16() local
80 PCI_CFGACC_FILLREQ(req, rcdip, bdf, off, 2, B_TRUE, data); in pci_cfgacc_put16()
81 (*pci_cfgacc_acc_p)(&req); in pci_cfgacc_put16()
87 pci_cfgacc_req_t req; in pci_cfgacc_get32() local
89 PCI_CFGACC_FILLREQ(req, rcdip, bdf, off, 4, B_FALSE, 0); in pci_cfgacc_get32()
90 (*pci_cfgacc_acc_p)(&req); in pci_cfgacc_get32()
91 return (VAL32(&req)); in pci_cfgacc_get32()
97 pci_cfgacc_req_t req; in pci_cfgacc_put32() local
99 PCI_CFGACC_FILLREQ(req, rcdip, bdf, off, 4, B_TRUE, data); in pci_cfgacc_put32()
100 (*pci_cfgacc_acc_p)(&req); in pci_cfgacc_put32()
106 pci_cfgacc_req_t req; in pci_cfgacc_get64() local
108 PCI_CFGACC_FILLREQ(req, rcdip, bdf, off, 8, B_FALSE, 0); in pci_cfgacc_get64()
109 (*pci_cfgacc_acc_p)(&req); in pci_cfgacc_get64()
110 return (VAL64(&req)); in pci_cfgacc_get64()
116 pci_cfgacc_req_t req; in pci_cfgacc_put64() local
118 PCI_CFGACC_FILLREQ(req, rcdip, bdf, off, 8, B_TRUE, data); in pci_cfgacc_put64()
119 (*pci_cfgacc_acc_p)(&req); in pci_cfgacc_put64()