Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DBreakpadRecords.h139 class InlineRecord : public Record {
141 static std::optional<InlineRecord> parse(llvm::StringRef Line);
142 InlineRecord(size_t InlineNestLevel, uint32_t CallSiteLineNum, in InlineRecord() function
156 bool operator==(const InlineRecord &L, const InlineRecord &R);
157 llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const InlineRecord &R);
H A DBreakpadRecords.cpp329 std::optional<InlineRecord> InlineRecord::parse(llvm::StringRef Line) { in parse()
350 InlineRecord Record = InlineRecord(InlineNestLevel, CallSiteLineNum, in parse()
364 bool breakpad::operator==(const InlineRecord &L, const InlineRecord &R) { in operator ==()
372 const InlineRecord &R) { in operator <<()
/src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp314 if (auto record = InlineRecord::parse(*It)) { in ParseBlocksRecursive()