Searched refs:xfer (Results 1 - 25 of 141) sorted by path

123456

/freebsd-11-stable/contrib/gdb/gdb/
H A Dlin-lwp.c1708 int xfer;
1713 xfer = linux_proc_xfer_memory (memaddr, myaddr, len, write, attrib, target);
1714 if (xfer == 0)
1715 xfer = child_xfer_memory (memaddr, myaddr, len, write, attrib, target);
1718 return xfer;
1700 int xfer; local
H A Dmips-tdep.c314 "xfer $%d, reg offset %d, buf offset %d, length %d, ",
3345 int xfer = register_size (current_gdbarch, regnum); local
3346 if (offset + xfer > TYPE_LENGTH (type))
3347 xfer = TYPE_LENGTH (type) - offset;
3350 offset, xfer, regnum);
3351 mips_xfer_register (regcache, NUM_REGS + regnum, xfer,
3366 int xfer = register_size (current_gdbarch, regnum); local
3367 if (offset + xfer > TYPE_LENGTH (type))
3368 xfer = TYPE_LENGTH (type) - offset;
3371 offset, xfer, regnu
3816 int xfer = mips_stack_argsize (tdep); local
[all...]
H A Dtarget.c916 break; /* Handled all or part of xfer */
1156 LONGEST xfer = target_read_partial (ops, object, annex, local
1159 /* Call an observer, notifying them of the xfer progress? */
1160 if (xfer <= 0)
1163 xfered += xfer;
1178 LONGEST xfer = target_write_partial (ops, object, annex, local
1181 /* Call an observer, notifying them of the xfer progress? */
1182 if (xfer <= 0)
1185 xfered += xfer;
H A Dthread-db.c916 int xfer;
928 xfer =
933 return xfer;
910 int xfer; local
/freebsd-11-stable/contrib/netbsd-tests/fs/puffs/h_dtfs/
H A Ddtfs_vnops.c458 quad_t xfer, origxfer; local
465 xfer = MIN(*resid, df->df_datalen - offset);
466 if (xfer < 0)
470 origxfer = xfer;
471 while (xfer > 0) {
472 copylen = MIN(xfer, BLOCKLEFT(offset, DTFS_BLOCKSIZE));
478 xfer -= copylen;
/freebsd-11-stable/crypto/openssl/crypto/bn/asm/
H A Dparisc-mont.pl130 $xfer=$n0; # accomodates [-16..15] offset in fld[dw]s
202 ldo `$LOCALS+16`($fp),$xfer
216 fstds ${fab0},-16($xfer)
217 fstds ${fnm0},-8($xfer)
218 fstds ${fab1},0($xfer)
219 fstds ${fnm1},8($xfer)
232 ldd -16($xfer),$ab0
233 fstds ${fab0},-16($xfer)
237 ldd -8($xfer),$nm0
238 fstds ${fnm0},-8($xfer)
[all...]
/freebsd-11-stable/lib/libusb/
H A Dlibusb01.c111 struct libusb20_transfer *xfer; local
136 xfer = libusb20_tr_get_pointer(pdev, x);
138 if (xfer == NULL)
139 return (xfer);
141 err = libusb20_tr_open(xfer, bufsize, 1, ep_no);
144 return (xfer);
149 return (xfer);
588 struct libusb20_transfer *xfer; local
594 xfer = usb_get_transfer_by_ep_no(dev, ep);
595 if (xfer
806 struct libusb20_transfer *xfer; local
[all...]
H A Dlibusb10_io.c533 struct libusb_transfer *xfer; local
543 xfer = libusb_alloc_transfer(0);
544 if (xfer == NULL)
549 xfer->dev_handle = devh;
550 xfer->endpoint = endpoint;
551 xfer->type = type;
552 xfer->timeout = timeout;
553 xfer->buffer = data;
554 xfer->length = length;
555 xfer
[all...]
/freebsd-11-stable/sbin/dump/
H A Dtraverse.c912 int secsize, bytes, resid, xfer, base, cnt, i; local
933 xfer = 0;
939 xfer = MIN(secsize - base, size);
940 offset += xfer;
941 bytes -= xfer;
943 memcpy(buf, &tmpbuf[base], xfer);
946 cnt = cread(diskfd, &buf[xfer], bytes - resid, offset);
949 xfer += cnt;
956 memcpy(&buf[xfer], tmpbuf, resid);
/freebsd-11-stable/stand/usb/
H A Dusb_busdma_loader.c417 struct usb_xfer *xfer; local
420 xfer = pq->curr;
421 info = xfer->xroot;
425 if (xfer->error) {
428 usbd_transfer_done(xfer, 0);
432 if (!xfer->flags_int.bdma_setup) {
437 xfer->flags_int.bdma_setup = 1;
443 if (xfer->flags_int.isochronous_xfr) {
446 frlength_0 = xfer->sumlen;
449 nframes = xfer
564 usb_bdma_pre_sync(struct usb_xfer *xfer) argument
597 usb_bdma_post_sync(struct usb_xfer *xfer) argument
[all...]
/freebsd-11-stable/sys/arm/ti/
H A Dti_spivar.h47 } xfer; member in struct:ti_spi_softc
50 #define sc_cs xfer.cs
51 #define sc_fifolvl xfer.fifolvl
52 #define sc_cmd xfer.cmd
53 #define sc_len xfer.len
54 #define sc_read xfer.read
55 #define sc_written xfer.written
/freebsd-11-stable/sys/compat/ndis/
H A Dsubr_usbd.c590 struct usb_xfer *xfer; local
600 device_printf(dev, "couldn't setup xfer: %s\n",
604 xfer = ne->ne_xfer[0];
605 usbd_xfer_set_priv(xfer, ne);
638 struct usb_xfer *xfer; local
668 device_printf(dev, "couldn't setup xfer: %s\n",
672 xfer = ne->ne_xfer[0];
673 usbd_xfer_set_priv(xfer, ne);
675 usbd_xfer_set_timeout(xfer, NDISUSB_NO_TIMEOUT);
678 usbd_xfer_set_timeout(xfer, NDISUSB_TX_TIMEOU
834 usbd_non_isoc_callback(struct usb_xfer *xfer, usb_error_t error) argument
937 usbd_ctrl_callback(struct usb_xfer *xfer, usb_error_t error) argument
[all...]
/freebsd-11-stable/sys/dev/drm/
H A Dvia_dmablit.c90 via_map_blit_for_device(const drm_via_dmablit_t *xfer, argument
95 unsigned char *mem_addr = xfer->mem_addr;
98 uint32_t fb_addr = xfer->fb_addr;
110 for (cur_line = 0; cur_line < xfer->num_lines; ++cur_line) {
112 line_len = xfer->line_length;
146 mem_addr += xfer->mem_stride;
147 fb_addr += xfer->fb_stride;
222 via_lock_all_dma_pages(drm_via_sg_info_t *vsg, drm_via_dmablit_t *xfer) argument
224 unsigned long first_pfn = VIA_PFN(xfer->mem_addr);
228 vsg->num_pages = VIA_PFN(xfer
559 via_build_sg_info(struct drm_device *dev, drm_via_sg_info_t *vsg, drm_via_dmablit_t *xfer) argument
704 via_dmablit(struct drm_device *dev, drm_via_dmablit_t *xfer) argument
784 drm_via_dmablit_t *xfer = data; local
[all...]
/freebsd-11-stable/sys/dev/firewire/
H A Dfirewire.c184 fw_asyreq(struct firewire_comm *fc, int sub, struct fw_xfer *xfer) argument
193 if (xfer == NULL)
195 if (xfer->hand == NULL) {
199 fp = &xfer->send.hdr;
213 xfer->resp = EAGAIN;
214 xfer->flag = FWXF_BUSY;
223 if (xfer->send.pay_len > MAXREC(fc->maxrec)) {
233 if (len != xfer->send.pay_len) {
235 len, xfer->send.pay_len, tcode_str[tcode], tcode);
249 xfer
267 fw_xferwake(struct fw_xfer *xfer) argument
280 fw_xferwait(struct fw_xfer *xfer) argument
297 fw_asystart(struct fw_xfer *xfer) argument
333 struct fw_xfer *xfer, *txfer; local
553 struct fw_xfer *xfer; local
569 struct fw_xfer *xfer, *txfer; local
775 struct fw_xfer *xfer; local
976 struct fw_xfer *xfer; local
995 struct fw_xfer *xfer, *next; local
1021 fw_tl_free(struct firewire_comm *fc, struct fw_xfer *xfer) argument
1057 struct fw_xfer *xfer; local
1094 struct fw_xfer *xfer; local
1109 struct fw_xfer *xfer; local
1139 fw_xfer_done(struct fw_xfer *xfer) argument
1154 fw_xfer_unload(struct fw_xfer *xfer) argument
1194 fw_xfer_free_buf(struct fw_xfer *xfer) argument
1209 fw_xfer_free(struct fw_xfer *xfer) argument
1220 fw_asy_callback_free(struct fw_xfer *xfer) argument
1235 struct fw_xfer *xfer; local
1438 struct fw_xfer *xfer; local
1813 fw_get_tlabel(struct firewire_comm *fc, struct fw_xfer *xfer) argument
2099 fw_try_bmr_callback(struct fw_xfer *xfer) argument
2135 struct fw_xfer *xfer; local
2174 fw_vmaccess(struct fw_xfer *xfer) argument
[all...]
H A Dfirewirereg.h254 struct fw_xfer *xfer; member in struct:fw_rcv_buf
H A Dfwdev.c202 struct fw_xfer *xfer; local
232 for (xfer = STAILQ_FIRST(&ir->q);
233 xfer != NULL; xfer = STAILQ_FIRST(&ir->q)) {
237 xfer->resp = 0;
238 fw_xfer_done(xfer);
270 struct fw_xfer *xfer; local
276 while ((xfer = STAILQ_FIRST(&d->rq)) == NULL && err == 0)
286 FW_GUNLOCK(xfer->fc);
288 fp = &xfer
393 struct fw_xfer *xfer; local
521 fw_hand(struct fw_xfer *xfer) argument
546 struct fw_xfer *xfer; local
[all...]
H A Dfwmem.c96 struct fw_xfer *xfer; local
98 xfer = fw_xfer_alloc(M_FWMEM);
99 if (xfer == NULL)
102 xfer->fc = fwdev->fc;
103 xfer->send.hdr.mode.hdr.dst = FWLOCALBUS | fwdev->dst;
105 xfer->send.spd = fwdev->speed;
107 xfer->send.spd = min(spd, fwdev->speed);
108 xfer->hand = hand;
109 xfer->sc = sc;
110 xfer
126 struct fw_xfer *xfer; local
163 struct fw_xfer *xfer; local
200 struct fw_xfer *xfer; local
238 struct fw_xfer *xfer; local
324 fwmem_biodone(struct fw_xfer *xfer) argument
347 struct fw_xfer *xfer; local
[all...]
H A Dfwohci.c580 db_tr->xfer = NULL;
584 db_tr->xfer = NULL;
863 struct fw_xfer *xfer; local
887 xfer = STAILQ_FIRST(&dbch->xferq.q);
888 if (xfer == NULL) {
897 db_tr->xfer = xfer;
898 xfer->flag = FWXF_START;
900 fp = &xfer->send.hdr;
912 ohcifp->mode.common.spd = xfer
1063 struct fw_xfer *xfer; local
[all...]
H A Dfwohcireg.h334 struct fw_xfer *xfer; member in struct:fwohcidb_tr
H A Dif_fwe.c213 struct fw_xfer *xfer, *next; local
232 for (xfer = STAILQ_FIRST(&fwe->xferlist); xfer != NULL;
233 xfer = next) {
234 next = STAILQ_NEXT(xfer, link);
235 fw_xfer_free(xfer);
278 struct fw_xfer *xfer; local
323 xfer = fw_xfer_alloc(M_FWE);
324 if (xfer == NULL)
326 xfer
422 fwe_output_callback(struct fw_xfer *xfer) argument
492 struct fw_xfer *xfer; local
[all...]
H A Dif_fwip.c210 struct fw_xfer *xfer, *next; local
230 for (xfer = STAILQ_FIRST(&fwip->fwb.xferlist); xfer != NULL;
231 xfer = next) {
232 next = STAILQ_NEXT(xfer, link);
233 fw_xfer_free(xfer);
236 for (xfer = STAILQ_FIRST(&fwip->xferlist); xfer != NULL;
237 xfer = next) {
238 next = STAILQ_NEXT(xfer, lin
283 struct fw_xfer *xfer; local
469 fwip_output_callback(struct fw_xfer *xfer) argument
539 struct fw_xfer *xfer; local
817 fwip_unicast_input_recycle(struct fwip_softc *fwip, struct fw_xfer *xfer) argument
834 fwip_unicast_input(struct fw_xfer *xfer) argument
[all...]
H A Dsbp.c869 sbp_loginres_callback(struct fw_xfer *xfer) argument
872 sdev = (struct sbp_dev *)xfer->sc;
878 STAILQ_INSERT_TAIL(&sdev->target->sbp->fwb.xferlist, xfer, link);
885 sbp_xfer_free(struct fw_xfer *xfer) argument
889 sdev = (struct sbp_dev *)xfer->sc;
890 fw_xfer_unload(xfer);
892 STAILQ_INSERT_TAIL(&sdev->target->xferlist, xfer, link);
896 sbp_reset_start_callback(struct fw_xfer *xfer) argument
898 struct sbp_dev *tsdev, *sdev = (struct sbp_dev *)xfer->sc;
902 if (xfer
919 struct fw_xfer *xfer; local
927 xfer = sbp_write_cmd(sdev, FWTCODE_WREQQ, 0); local
937 sbp_mgm_callback(struct fw_xfer *xfer) argument
1055 sbp_do_attach(struct fw_xfer *xfer) argument
1092 sbp_agent_reset_callback(struct fw_xfer *xfer) argument
1118 struct fw_xfer *xfer; local
1126 xfer = sbp_write_cmd(sdev, FWTCODE_WREQQ, 0x04); local
1140 sbp_busy_timeout_callback(struct fw_xfer *xfer) argument
1159 struct fw_xfer *xfer; local
1164 xfer = sbp_write_cmd(sdev, FWTCODE_WREQQ, 0); local
1175 sbp_orb_pointer_callback(struct fw_xfer *xfer) argument
1208 struct fw_xfer *xfer; local
1248 sbp_doorbell_callback(struct fw_xfer *xfer) argument
1275 struct fw_xfer *xfer; local
1299 struct fw_xfer *xfer; local
1352 struct fw_xfer *xfer; local
1605 sbp_recv1(struct fw_xfer *xfer) argument
1890 sbp_recv(struct fw_xfer *xfer) argument
2077 struct fw_xfer *xfer, *next; local
[all...]
H A Dsbp_targ.c614 sbp_targ_free_orbi(struct fw_xfer *xfer) argument
618 if (xfer->resp != 0) {
620 printf("%s: xfer->resp = %d\n", __func__, xfer->resp);
622 orbi = (struct orb_info *)xfer->sc;
633 fw_xfer_free(xfer);
640 struct fw_xfer *xfer; local
645 xfer = fwmem_write_block(orbi->fwdev, (void *)orbi,
650 if (xfer == NULL) {
652 printf("%s: xfer
820 sbp_targ_cam_done(struct fw_xfer *xfer) argument
945 struct fw_xfer *xfer; local
984 sbp_targ_pt_done(struct fw_xfer *xfer) argument
1122 struct fw_xfer *xfer; local
1418 sbp_targ_cmd_handler(struct fw_xfer *xfer) argument
1571 sbp_targ_mgm_handler(struct fw_xfer *xfer) argument
1692 sbp_targ_pointer_handler(struct fw_xfer *xfer) argument
1786 sbp_targ_resp_callback(struct fw_xfer *xfer) argument
1803 sbp_targ_cmd(struct fw_xfer *xfer, struct fw_device *fwdev, int login_id, int reg) argument
1879 sbp_targ_mgm(struct fw_xfer *xfer, struct fw_device *fwdev) argument
1901 sbp_targ_recv(struct fw_xfer *xfer) argument
[all...]
/freebsd-11-stable/sys/dev/le/
H A Dlance.c764 int xfer;
768 xfer = min(len, 16 - boff);
770 memcpy(bptr + boff, from, xfer);
771 from += xfer;
774 len -= xfer;
775 xfer = min(len, 16);
784 int xfer;
788 xfer = min(len, 16 - boff);
790 memcpy(to, bptr + boff, xfer);
791 to += xfer;
[all...]
/freebsd-11-stable/sys/dev/mse/
H A Dmse.c249 int xfer, error; local
270 xfer = 0;
308 xfer = min(uio->uio_resid, sc->mode.packetsize - sc->sc_bytesread);
310 error = uiomove(&sc->sc_bytes[sc->sc_bytesread], xfer, uio);
315 sc->sc_bytesread += xfer;

Completed in 358 milliseconds

123456