HomeSort by: relevance | last modified time | path
    Searched defs:data_buf (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/dev/pci/
twaio.h 105 void *pdata; /* points to data_buf */
108 int8_t data_buf[1]; member in struct:twa_ioctl_9k
119 int8_t data_buf[1]; member in union:twa_ioctl_with_payload::__anon6c7f73ae010a
125 * data_buf is not overwritten by the kernel, after we return
133 void *pdata; /* points to data_buf */
twaio.h 105 void *pdata; /* points to data_buf */
108 int8_t data_buf[1]; member in struct:twa_ioctl_9k
119 int8_t data_buf[1]; member in union:twa_ioctl_with_payload::__anon6c7f73ae010a
125 * data_buf is not overwritten by the kernel, after we return
133 void *pdata; /* points to data_buf */
  /src/sys/external/bsd/drm2/dist/drm/virtio/
virtgpu_drv.h 113 void *data_buf; member in struct:virtio_gpu_vbuffer
virtgpu_drv.h 113 void *data_buf; member in struct:virtio_gpu_vbuffer
  /src/sys/external/bsd/dwc2/dist/
dwc2_core.c 1771 u32 *data_buf = (u32 *)chan->xfer_buf; local in function:dwc2_hc_write_packet
1787 if (((unsigned long)data_buf & 0x3) == 0) {
1789 for (i = 0; i < dword_count; i++, data_buf++)
1790 DWC2_WRITE_4(hsotg, data_fifo, *data_buf);
1793 for (i = 0; i < dword_count; i++, data_buf++) {
1794 u32 data = data_buf[0] | data_buf[1] << 8 |
1795 data_buf[2] << 16 | data_buf[3] << 24;
2303 u32 *data_buf = (u32 *)dest local in function:dwc2_read_packet
    [all...]
dwc2_core.c 1771 u32 *data_buf = (u32 *)chan->xfer_buf; local in function:dwc2_hc_write_packet
1787 if (((unsigned long)data_buf & 0x3) == 0) {
1789 for (i = 0; i < dword_count; i++, data_buf++)
1790 DWC2_WRITE_4(hsotg, data_fifo, *data_buf);
1793 for (i = 0; i < dword_count; i++, data_buf++) {
1794 u32 data = data_buf[0] | data_buf[1] << 8 |
1795 data_buf[2] << 16 | data_buf[3] << 24;
2303 u32 *data_buf = (u32 *)dest local in function:dwc2_read_packet
    [all...]
  /src/sys/kern/
vfs_syscalls.c 571 void *data_buf = data; local in function:do_sys_mount
617 data_buf = kmem_alloc(alloc_sz, KM_SLEEP);
620 error = copyin(data, data_buf, data_len);
630 error = mount_getargs(l, vp, path, flags, data_buf, &data_len);
634 error = copyout(data_buf, data, data_len);
637 error = mount_update(l, vp, path, flags, data_buf, &data_len);
641 error = mount_domount(l, &vp, vfsops, path, flags, data_buf,
657 if (data_buf != data)
658 kmem_free(data_buf, alloc_sz);
vfs_syscalls.c 571 void *data_buf = data; local in function:do_sys_mount
617 data_buf = kmem_alloc(alloc_sz, KM_SLEEP);
620 error = copyin(data, data_buf, data_len);
630 error = mount_getargs(l, vp, path, flags, data_buf, &data_len);
634 error = copyout(data_buf, data, data_len);
637 error = mount_update(l, vp, path, flags, data_buf, &data_len);
641 error = mount_domount(l, &vp, vfsops, path, flags, data_buf,
657 if (data_buf != data)
658 kmem_free(data_buf, alloc_sz);

Completed in 56 milliseconds