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

  /external/lldb/source/Target/
RegisterContext.cpp 388 const uint32_t bytes_copied = reg_value.GetAsMemoryData (reg_info, local
396 if (bytes_copied == 0)
402 const uint32_t bytes_written = process_sp->WriteMemory (dst_addr, dst, bytes_copied, error);
403 if (bytes_written != bytes_copied)
408 error.SetErrorStringWithFormat("only wrote %u of %u bytes", bytes_written, bytes_copied);
  /system/bt/stack/hid/
hidh_conn.c 871 UINT16 bytes_copied; local
928 bytes_copied = 0;
939 bytes_copied = p_hcon->rem_mtu_size - 1;
    [all...]
  /external/lldb/source/Plugins/Process/elf-core/
ProcessElfCore.cpp 293 size_t bytes_copied = 0; // Number of bytes actually read from the core file local
308 bytes_copied = core_objfile->CopyData(offset + file_start, bytes_to_read, buf);
313 memset(((char *)buf) + bytes_copied, 0, zero_fill_size);
315 return bytes_copied + zero_fill_size;
  /external/lldb/source/Core/
RegisterValue.cpp 147 const uint32_t bytes_copied = reg_data.CopyByteOrderedData (0, // src offset local
152 if (bytes_copied == 0)
155 return bytes_copied;
223 const uint32_t bytes_copied = src_data.CopyByteOrderedData (0, // src offset local
228 if (bytes_copied == 0)
231 return bytes_copied;
    [all...]
Scalar.cpp 2041 const size_t bytes_copied = data.CopyByteOrderedData (0, \/\/ src offset local
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteRegisterContext.cpp 133 const size_t bytes_copied = response.GetHexBytes (const_cast<uint8_t*>(m_reg_data.PeekData(reg_info->byte_offset, reg_byte_size)), reg_byte_size, '\xcc'); local
134 bool success = bytes_copied == reg_byte_size;
139 else if (bytes_copied > 0)
    [all...]

Completed in 386 milliseconds