Home
last modified time | relevance | path

Searched refs:CacheSignature (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DDataFileCache.h98 struct CacheSignature { struct
108 CacheSignature() = default; argument
111 CacheSignature(lldb_private::Module *module);
114 CacheSignature(lldb_private::ObjectFile *objfile);
131 bool operator==(const CacheSignature &rhs) const { argument
137 bool operator!=(const CacheSignature &rhs) const { return !(*this == rhs); }
/llvm-project-15.0.7/lldb/source/Core/
H A DDataFileCache.cpp158 CacheSignature::CacheSignature(lldb_private::Module *module) { in CacheSignature() function in CacheSignature
174 CacheSignature::CacheSignature(lldb_private::ObjectFile *objfile) { in CacheSignature() function in CacheSignature
202 bool CacheSignature::Encode(DataEncoder &encoder) const { in Encode()
224 bool CacheSignature::Decode(const lldb_private::DataExtractor &data, in Decode()
/llvm-project-15.0.7/lldb/unittests/SymbolFile/DWARF/
H A DDWARFIndexCachingTest.cpp201 static void EncodeDecode(const CacheSignature &object, ByteOrder byte_order, in EncodeDecode()
211 CacheSignature decoded_object; in EncodeDecode()
216 static void EncodeDecode(const CacheSignature &object, bool encode_result) { in EncodeDecode()
222 CacheSignature sig; in TEST()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DManualDWARFIndex.cpp630 CacheSignature signature; in Decode()
633 if (CacheSignature(m_dwarf->GetObjectFile()) != signature) { in Decode()
645 CacheSignature signature(m_dwarf->GetObjectFile()); in Encode()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DSymtab.cpp1248 CacheSignature signature(m_objfile); in Encode()
1293 CacheSignature signature; in Decode()
1299 if (CacheSignature(m_objfile) != signature) { in Decode()
/llvm-project-15.0.7/lldb/include/lldb/
H A Dlldb-forward.h49 struct CacheSignature;