Home
last modified time | relevance | path

Searched refs:bytes_recvd (Results 1 – 5 of 5) sorted by relevance

/Linux-v4.19/drivers/input/serio/
Dhyperv-keyboard.c192 u32 bytes_recvd, in hv_kbd_handle_received_packet() argument
222 msg_sz = bytes_recvd - (desc->offset8 << 3); in hv_kbd_handle_received_packet()
241 desc->type, req_id, bytes_recvd); in hv_kbd_handle_received_packet()
251 u32 bytes_recvd; in hv_kbd_on_channel_callback() local
261 &bytes_recvd, &req_id); in hv_kbd_on_channel_callback()
264 if (bytes_recvd == 0) { in hv_kbd_on_channel_callback()
270 bytes_recvd, req_id); in hv_kbd_on_channel_callback()
276 bufferlen = bytes_recvd; in hv_kbd_on_channel_callback()
277 buffer = kmalloc(bytes_recvd, GFP_ATOMIC); in hv_kbd_on_channel_callback()
/Linux-v4.19/drivers/hid/
Dhid-hyperv.c328 u32 bytes_recvd; in mousevsc_on_channel_callback() local
340 bufferlen, &bytes_recvd, &req_id); in mousevsc_on_channel_callback()
344 if (bytes_recvd <= 0) { in mousevsc_on_channel_callback()
360 desc->type, req_id, bytes_recvd); in mousevsc_on_channel_callback()
369 bufferlen = bytes_recvd; in mousevsc_on_channel_callback()
370 buffer = kmalloc(bytes_recvd, GFP_ATOMIC); in mousevsc_on_channel_callback()
/Linux-v4.19/tools/testing/selftests/bpf/
Dtest_sockmap.c225 size_t bytes_recvd; member
354 while (s->bytes_recvd < total_bytes) { in msg_loop()
389 s->bytes_recvd += recv; in msg_loop()
439 return s.bytes_recvd / (s.end.tv_sec - s.start.tv_sec); in recvdBps()
482 s.bytes_recvd, recvd_Bps, recvd_Bps/giga); in sendmsg_test()
512 s.bytes_recvd, recvd_Bps, recvd_Bps/giga); in sendmsg_test()
/Linux-v4.19/drivers/pci/controller/
Dpci-hyperv.c1942 u32 bytes_recvd; in hv_pci_onchannelcallback() local
1960 bufferlen, &bytes_recvd, &req_id); in hv_pci_onchannelcallback()
1965 bufferlen = bytes_recvd; in hv_pci_onchannelcallback()
1966 buffer = kmalloc(bytes_recvd, GFP_ATOMIC); in hv_pci_onchannelcallback()
1973 if (ret || !bytes_recvd) in hv_pci_onchannelcallback()
1980 if (bytes_recvd <= sizeof(struct pci_response)) in hv_pci_onchannelcallback()
1995 bytes_recvd); in hv_pci_onchannelcallback()
2005 if (bytes_recvd < in hv_pci_onchannelcallback()
2039 desc->type, req_id, bytes_recvd); in hv_pci_onchannelcallback()
/Linux-v4.19/drivers/video/fbdev/
Dhyperv_fb.c392 u32 bytes_recvd; in synthvid_receive() local
405 &bytes_recvd, &req_id); in synthvid_receive()
406 if (bytes_recvd > 0 && in synthvid_receive()
409 } while (bytes_recvd > 0 && ret == 0); in synthvid_receive()