Home
last modified time | relevance | path

Searched refs:actual_length (Results 1 – 6 of 6) sorted by relevance

/device/google/cuttlefish_common/guest/commands/usbforward/
Dusb_server.cpp249 int32_t actual_length) { in OnTransferComplete() argument
255 fd_->Write(&actual_length, sizeof(actual_length)); in OnTransferComplete()
256 if (actual_length > 0) { in OnTransferComplete()
260 while (sent < actual_length) { in OnTransferComplete()
261 int packet_size = fd_->Write(&buffer[sent], actual_length - sent); in OnTransferComplete()
263 ALOGV("Sending response, %d / %d bytes sent", sent, actual_length); in OnTransferComplete()
Dusb_server.h68 const uint8_t* buffer, int32_t actual_length);
Dtransport_request.cpp84 treq->callback_(req->status == 0, treq->Buffer(), req->actual_length); in OnTransferComplete()
/device/google/cuttlefish_common/host/commands/virtual_usb_manager/usbip/
Dclient.cpp90 rval.actual_length = HostToNet(t.actual_length); in HostToNet()
251 rep.actual_length = data.size(); in HandleAsyncDataReady()
Dmessages.h80 uint32_t actual_length; member
Dmessages.cpp77 out << "\t\tlen:\t" << submit.actual_length << '\n'; in operator <<()