Lines Matching defs:byte_count
2511 const uint64_t byte_count = packet.GetHexMaxU64(false, 0);
2512 if (byte_count == 0) {
2521 std::string buf(byte_count, '\0');
2528 read_addr, &buf[0], byte_count, bytes_read);
2532 read_addr, byte_count, bytes_read, error);
2658 const uint64_t byte_count = packet.GetHexMaxU64(false, 0);
2659 if (byte_count == 0) {
2670 std::vector<uint8_t> buf(byte_count, 0);
2677 if (convert_count != byte_count) {
2681 m_current_process->GetID(), write_addr, byte_count, convert_count);
2689 Status error = m_current_process->WriteMemory(write_addr, &buf[0], byte_count,
2699 m_current_process->GetID(), write_addr, byte_count);
3903 size_t byte_count = packet.GetBytesLeft() / 2;
3904 tag_data.resize(byte_count);
3906 if (converted_bytes != byte_count) {