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

/external/lldb/source/Plugins/Process/Utility/
H A DDynamicRegisterInfo.cpp110 reg_info.byte_offset = reg_info_dict.GetItemForKeyAsInteger(offset_pystr, UINT32_MAX);
117 reg_info.byte_size = reg_info_dict.GetItemForKeyAsInteger(bitsize_pystr, 0) / 8;
143 const int64_t set = reg_info_dict.GetItemForKeyAsInteger(set_pystr, -1);
152 reg_info.kinds[lldb::eRegisterKindGCC] = reg_info_dict.GetItemForKeyAsInteger(gcc_pystr, LLDB_INVALID_REGNUM);
153 reg_info.kinds[lldb::eRegisterKindDWARF] = reg_info_dict.GetItemForKeyAsInteger(dwarf_pystr, LLDB_INVALID_REGNUM);
/external/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp236 const tid_t tid = thread_dict.GetItemForKeyAsInteger (tid_pystr, LLDB_INVALID_THREAD_ID);
246 const uint32_t core_number = thread_dict.GetItemForKeyAsInteger (core_pystr, UINT32_MAX);
247 const addr_t reg_data_addr = thread_dict.GetItemForKeyAsInteger (reg_data_addr_pystr, LLDB_INVALID_ADDRESS);
/external/lldb/include/lldb/Interpreter/
H A DPythonDataObjects.h211 GetItemForKeyAsInteger (const PythonString &key, int64_t fail_value = 0) const;
/external/lldb/source/Interpreter/
H A DPythonDataObjects.cpp365 PythonDictionary::GetItemForKeyAsInteger (const PythonString &key, int64_t fail_value) const function in class:PythonDictionary

Completed in 1184 milliseconds