Home
last modified time | relevance | path

Searched refs:core_used_map (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp189 std::vector<bool> core_used_map(num_cores, false); in UpdateThreadList() local
204 old_thread_list, core_used_map, NULL)); in UpdateThreadList()
216 if (!core_used_map[core_idx]) { in UpdateThreadList()
228 ThreadList &old_thread_list, std::vector<bool> &core_used_map, in CreateThreadFromThreadInfo() argument
273 if (core_number < core_used_map.size()) in CreateThreadFromThreadInfo()
274 core_used_map[core_number] = true; in CreateThreadFromThreadInfo()
404 std::vector<bool> core_used_map; in CreateThread() local
411 thread_list, core_used_map, &did_create)); in CreateThread()
H A DOperatingSystemPython.h82 std::vector<bool> &core_used_map, bool *did_create_ptr);