Home | History | Annotate | Download | only in adbconnection

Lines Matching refs:avail

721   uint32_t avail = -1;
722 res = TEMP_FAILURE_RETRY(ioctl(adb_connection_socket_.get(), FIONREAD, &avail));
727 } else if (avail < full_len) {
729 << "Expected " << full_len << " bytes but only " << avail << " are readable. "
782 uint32_t avail = -1;
783 int res = TEMP_FAILURE_RETRY(ioctl(adb_connection_socket_.get(), FIONREAD, &avail));
784 if (res < 0 || avail < sizeof(kJdwpHandshake)) {