Lines Matching refs:rfp
2178 struct fw_pkt *rfp, *sfp = NULL; in fw_vmaccess() local
2194 rfp = (struct fw_pkt *)xfer->recv.buf; in fw_vmaccess()
2195 switch (rfp->mode.hdr.tcode) { in fw_vmaccess()
2201 bcopy(rfp->mode.wreqb.payload, in fw_vmaccess()
2202 (caddr_t)ntohl(rfp->mode.wreqb.dest_lo),s in fw_vmaccess()
2203 ntohs(rfp->mode.wreqb.len)); in fw_vmaccess()
2211 *((uint32_t *)(ntohl(rfp->mode.wreqb.dest_lo))) = in fw_vmaccess()
2212 rfp->mode.wreqq.data; in fw_vmaccess()
2216 xfer->send.buf = malloc(16 + rfp->mode.rreqb.len, in fw_vmaccess()
2218 xfer->send.len = 16 + ntohs(rfp->mode.rreqb.len); in fw_vmaccess()
2220 bcopy((caddr_t)ntohl(rfp->mode.rreqb.dest_lo), in fw_vmaccess()
2222 ntohs(rfp->mode.rreqb.len)); in fw_vmaccess()
2224 sfp->mode.rresb.len = rfp->mode.rreqb.len; in fw_vmaccess()
2233 *(uint32_t *)(ntohl(rfp->mode.rreqq.dest_lo)); in fw_vmaccess()
2241 sfp->mode.hdr.dst = rfp->mode.hdr.src; in fw_vmaccess()
2242 xfer->dst = ntohs(rfp->mode.hdr.src); in fw_vmaccess()
2245 sfp->mode.hdr.tlrt = rfp->mode.hdr.tlrt; in fw_vmaccess()