Home
last modified time | relevance | path

Searched defs:fail_value (Results 1 – 25 of 31) sorted by relevance

12

/openbsd/gnu/llvm/lldb/examples/python/
H A Dfile_extract.py63 def get_sint8(self, fail_value=0): argument
72 def get_uint8(self, fail_value=0): argument
81 def get_sint16(self, fail_value=0): argument
90 def get_uint16(self, fail_value=0): argument
99 def get_sint32(self, fail_value=0): argument
108 def get_uint32(self, fail_value=0): argument
117 def get_sint64(self, fail_value=0): argument
126 def get_uint64(self, fail_value=0): argument
138 fail_value='', argument
164 def get_n_sint8(self, n, fail_value=0): argument
[all …]
H A Ddict_utils.py11 def get_keys_for_value(self, value, fail_value=None): argument
18 def get_first_key_for_value(self, value, fail_value=None): argument
25 def get_value(self, key, fail_value=None): argument
H A Dgdbremote.py434 def get_thread_id(self, fail_value=-1): argument
497 def get_number(self, fail_value=-1): argument
/openbsd/gnu/llvm/lldb/source/Utility/
H A DStringExtractor.cpp43 char StringExtractor::GetChar(char fail_value) { in GetChar()
74 uint8_t StringExtractor::GetHexU8(uint8_t fail_value, bool set_eof_on_fail) { in GetHexU8()
93 uint32_t StringExtractor::GetU32(uint32_t fail_value, int base) { in GetU32()
108 int32_t StringExtractor::GetS32(int32_t fail_value, int base) { in GetS32()
123 uint64_t StringExtractor::GetU64(uint64_t fail_value, int base) { in GetU64()
138 int64_t StringExtractor::GetS64(int64_t fail_value, int base) { in GetS64()
154 uint32_t fail_value) { in GetHexMaxU32()
205 uint64_t fail_value) { in GetHexMaxU64()
H A DRegisterValue.cpp500 uint16_t RegisterValue::GetAsUInt16(uint16_t fail_value, in GetAsUInt16()
526 uint32_t RegisterValue::GetAsUInt32(uint32_t fail_value, in GetAsUInt32()
556 uint64_t RegisterValue::GetAsUInt64(uint64_t fail_value, in GetAsUInt64()
591 llvm::APInt RegisterValue::GetAsUInt128(const llvm::APInt &fail_value, in GetAsUInt128()
626 float RegisterValue::GetAsFloat(float fail_value, bool *success_ptr) const { in GetAsFloat()
645 double RegisterValue::GetAsDouble(double fail_value, bool *success_ptr) const { in GetAsDouble()
665 long double RegisterValue::GetAsLongDouble(long double fail_value, in GetAsLongDouble()
H A DArgs.cpp422 lldb::Encoding fail_value) { in StringToEncoding()
/openbsd/gnu/llvm/lldb/tools/debugserver/source/
H A DStdStringExtractor.cpp35 char StdStringExtractor::GetChar(char fail_value) { in GetChar()
67 uint8_t StdStringExtractor::GetHexU8(uint8_t fail_value, bool set_eof_on_fail) { in GetHexU8()
86 uint32_t StdStringExtractor::GetU32(uint32_t fail_value, int base) { in GetU32()
101 int32_t StdStringExtractor::GetS32(int32_t fail_value, int base) { in GetS32()
116 uint64_t StdStringExtractor::GetU64(uint64_t fail_value, int base) { in GetU64()
131 int64_t StdStringExtractor::GetS64(int64_t fail_value, int base) { in GetS64()
147 uint32_t fail_value) { in GetHexMaxU32()
198 uint64_t fail_value) { in GetHexMaxU64()
H A DStringConvert.cpp15 int64_t ToSInt64(const char *s, int64_t fail_value, int base, in ToSInt64()
31 uint64_t ToUInt64(const char *s, uint64_t fail_value, int base, in ToUInt64()
47 double ToDouble(const char *s, double fail_value, bool *success_ptr) { in ToDouble()
/openbsd/gnu/llvm/lldb/source/Interpreter/
H A DOptionArgParser.cpp19 bool OptionArgParser::ToBoolean(llvm::StringRef ref, bool fail_value, in ToBoolean()
36 char OptionArgParser::ToChar(llvm::StringRef s, char fail_value, in ToChar()
50 int32_t fail_value, Status &error) { in ToOptionEnum()
125 llvm::StringRef s, lldb::ScriptLanguage fail_value, bool *success_ptr) { in ToScriptLanguage()
145 lldb::addr_t fail_value, in ToAddress()
H A DOptionValue.cpp20 uint64_t OptionValue::GetUInt64Value(uint64_t fail_value, bool *success_ptr) { in GetUInt64Value()
/openbsd/gnu/llvm/lldb/source/Host/common/
H A DNativeRegisterContext.cpp123 lldb::addr_t NativeRegisterContext::GetPC(lldb::addr_t fail_value) { in GetPC()
142 NativeRegisterContext::GetPCfromBreakpointLocation(lldb::addr_t fail_value) { in GetPCfromBreakpointLocation()
152 lldb::addr_t NativeRegisterContext::GetSP(lldb::addr_t fail_value) { in GetSP()
164 lldb::addr_t NativeRegisterContext::GetFP(lldb::addr_t fail_value) { in GetFP()
176 lldb::addr_t NativeRegisterContext::GetReturnAddress(lldb::addr_t fail_value) { in GetReturnAddress()
182 lldb::addr_t NativeRegisterContext::GetFlags(lldb::addr_t fail_value) { in GetFlags()
190 lldb::addr_t fail_value) { in ReadRegisterAsUnsigned()
198 lldb::addr_t fail_value) { in ReadRegisterAsUnsigned()
H A DXML.cpp155 uint64_t fail_value, int base) const { in GetAttributeValueAsUnsigned()
297 bool XMLNode::GetElementTextAsUnsigned(uint64_t &value, uint64_t fail_value, in GetElementTextAsUnsigned()
/openbsd/gnu/llvm/lldb/source/Target/
H A DRegisterContext.cpp95 uint64_t RegisterContext::GetPC(uint64_t fail_value) { in GetPC()
152 uint64_t RegisterContext::GetSP(uint64_t fail_value) { in GetSP()
164 uint64_t RegisterContext::GetFP(uint64_t fail_value) { in GetFP()
176 uint64_t RegisterContext::GetReturnAddress(uint64_t fail_value) { in GetReturnAddress()
182 uint64_t RegisterContext::GetFlags(uint64_t fail_value) { in GetFlags()
189 uint64_t fail_value) { in ReadRegisterAsUnsigned()
196 uint64_t fail_value) { in ReadRegisterAsUnsigned()
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfoEntry.cpp533 const DWARFUnit *cu, const dw_attr_t attr, const char *fail_value, in GetAttributeValueAsString()
546 const DWARFUnit *cu, const dw_attr_t attr, uint64_t fail_value, in GetAttributeValueAsUnsigned()
581 const DWARFUnit *cu, const dw_attr_t attr, uint64_t fail_value, in GetAttributeValueAsAddress()
597 const DWARFUnit *cu, dw_addr_t lo_pc, uint64_t fail_value, in GetAttributeHighPC()
621 uint64_t fail_value, bool check_specification_or_abstract_origin) const { in GetAttributeAddressRange()
/openbsd/gnu/llvm/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp64 uint64_t fail_value) { in GetUnsigned()
71 uint64_t fail_value) { in GetUnsigned()
78 bool fail_value) { in GetBoolean()
87 bool fail_value) { in GetBoolean()
94 int64_t fail_value) { in GetSigned()
101 int64_t fail_value) { in GetSigned()
/openbsd/gnu/llvm/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.h217 uint64_t fail_value, bool *success_ptr) { in MemARead()
254 uint64_t fail_value, bool *success_ptr) { in MemURead()
/openbsd/gnu/llvm/lldb/source/Core/
H A DEmulateInstruction.cpp103 uint64_t fail_value, in ReadRegisterUnsigned()
114 uint64_t fail_value, in ReadRegisterUnsigned()
177 uint64_t fail_value, in ReadMemoryUnsigned()
H A DValueObject.cpp1099 uint64_t ValueObject::GetValueAsUnsigned(uint64_t fail_value, bool *success) { in GetValueAsUnsigned()
1117 int64_t ValueObject::GetValueAsSigned(int64_t fail_value, bool *success) { in GetValueAsSigned()
/openbsd/gnu/llvm/lldb/include/lldb/Utility/
H A DDataExtractor.h995 template <typename T> T Get(lldb::offset_t *offset_ptr, T fail_value) const { in Get()
H A DRangeMap.h261 BaseType GetMinRangeBase(BaseType fail_value) const { in GetMinRangeBase()
272 BaseType GetMaxRangeEnd(BaseType fail_value) const { in GetMaxRangeEnd()
/openbsd/gnu/llvm/lldb/include/lldb/Core/
H A DUniqueCStringMap.h86 T Find(ConstString unique_cstr, T fail_value) const { in Find()
/openbsd/gnu/llvm/lldb/source/API/
H A DSBValue.cpp861 int64_t SBValue::GetValueAsSigned(SBError &error, int64_t fail_value) { in GetValueAsSigned()
881 uint64_t SBValue::GetValueAsUnsigned(SBError &error, uint64_t fail_value) { in GetValueAsUnsigned()
901 int64_t SBValue::GetValueAsSigned(int64_t fail_value) { in GetValueAsSigned()
912 uint64_t SBValue::GetValueAsUnsigned(uint64_t fail_value) { in GetValueAsUnsigned()
/openbsd/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteRegisterContext.cpp771 uint64_t fail_value = LLDB_INVALID_ADDRESS; in AArch64SVEReconfigure() local
/openbsd/gnu/llvm/lldb/source/Expression/
H A DDWARFExpression.cpp2169 llvm::APInt fail_value(1, 0, false); in Evaluate() local
/openbsd/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Ddecorators.py877 def _get_bool_config(key, fail_value = True): argument

12