Home
last modified time | relevance | path

Searched refs:m_protocol (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/lib/libthr/thread/
H A Dthr_mutexattr.c219 *protocol = (*mattr)->m_protocol; in _pthread_mutexattr_getprotocol()
233 (*mattr)->m_protocol = protocol; in _pthread_mutexattr_setprotocol()
247 else if ((*mattr)->m_protocol != PTHREAD_PRIO_PROTECT) in _pthread_mutexattr_getprioceiling()
262 else if ((*mattr)->m_protocol != PTHREAD_PRIO_PROTECT) in _pthread_mutexattr_setprioceiling()
H A Dthr_mutex.c217 if (attr->m_protocol < PTHREAD_PRIO_NONE || in mutex_check_attr()
218 attr->m_protocol > PTHREAD_PRIO_PROTECT) in mutex_check_attr()
249 switch (attr->m_protocol) { in mutex_init_body()
340 .m_protocol = PTHREAD_PRIO_NONE, in shared_mutex_init()
413 .m_protocol = PTHREAD_PRIO_NONE, in _pthread_mutex_init_calloc_cb()
H A Dthr_init.c96 .m_protocol = PTHREAD_PRIO_NONE,
104 .m_protocol = PTHREAD_PRIO_NONE,
H A Dthr_private.h188 int m_protocol; member
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-server/
H A DAcceptor.cpp29 const Socket::SocketProtocol m_protocol; member
43 protocol = s.m_protocol; in FindProtocolByScheme()
52 if (s.m_protocol == protocol) in FindSchemeByProtocol()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DSocket.h88 SocketProtocol GetSocketProtocol() const { return m_protocol; } in GetSocketProtocol()
117 SocketProtocol m_protocol; variable
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DSocket.cpp75 : IOObject(eFDTypeSocket, should_close), m_protocol(protocol), in Socket()