Home
last modified time | relevance | path

Searched refs:StackWinRecord (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/Breakpad/
H A DBreakpadRecords.h209 class StackWinRecord : public Record {
211 static std::optional<StackWinRecord> parse(llvm::StringRef Line);
213 StackWinRecord(lldb::addr_t RVA, lldb::addr_t CodeSize, in StackWinRecord() function
229 bool operator==(const StackWinRecord &L, const StackWinRecord &R);
230 llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const StackWinRecord &R);
H A DBreakpadRecords.cpp485 std::optional<StackWinRecord> StackWinRecord::parse(llvm::StringRef Line) { in parse()
541 return StackWinRecord(RVA, CodeSize, ParameterSize, SavedRegisterSize, in parse()
545 bool breakpad::operator==(const StackWinRecord &L, const StackWinRecord &R) { in operator ==()
553 const StackWinRecord &R) { in operator <<()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp514 auto record = StackWinRecord::parse( in GetParameterStackSize()
702 std::optional<StackWinRecord> record = StackWinRecord::parse(*It); in ParseWinUnwindPlan()
919 if (auto record = StackWinRecord::parse(*It)) { in ParseUnwindData()