Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DFileCache.cpp38 m_cache[fd] = file_sp; in OpenFile()
47 FDToFileMap::iterator pos = m_cache.find(fd); in CloseFile()
48 if (pos == m_cache.end()) { in CloseFile()
58 m_cache.erase(pos); in CloseFile()
69 FDToFileMap::iterator pos = m_cache.find(fd); in WriteFile()
70 if (pos == m_cache.end()) { in WriteFile()
95 FDToFileMap::iterator pos = m_cache.find(fd); in ReadFile()
96 if (pos == m_cache.end()) { in ReadFile()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DFileCache.h43 FDToFileMap m_cache; variable
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.h154 std::map<ObjCISA, ObjCLanguageRuntime::ClassDescriptorSP> m_cache; variable
210 Cache m_cache; variable
H A DAppleObjCRuntimeV2.cpp2265 : TaggedPointerVendorV2(runtime), m_cache(), in TaggedPointerVendorRuntimeAssisted()
2294 CacheIterator iterator = m_cache.find(slot), end = m_cache.end(); in GetClassDescriptor()
2310 m_cache[slot] = actual_class_descriptor_sp; in GetClassDescriptor()
2418 : m_runtime(runtime), m_cache(), m_objc_module_wp(objc_module_sp), in NonPointerISACache()
2433 auto cache_iter = m_cache.find(real_isa); in GetClassDescriptor()
2434 if (cache_iter != m_cache.end()) in GetClassDescriptor()
2439 m_cache[real_isa] = descriptor_sp; in GetClassDescriptor()