Lines Matching defs:byte_count
2508 const uint64_t byte_count = packet.GetHexMaxU64(false, 0);
2509 if (byte_count == 0) {
2518 std::string buf(byte_count, '\0');
2525 read_addr, &buf[0], byte_count, bytes_read);
2539 __FUNCTION__, m_current_process->GetID(), read_addr, byte_count);
2547 response.PutEscapedBytes(buf.data(), byte_count);
2665 const uint64_t byte_count = packet.GetHexMaxU64(false, 0);
2666 if (byte_count == 0) {
2677 std::vector<uint8_t> buf(byte_count, 0);
2684 if (convert_count != byte_count) {
2688 m_current_process->GetID(), write_addr, byte_count, convert_count);
2696 Status error = m_current_process->WriteMemory(write_addr, &buf[0], byte_count,
2706 m_current_process->GetID(), write_addr, byte_count);
3902 size_t byte_count = packet.GetBytesLeft() / 2;
3903 tag_data.resize(byte_count);
3905 if (converted_bytes != byte_count) {