Changeset View
Changeset View
Standalone View
Standalone View
tools/lldb-mi/MICmnLLDBUtilSBValue.cpp
Show First 20 Lines • Show All 499 Lines • ▼ Show 20 Lines | while (addr < end_addr) | ||||
if (error.Fail() || nReadBytes != sizeof(ch)) | if (error.Fail() || nReadBytes != sizeof(ch)) | ||||
return m_pUnkwn; | return m_pUnkwn; | ||||
else if (ch == 0) | else if (ch == 0) | ||||
break; | break; | ||||
result.append(CMIUtilString::ConvertToPrintableASCII(ch, true /* bEscapeQuotes */)); | result.append(CMIUtilString::ConvertToPrintableASCII(ch, true /* bEscapeQuotes */)); | ||||
addr += sizeof(ch); | addr += sizeof(ch); | ||||
} | } | ||||
return result.c_str(); | return result; | ||||
} | } | ||||
//++ ------------------------------------------------------------------------------------ | //++ ------------------------------------------------------------------------------------ | ||||
// Details: Retrieve the state of the value object's name. | // Details: Retrieve the state of the value object's name. | ||||
// Type: Method. | // Type: Method. | ||||
// Args: None. | // Args: None. | ||||
// Return: bool - True = yes name is indeterminate, false = name is valid. | // Return: bool - True = yes name is indeterminate, false = name is valid. | ||||
// Throws: None. | // Throws: None. | ||||
▲ Show 20 Lines • Show All 101 Lines • Show Last 20 Lines |