HomeSort by relevance Sort by last modified time
    Searched refs:rx_length (Results 1 - 3 of 3) sorted by null

  /system/core/fastboot/
udp.cpp 123 // |rx_length|. On failure, returns -1 and fills |error| on failure.
125 size_t rx_length, int attempts, std::string* error);
130 uint8_t* rx_data, size_t rx_length, int attempts,
207 size_t rx_length, int attempts, std::string* error) {
229 rx_length, attempts, error);
235 } else if (static_cast<size_t>(bytes) < rx_length) {
237 rx_length -= bytes;
240 rx_length = 0;
254 size_t rx_length, const int attempts, std::string* error) {
292 size_t rx_data_bytes = std::min<size_t>(bytes - kHeaderSize, rx_length);
    [all...]
  /system/nfc/halimpl/bcm2079x/adaptation/
userial_linux.c 731 int rx_length; local
752 rx_length = my_read(linux_cb.sock, current_packet, READ_LIMIT);
759 rx_length = 0; /* paranoia setting */
763 if (rx_length > 0) {
767 if (rx_length > sRxLength) sRxLength = rx_length;
768 p_buf->len = (uint16_t)rx_length;
774 p_buf, Userial_in_q.count, rx_length);
783 if (rx_length == -EAGAIN)
785 else if (rx_length == -1)
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/hikey/
usb.c 128 static unsigned long rx_length; variable
638 req->length = rx_length;
677 if(actual > rx_length) {
678 actual = rx_length;
682 rx_length -= actual;
684 if(rx_length > 0) {
    [all...]

Completed in 231 milliseconds