Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DModuleCache.cpp218 const auto find_it = in Get() local
220 if (find_it != m_loaded_modules.end()) { in Get()
221 cached_module_sp = (*find_it).second.lock(); in Get()
224 m_loaded_modules.erase(find_it); in Get()
H A DProcess.cpp4314 auto find_it = m_structured_data_plugin_map.find(type_name); in GetStructuredDataPlugin() local
4315 if (find_it != m_structured_data_plugin_map.end()) in GetStructuredDataPlugin()
4316 return find_it->second; in GetStructuredDataPlugin()
6125 auto find_it = m_structured_data_plugin_map.find(type_name); in RouteAsyncStructuredData() local
6126 if (find_it == m_structured_data_plugin_map.end()) { in RouteAsyncStructuredData()
6132 find_it->second->HandleArrivalOfStructuredData(*this, type_name, object_sp); in RouteAsyncStructuredData()
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp88 auto find_it = options_map.find(debugger_wp); in GetGlobalEnableOptions() local
89 if (find_it != options_map.end()) in GetGlobalEnableOptions()
90 return find_it->second; in GetGlobalEnableOptions()
100 auto find_it = options_map.find(debugger_wp); in SetGlobalEnableOptions() local
101 if (find_it != options_map.end()) in SetGlobalEnableOptions()
102 find_it->second = options_sp; in SetGlobalEnableOptions()
198 auto find_it = map.find(operation); in CreateRule() local
199 if (find_it == map.end()) { in CreateRule()
205 return find_it->second(match_accepts, attribute, op_arg, error); in CreateRule()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp1057 auto find_it = m_debugged_processes.find(pid); in HandleInferiorState_Exited() local
1058 assert(find_it != m_debugged_processes.end()); in HandleInferiorState_Exited()
1059 bool vkilled = bool(find_it->second.flags & DebuggedProcess::Flag::vkilled); in HandleInferiorState_Exited()
1060 m_debugged_processes.erase(find_it); in HandleInferiorState_Exited()