Searched refs:StackWinRecord (Results 1 – 4 of 4) sorted by relevance
| /llvm-project-15.0.7/lldb/unittests/ObjectFile/Breakpad/ |
| H A D | BreakpadRecordsTest.cpp | 147 TEST(StackWinRecord, parse) { in TEST() argument 152 EXPECT_EQ(llvm::None, StackWinRecord::parse( in TEST() 156 EXPECT_EQ(llvm::None, StackWinRecord::parse( in TEST() 160 EXPECT_EQ(llvm::None, StackWinRecord::parse( in TEST() 167 EXPECT_EQ(llvm::None, StackWinRecord::parse("STACK WIN 4 47 8 1")); in TEST() 168 EXPECT_EQ(llvm::None, StackWinRecord::parse("STACK WIN 4 47 8")); in TEST() 169 EXPECT_EQ(llvm::None, StackWinRecord::parse("STACK WIN 4 47")); in TEST() 170 EXPECT_EQ(llvm::None, StackWinRecord::parse("STACK WIN 4")); in TEST() 171 EXPECT_EQ(llvm::None, StackWinRecord::parse("STACK WIN")); in TEST() 172 EXPECT_EQ(llvm::None, StackWinRecord::parse("STACK")); in TEST() [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Breakpad/ |
| H A D | BreakpadRecords.h | 208 class StackWinRecord : public Record { 210 static llvm::Optional<StackWinRecord> parse(llvm::StringRef Line); 212 StackWinRecord(lldb::addr_t RVA, lldb::addr_t CodeSize, in StackWinRecord() function 228 bool operator==(const StackWinRecord &L, const StackWinRecord &R); 229 llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const StackWinRecord &R);
|
| H A D | BreakpadRecords.cpp | 485 llvm::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 <<()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/Breakpad/ |
| H A D | SymbolFileBreakpad.cpp | 512 auto record = StackWinRecord::parse( in GetParameterStackSize() 700 llvm::Optional<StackWinRecord> record = StackWinRecord::parse(*It); in ParseWinUnwindPlan() 917 if (auto record = StackWinRecord::parse(*It)) { in ParseUnwindData()
|