Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.h416 m_profile_data; // Profile data, must be protected by m_profile_data_mutex variable
H A DMachProcess.mm518 m_profile_data_mutex(PTHREAD_MUTEX_RECURSIVE), m_profile_data(), function
2559 m_profile_data.push_back(info);
2570 if (m_profile_data.empty())
2573 size_t bytes_available = m_profile_data.front().size();
2576 memcpy(buf, m_profile_data.front().data(), buf_size);
2577 m_profile_data.front().erase(0, buf_size);
2580 memcpy(buf, m_profile_data.front().data(), bytes_available);
2581 m_profile_data.erase(m_profile_data.begin());
/llvm-project-15.0.7/lldb/source/Target/
H A DProcess.cpp433 m_profile_data_comm_mutex(), m_profile_data(), m_iohandler_sync(0), in Process()
4234 m_profile_data.push_back(one_profile_data); in BroadcastAsyncProfileData()
4257 if (m_profile_data.empty()) in GetAsyncProfileData()
4260 std::string &one_profile_data = m_profile_data.front(); in GetAsyncProfileData()
4272 m_profile_data.erase(m_profile_data.begin()); in GetAsyncProfileData()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DProcess.h2892 std::vector<std::string> m_profile_data; variable