Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
59 m_cache.erase(pos); in CloseFile()
70 FDToFileMap::iterator pos = m_cache.find(fd); in WriteFile()
71 if (pos == m_cache.end()) { in WriteFile()
96 FDToFileMap::iterator pos = m_cache.find(fd); in ReadFile()
97 if (pos == m_cache.end()) { in ReadFile()
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/
H A DFileCache.h43 FDToFileMap m_cache; variable
/openbsd-src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.h155 std::map<ObjCISA, ObjCLanguageRuntime::ClassDescriptorSP> m_cache; variable
214 Cache m_cache; variable
H A DAppleObjCRuntimeV2.cpp2879 : TaggedPointerVendorV2(runtime), m_cache(), in TaggedPointerVendorRuntimeAssisted()
2907 CacheIterator iterator = m_cache.find(slot), end = m_cache.end(); in GetClassDescriptor()
2930 m_cache[slot] = actual_class_descriptor_sp; in GetClassDescriptor()
3043 : m_runtime(runtime), m_cache(), m_objc_module_wp(objc_module_sp), in NonPointerISACache()
3058 auto cache_iter = m_cache.find(real_isa); in GetClassDescriptor()
3059 if (cache_iter != m_cache.end()) in GetClassDescriptor()
3064 m_cache[real_isa] = descriptor_sp; in GetClassDescriptor()