reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Commands/CommandObjectMemory.cpp
 1449         if (entry.ref().startswith("0x"))
 1450           success = !entry.ref().getAsInteger(0, uval64);
 1452           success = !entry.ref().getAsInteger(16, uval64);
 1455               "'%s' is not a valid hex string value.\n", entry.c_str());
 1470         uval64 = OptionArgParser::ToBoolean(entry.ref(), false, &success);
 1473               "'%s' is not a valid boolean string value.\n", entry.c_str());
 1481         if (entry.ref().getAsInteger(2, uval64)) {
 1483               "'%s' is not a valid binary string value.\n", entry.c_str());
 1500         if (entry.ref().empty())
 1503         size_t len = entry.ref().size();
 1508         if (process->WriteMemory(addr, entry.c_str(), len, error) == len) {
 1520         if (entry.ref().getAsInteger(0, sval64)) {
 1522               "'%s' is not a valid signed decimal value.\n", entry.c_str());
 1538         if (!entry.ref().getAsInteger(0, uval64)) {
 1541               entry.c_str());
 1556         if (entry.ref().getAsInteger(8, uval64)) {
 1558               "'%s' is not a valid octal string value.\n", entry.c_str());