Searched refs:bytes_copied (Results 1 - 9 of 9) sorted by relevance

/drivers/firmware/
H A Ddell_rbu.c267 int bytes_copied = 0; local
287 bytes_copied = (*list_read_count - bytes_read);
290 bytes_copied = length;
291 memcpy(data, ptemp_buf, bytes_copied);
293 return bytes_copied;
300 int bytes_copied = 0; local
314 bytes_copied = do_packet_read(pdest, ptemp_list,
316 remaining_bytes -= bytes_copied;
317 bytes_read += bytes_copied;
318 pdest += bytes_copied;
[all...]
/drivers/ps3/
H A Dps3-lpm.c922 * @bytes_copied: Pointer to a variable that will receive the number of
926 * and bytes_copied will be set to the number of bytes successfully copied.
930 unsigned long *bytes_copied)
934 *bytes_copied = 0;
944 while (*bytes_copied < count) {
945 const unsigned long request = count - *bytes_copied;
962 *bytes_copied += tmp;
966 *bytes_copied); local
977 * @bytes_copied: Pointer to a variable that will receive the number of
981 * and bytes_copied wil
929 ps3_lpm_copy_tb(unsigned long offset, void *buf, unsigned long count, unsigned long *bytes_copied) argument
984 ps3_lpm_copy_tb_to_user(unsigned long offset, void __user *buf, unsigned long count, unsigned long *bytes_copied) argument
1029 *bytes_copied); local
[all...]
/drivers/usb/gadget/legacy/
H A Dprinter.c452 size_t bytes_copied; local
476 bytes_copied = 0;
537 bytes_copied += size;
574 DBG(dev, "printer_read returned %d bytes\n", (int)bytes_copied);
576 if (bytes_copied)
577 return bytes_copied;
588 size_t bytes_copied = 0; local
652 return bytes_copied;
655 bytes_copied += size;
683 DBG(dev, "printer_write sent %d bytes\n", (int)bytes_copied);
[all...]
/drivers/media/usb/cx231xx/
H A Dcx231xx-vbi.c489 u32 bytes_copied = 0; local
506 return bytes_copied;
510 bytes_copied =
514 return bytes_copied;
H A Dcx231xx-video.c447 u32 bytes_copied = 0; local
461 return bytes_copied;
475 return bytes_copied;
482 bytes_copied = cx231xx_copy_video_line(dev, dma_q, p_buffer,
485 return bytes_copied;
/drivers/misc/vmw_vmci/
H A Dvmci_queue_pair.c349 size_t bytes_copied = 0; local
351 while (bytes_copied < size) {
353 (queue_offset + bytes_copied) / PAGE_SIZE;
355 (queue_offset + bytes_copied) & (PAGE_SIZE - 1);
365 if (size - bytes_copied > PAGE_SIZE - page_offset)
369 to_copy = size - bytes_copied;
375 /* The iovec will track bytes_copied internally. */
385 (u8 *)src + bytes_copied, to_copy);
388 bytes_copied += to_copy;
409 size_t bytes_copied local
[all...]
/drivers/memstick/host/
H A Dr592.c388 int bytes_copied = local
390 buffer += bytes_copied;
391 len -= bytes_copied;
/drivers/scsi/
H A Dipr.c2875 int bytes_copied = 0; local
2886 while (bytes_copied < length &&
2887 (ioa_dump->hdr.len + bytes_copied) < max_dump_size) {
2894 return bytes_copied;
2903 rem_len = length - bytes_copied;
2912 pci_address + bytes_copied,
2920 bytes_copied += cur_len;
2928 return bytes_copied;
3050 u32 max_dump_size, bytes_to_copy, bytes_copied, rc; local
3176 bytes_copied
[all...]
/drivers/scsi/lpfc/
H A Dlpfc_bsg.c219 unsigned int transfer_bytes, bytes_copied = 0; local
263 bytes_copied += transfer_bytes;
274 return bytes_copied;

Completed in 183 milliseconds