Home
last modified time | relevance | path

Searched refs:call_once (Results 1 – 25 of 59) sorted by relevance

123

/freebsd-head/contrib/llvm-project/libcxx/include/__mutex/
HDonce_flag.h38 _LIBCPP_HIDE_FROM_ABI void call_once(once_flag&, _Callable&&, _Args&&...);
43 _LIBCPP_HIDE_FROM_ABI void call_once(once_flag&, _Callable&);
46 _LIBCPP_HIDE_FROM_ABI void call_once(once_flag&, const _Callable&);
70 friend void call_once(once_flag&, _Callable&&, _Args&&...);
73 friend void call_once(once_flag&, _Callable&);
76 friend void call_once(once_flag&, const _Callable&);
126 inline _LIBCPP_HIDE_FROM_ABI void call_once(once_flag& __flag, _Callable&& __func, _Args&&... __arg… in call_once() function
138 inline _LIBCPP_HIDE_FROM_ABI void call_once(once_flag& __flag, _Callable& __func) { in call_once() function
146 inline _LIBCPP_HIDE_FROM_ABI void call_once(once_flag& __flag, const _Callable& __func) { in call_once() function
/freebsd-head/contrib/llvm-project/lldb/source/Host/common/
HDHostInfoBase.cpp88 llvm::call_once(g_fields->m_host_triple_once, []() { in GetTargetTriple()
95 llvm::call_once(g_fields->m_host_arch_once, []() { in GetArchitecture()
121 llvm::call_once(g_fields->m_lldb_so_dir_once, []() { in GetShlibDir()
131 llvm::call_once(g_fields->m_lldb_support_exe_dir_once, []() { in GetSupportExeDir()
141 llvm::call_once(g_fields->m_lldb_headers_dir_once, []() { in GetHeaderDir()
151 llvm::call_once(g_fields->m_lldb_system_plugin_dir_once, []() { in GetSystemPluginDir()
163 llvm::call_once(g_fields->m_lldb_user_plugin_dir_once, []() { in GetUserPluginDir()
174 llvm::call_once(g_fields->m_lldb_process_tmp_dir_once, []() { in GetProcessTempDir()
186 llvm::call_once(g_fields->m_lldb_global_tmp_dir_once, []() { in GetGlobalTempDir()
/freebsd-head/contrib/llvm-project/llvm/include/llvm/
HDPassSupport.h48 llvm::call_once(Initialize##passName##PassFlag, \
68 llvm::call_once(Initialize##passName##PassFlag, \
163 llvm::call_once(Initialize##agName##AnalysisGroupFlag, \
184 llvm::call_once(Initialize##passName##PassFlag, \
205 llvm::call_once(Initialize##passName##PassFlag, \
/freebsd-head/lib/libstdthreads/
HDMakefile6 SRCS= threads.h call_once.c cnd.c mtx.c thrd.c tss.c
9 MLINKS= thrd_create.3 call_once.3 \
HDcall_once.c35 call_once(once_flag *flag, void (*func)(void)) in call_once() function
HDSymbol.map5 call_once;
HDthreads.h77 void call_once(once_flag *, void (*)(void));
/freebsd-head/contrib/llvm-project/llvm/include/llvm/Support/
HDThreading.h87 void call_once(once_flag &flag, Function &&F, Args &&... ArgList) { in call_once() function
89 std::call_once(flag, std::forward<Function>(F), in call_once()
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/
HDProcessPOSIXLog.cpp33 llvm::call_once(g_once_flag, []() { Log::Register("posix", g_channel); }); in Initialize()
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
HDProcessGDBRemoteLog.cpp44 llvm::call_once(g_once_flag, []() { in Initialize()
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/
HDScriptInterpreterNone.cpp47 llvm::call_once(g_once_flag, []() { in Initialize()
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
HDDWARFDebugInfo.cpp155 llvm::call_once(m_dwarf4_dwo_id_to_skeleton_unit_once_flag, [this]() { in GetSkeletonUnit()
174 llvm::call_once(m_units_once_flag, [&] { in ParseUnitHeadersIfNeeded()
HDDWARFContext.cpp36 llvm::call_once(data.flag, [&] { in LoadOrGetSection()
/freebsd-head/contrib/llvm-project/lldb/source/Target/
HDLanguage.cpp65 llvm::call_once(g_initialize, [] { in GetLanguagesMap()
76 llvm::call_once(g_initialize, [] { in GetLanguagesMutex()
135 llvm::call_once(g_initialize, [] { in ForEach()
HDProcessTrace.cpp100 llvm::call_once(g_once_flag, []() { in Initialize()
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
HDRegisterInfos_x86_64_with_base_shared.cpp245 std::call_once(once_flag_x86, []() { in GetRegInfoShared()
268 std::call_once(once_flag_x86_64_with_base, []() { in GetRegInfoShared()
294 std::call_once(once_flag_x86_64, []() { in GetRegInfoShared()
/freebsd-head/contrib/llvm-project/libcxx/modules/std/
HDmutex.inc43 using std::call_once;
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/RegisterTypeBuilder/
HDRegisterTypeBuilderClang.cpp23 llvm::call_once(g_once_flag, []() { in LLDB_PLUGIN_DEFINE()
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
HDClangHost.cpp162 llvm::call_once(g_once_flag, []() { in GetClangResourceDir()
/freebsd-head/contrib/llvm-project/libcxx/include/__thread/support/
HDc11.h118 ::call_once(flag, init_routine); in __libcpp_execute_once()
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Debuginfod/
HDSymbolLocatorDebuginfod.cpp111 llvm::call_once(g_once_flag, []() { in Initialize()
/freebsd-head/contrib/llvm-project/lldb/source/Utility/
HDConstString.cpp205 llvm::call_once(g_pool_initialization_flag, in StringPool()
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSDKernel/
HDProcessFreeBSDKernel.cpp104 llvm::call_once(g_once_flag, []() { in Initialize()
/freebsd-head/contrib/llvm-project/lldb/source/Core/
HDDataFileCache.cpp26 llvm::call_once(once_flag, []() { in GetLLDBIndexCachePolicy()
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
HDCPlusPlusLanguage.cpp1553 llvm::call_once(g_initialize, [this]() -> void { in GetFormatters()
1571 llvm::call_once(g_initialize, []() -> void { in GetHardcodedSummaries()
1637 llvm::call_once(g_initialize, []() -> void { in GetHardcodedSynthetics()

123