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

  /system/core/adb/
file_sync_client.cpp 106 uint64_t bytes_expected; member in struct:TransferLedger
127 bytes_expected = 0;
148 if (bytes_expected != 0 && bytes_transferred <= bytes_expected) {
149 int overall_percentage = static_cast<int>(bytes_transferred * 100 / bytes_expected);
560 current_ledger_.bytes_expected = 0;
564 if (!ci.skip) current_ledger_.bytes_expected += ci.size;
570 current_ledger_.bytes_expected = expected_total_bytes;
    [all...]
  /external/v8/src/
unicode.cc 330 uint8_t bytes_expected = *buffer >> 28; local
336 *buffer = (bytes_expected << 28 | bytes_left << 24 | value);
340 bool sequence_was_too_long = (bytes_expected == 2 && value < 0x80) ||
341 (bytes_expected == 3 && value < 0x800);
    [all...]
  /external/google-breakpad/src/common/windows/
omap.cc 199 DWORD bytes_expected = count * sizeof(OmapTable::value_type); local
209 if (FAILED(stream->Next(count, bytes_expected, &bytes_read,

Completed in 88 milliseconds