HomeSort by relevance Sort by last modified time
    Searched refs:PThreadMutex (Results 1 - 11 of 11) sorted by null

  /external/lldb/tools/debugserver/source/
PThreadMutex.cpp 1 //===-- PThreadMutex.cpp ----------------------------------------*- C++ -*-===//
14 #include "PThreadMutex.h"
24 PThreadMutex::Locker::Locker(PThreadMutex& m, const char *function, const char *file, const int line) :
34 PThreadMutex::Locker::Locker(PThreadMutex* m, const char *function, const char *file, const int line) :
44 PThreadMutex::Locker::Locker(pthread_mutex_t *mutex, const char *function, const char *file, const int line) :
55 PThreadMutex::Locker::~Locker()
62 PThreadMutex::Locker::Lock()
78 PThreadMutex::Locker::Unlock(
    [all...]
PThreadMutex.h 1 //===-- PThreadMutex.h ------------------------------------------*- C++ -*-===//
24 #define PTHREAD_MUTEX_LOCKER(var, mutex) PThreadMutex::Locker var(mutex, __FUNCTION__, __FILE__, __LINE__)
27 #define PTHREAD_MUTEX_LOCKER(var, mutex) PThreadMutex::Locker var(mutex)
30 class PThreadMutex
39 Locker(PThreadMutex& m, const char *function, const char *file, int line);
40 Locker(PThreadMutex* m, const char *function, const char *file, int line);
47 Locker(PThreadMutex& m) :
53 Locker(PThreadMutex* m) :
101 PThreadMutex()
107 PThreadMutex(int type
    [all...]
DNBTimer.h 21 #include "PThreadMutex.h"
33 m_mutexAP.reset(new PThreadMutex(PTHREAD_MUTEX_RECURSIVE));
43 m_mutexAP.reset(new PThreadMutex(PTHREAD_MUTEX_RECURSIVE));
52 m_mutexAP.reset(new PThreadMutex(PTHREAD_MUTEX_RECURSIVE));
159 std::unique_ptr<PThreadMutex> m_mutexAP;
PThreadEvent.h 16 #include "PThreadMutex.h"
47 mutable PThreadMutex m_mutex;
DNBLog.cpp 28 #include "PThreadMutex.h"
109 static PThreadMutex g_LogThreadedMutex(PTHREAD_MUTEX_RECURSIVE);
RNBRemote.h 21 #include "PThreadMutex.h"
309 PThreadMutex m_mutex; // Mutex that protects
RNBRemote.cpp 353 PThreadMutex::Locker locker(m_mutex);
590 PThreadMutex::Locker locker(m_mutex);
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/
MachProcess.h 27 #include "PThreadMutex.h"
280 PThreadMutex m_stdio_mutex; // Multithreaded protection for stdio
287 PThreadMutex m_profile_data_mutex; // Multithreaded protection for profile info data
293 PThreadMutex m_exception_messages_mutex; // Multithreaded protection for m_exception_messages
297 PThreadMutex m_state_mutex; // Multithreaded protection for m_state
MachException.h 23 class PThreadMutex;
MachThreadList.h 72 mutable PThreadMutex m_threads_mutex;
MachThread.h 26 #include "PThreadMutex.h"
127 PThreadMutex m_state_mutex; // Multithreaded protection for m_state

Completed in 265 milliseconds