Home
last modified time | relevance | path

Searched refs:m_cache (Results 1 – 4 of 4) sorted by relevance

/llvm-project/lldb/source/Host/common/
H A DFileCache.cpp39 m_cache[fd] = std::move(file.get()); in OpenFile()
48 FDToFileMap::iterator pos = m_cache.find(fd); in CloseFile()
49 if (pos == m_cache.end()) { in CloseFile()
60 m_cache.erase(pos); in CloseFile()
71 FDToFileMap::iterator pos = m_cache.find(fd); in WriteFile()
72 if (pos == m_cache.end()) { in WriteFile()
98 FDToFileMap::iterator pos = m_cache.find(fd); in ReadFile()
99 if (pos == m_cache.end()) { in ReadFile()
/llvm-project/lldb/include/lldb/Host/
H A DFileCache.h43 FDToFileMap m_cache; variable
/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.h155 std::map<ObjCISA, ObjCLanguageRuntime::ClassDescriptorSP> m_cache;
214 Cache m_cache;
153 std::map<ObjCISA, ObjCLanguageRuntime::ClassDescriptorSP> m_cache; global() variable
212 Cache m_cache; global() variable
H A DAppleObjCRuntimeV2.cpp3010 : TaggedPointerVendorV2(runtime), m_cache(), in TaggedPointerVendorRuntimeAssisted()
3038 CacheIterator iterator = m_cache.find(slot), end = m_cache.end(); in GetClassDescriptor()
3061 m_cache[slot] = actual_class_descriptor_sp; in GetClassDescriptor()
3174 : m_runtime(runtime), m_cache(), m_objc_module_wp(objc_module_sp), in NonPointerISACache()
3189 auto cache_iter = m_cache.find(real_isa); in GetClassDescriptor()
3190 if (cache_iter != m_cache.end()) in GetClassDescriptor()
3195 m_cache[real_isa] = descriptor_sp; in GetClassDescriptor()