Home
last modified time | relevance | path

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

/llvm-project/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.h429 m_profile_data; // Profile data, must be protected by m_profile_data_mutex variable
H A DMachProcess.mm528 m_profile_data_mutex(PTHREAD_MUTEX_RECURSIVE), m_profile_data(), function
2729 m_profile_data.push_back(info);
2740 if (m_profile_data.empty())
2743 size_t bytes_available = m_profile_data.front().size();
2746 memcpy(buf, m_profile_data.front().data(), buf_size);
2747 m_profile_data.front().erase(0, buf_size);
2750 memcpy(buf, m_profile_data.front().data(), bytes_available);
2751 m_profile_data.erase(m_profile_data.begin());
/llvm-project/lldb/source/Target/
H A DProcess.cpp445 m_profile_data_comm_mutex(), m_profile_data(), m_iohandler_sync(0), in Process()
4524 m_profile_data.push_back(one_profile_data);
4547 if (m_profile_data.empty()) in GetSTDERR()
4550 std::string &one_profile_data = m_profile_data.front(); in GetSTDERR()
4562 m_profile_data.erase(m_profile_data.begin()); in GetSTDERR()
/llvm-project/lldb/include/lldb/Target/
H A DProcess.h3114 std::vector<std::string> m_profile_data;
3122 std::vector<std::string> m_profile_data; global() variable