Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/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.cpp487 std::optional<StackWinRecord> StackWinRecord::parse(llvm::StringRef Line) { in parse()
543 return StackWinRecord(RVA, CodeSize, ParameterSize, SavedRegisterSize, in parse()
547 bool breakpad::operator==(const StackWinRecord &L, const StackWinRecord &R) { in operator ==()
555 const StackWinRecord &R) { in operator <<()
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp507 auto record = StackWinRecord::parse( in GetParameterStackSize()
695 std::optional<StackWinRecord> record = StackWinRecord::parse(*It); in ParseWinUnwindPlan()
912 if (auto record = StackWinRecord::parse(*It)) { in ParseUnwindData()