|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
tools/lldb/include/lldb/Host/StringConvert.h 32 uint64_t ToUInt64(const char *s, uint64_t fail_value = 0, int base = 0,
References
tools/lldb/source/Commands/CommandObjectPlatform.cpp 553 StringConvert::ToUInt64(cmd_line.c_str(), UINT64_MAX);
593 StringConvert::ToUInt64(cmd_line.c_str(), UINT64_MAX);
681 StringConvert::ToUInt64(cmd_line.c_str(), UINT64_MAX);
tools/lldb/source/Commands/CommandObjectTarget.cpp 2735 addr_t load_addr = StringConvert::ToUInt64(
tools/lldb/source/Host/common/XML.cpp 161 value = StringConvert::ToUInt64(str_value.data(), fail_value, base, &success);
tools/lldb/source/Interpreter/OptionValueUInt64.cpp 51 uint64_t value = StringConvert::ToUInt64(value_str.c_str(), 0, 0, &success);
tools/lldb/source/Interpreter/Property.cpp 191 ? StringConvert::ToUInt64(definition.default_cstr_value)
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp 1537 tid = StringConvert::ToUInt64(value.c_str(), LLDB_INVALID_THREAD_ID, 16);
1542 tid = StringConvert::ToUInt64(value.c_str(), LLDB_INVALID_THREAD_ID, 16);
1555 pc = StringConvert::ToUInt64(value.c_str(), LLDB_INVALID_ADDRESS, 16);
1560 pc = StringConvert::ToUInt64(value.c_str(), LLDB_INVALID_ADDRESS, 16);
4674 StringConvert::ToUInt64(main_lm.data(), LLDB_INVALID_ADDRESS, 0);
4690 module.set_link_map(StringConvert::ToUInt64(
4695 module.set_base(StringConvert::ToUInt64(
4702 module.set_dynamic(StringConvert::ToUInt64(
4772 StringConvert::ToUInt64(address.data(), LLDB_INVALID_ADDRESS, 0));
tools/lldb/tools/lldb-server/lldb-gdbserver.cpp 421 unnamed_pipe = (pipe_t)StringConvert::ToUInt64(optarg, -1);