Searched refs:nAddrNumBytes (Results 1 - 1 of 1) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMICmdCmdData.cpp597 const MIuint64 nAddrNumBytes = pArgNumBytes->GetValue(); local
599 m_pBufferMemory = new unsigned char[nAddrNumBytes];
602 SetError(CMIUtilString::Format(MIRSRC(IDS_CMD_ERR_MEMORY_ALLOC_FAILURE), m_cmdData.strMiCmd.c_str(), nAddrNumBytes)); local
606 const MIuint64 nReadBytes = sbProcess.ReadMemory(static_cast<lldb::addr_t>(nAddrStart), (void *)m_pBufferMemory, nAddrNumBytes, error);
607 if (nReadBytes != nAddrNumBytes)
610 CMIUtilString::Format(MIRSRC(IDS_CMD_ERR_LLDB_ERR_NOT_READ_WHOLE_BLK), m_cmdData.strMiCmd.c_str(), nAddrNumBytes, nAddrStart)); local
618 SetError(CMIUtilString::Format(MIRSRC(IDS_CMD_ERR_LLDB_ERR_READ_MEM_BYTES), m_cmdData.strMiCmd.c_str(), nAddrNumBytes, nAddrStart, local
624 m_nAddrNumBytesToRead = nAddrNumBytes;

Completed in 52 milliseconds