Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.h419 m_profile_data; // Profile data, must be protected by m_profile_data_mutex variable
H A DMachProcess.mm517 m_profile_data_mutex(PTHREAD_MUTEX_RECURSIVE), m_profile_data(), function
2644 m_profile_data.push_back(info);
2655 if (m_profile_data.empty())
2658 size_t bytes_available = m_profile_data.front().size();
2661 memcpy(buf, m_profile_data.front().data(), buf_size);
2662 m_profile_data.front().erase(0, buf_size);
2665 memcpy(buf, m_profile_data.front().data(), bytes_available);
2666 m_profile_data.erase(m_profile_data.begin());
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DProcess.cpp434 m_profile_data_comm_mutex(), m_profile_data(), m_iohandler_sync(0), in Process()
4255 m_profile_data.push_back(one_profile_data); in BroadcastAsyncProfileData()
4278 if (m_profile_data.empty()) in GetAsyncProfileData()
4281 std::string &one_profile_data = m_profile_data.front(); in GetAsyncProfileData()
4293 m_profile_data.erase(m_profile_data.begin()); in GetAsyncProfileData()
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DProcess.h2931 std::vector<std::string> m_profile_data; variable