Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DPipePosix.cpp71 m_read_mutex, m_write_mutex, pipe_posix.m_read_mutex, in operator =()
72 pipe_posix.m_write_mutex); in operator =()
83 std::scoped_lock<std::mutex, std::mutex> guard(m_read_mutex, m_write_mutex); in CreateNew()
111 std::scoped_lock<std::mutex, std::mutex> guard(m_read_mutex, m_write_mutex); in CreateNew()
146 std::scoped_lock<std::mutex, std::mutex> guard(m_read_mutex, m_write_mutex); in OpenAsReader()
165 std::lock_guard<std::mutex> guard(m_write_mutex); in OpenAsWriter()
213 std::lock_guard<std::mutex> guard(m_write_mutex); in GetWriteFileDescriptor()
233 std::lock_guard<std::mutex> guard(m_write_mutex); in ReleaseWriteFileDescriptor()
244 std::scoped_lock<std::mutex, std::mutex> guard(m_read_mutex, m_write_mutex); in Close()
267 std::lock_guard<std::mutex> guard(m_write_mutex); in CanWrite()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DCommunication.cpp30 : m_connection_sp(), m_write_mutex(), m_close_on_eof(true) { in Communication()
102 std::lock_guard<std::mutex> guard(m_write_mutex); in Write()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DCommunication.h171 m_write_mutex; ///< Don't let multiple threads write at the same time... variable
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DPipePosix.h89 mutable std::mutex m_write_mutex; variable