Home
last modified time | relevance | path

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

/llvm-project/lldb/include/lldb/Core/
H A DDataFileCache.h109 struct CacheSignature { struct
119 CacheSignature() = default; argument
122 CacheSignature(lldb_private::Module *module);
125 CacheSignature(lldb_private::ObjectFile *objfile);
142 bool operator==(const CacheSignature &rhs) const { argument
148 bool operator!=(const CacheSignature &rhs) const { return !(*this == rhs); }
/llvm-project/lldb/source/Core/
H A DDataFileCache.cpp166 CacheSignature::CacheSignature(lldb_private::Module *module) { in CacheSignature() function in CacheSignature
182 CacheSignature::CacheSignature(lldb_private::ObjectFile *objfile) { in CacheSignature() function in CacheSignature
210 bool CacheSignature::Encode(DataEncoder &encoder) const { in Encode()
232 bool CacheSignature::Decode(const lldb_private::DataExtractor &data, in Decode()
/llvm-project/lldb/unittests/SymbolFile/DWARF/
H A DDWARFIndexCachingTest.cpp222 static void EncodeDecode(const CacheSignature &object, ByteOrder byte_order, in EncodeDecode()
232 CacheSignature decoded_object; in EncodeDecode()
237 static void EncodeDecode(const CacheSignature &object, bool encode_result) { in EncodeDecode()
243 CacheSignature sig; in TEST()
/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DManualDWARFIndex.cpp698 CacheSignature signature; in GetCacheKey()
701 if (CacheSignature(m_dwarf->GetObjectFile()) != signature) { in GetCacheKey()
713 CacheSignature signature(m_dwarf->GetObjectFile()); in LoadFromCache()
/llvm-project/lldb/source/Symbol/
H A DSymtab.cpp1261 CacheSignature signature(m_objfile); in Encode()
1306 CacheSignature signature; in Decode()
1312 if (CacheSignature(m_objfile) != signature) { in Decode()
/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h48 struct CacheSignature;