Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lldb/include/lldb/Core/
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); }
/openbsd/src/gnu/llvm/lldb/source/Core/
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()
/openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
DManualDWARFIndex.cpp650 CacheSignature signature; in Decode()
653 if (CacheSignature(m_dwarf->GetObjectFile()) != signature) { in Decode()
665 CacheSignature signature(m_dwarf->GetObjectFile()); in Encode()
/openbsd/src/gnu/llvm/lldb/source/Symbol/
DSymtab.cpp1252 CacheSignature signature(m_objfile); in Encode()
1297 CacheSignature signature; in Decode()
1303 if (CacheSignature(m_objfile) != signature) { in Decode()
/openbsd/src/gnu/llvm/lldb/include/lldb/
Dlldb-forward.h49 struct CacheSignature;