HomeSort by relevance Sort by last modified time
    Searched defs:Locker (Results 1 - 23 of 23) sorted by null

  /external/lldb/tools/debugserver/source/
PThreadMutex.cpp 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 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)
34 class Locker
39 Locker(PThreadMutex& m, const char *function, const char *file, int line);
40 Locker(PThreadMutex* m, const char *function, const char *file, int line);
41 Locker(pthread_mutex_t *mutex, const char *function, const char *file, int line);
42 ~Locker();
47 Locker(PThreadMutex& m) :
53 Locker(PThreadMutex* m) :
59 Locker(pthread_mutex_t *mutex)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
Locker.h 35 template <typename T> class Locker {
36 WTF_MAKE_NONCOPYABLE(Locker);
38 Locker(T& lockable) : m_lockable(lockable) { m_lockable.lock(); }
39 ~Locker() { m_lockable.unlock(); }
46 using WTF::Locker;
  /hardware/libhardware/modules/gralloc/
gr.h 45 class Locker {
49 Locker& locker; member in class:Locker::Autolock
51 inline Autolock(Locker& locker) : locker(locker) { locker.lock(); }
52 inline ~Autolock() { locker.unlock(); }
54 inline Locker() { pthread_mutex_init(&mutex, 0);
    [all...]
  /hardware/qcom/display/msm8960/libgralloc/
gr.h 64 class Locker {
68 Locker& locker; member in class:Locker::Autolock
70 inline Autolock(Locker& locker) : locker(locker) { locker.lock(); }
71 inline ~Autolock() { locker.unlock(); }
73 inline Locker() { pthread_mutex_init(&mutex, 0);
    [all...]
  /hardware/qcom/display/msm8974/libgralloc/
gr.h 64 class Locker {
68 Locker& locker; member in class:Locker::Autolock
70 inline Autolock(Locker& locker) : locker(locker) { locker.lock(); }
71 inline ~Autolock() { locker.unlock(); }
73 inline Locker() { pthread_mutex_init(&mutex, 0);
    [all...]
  /external/lldb/source/Host/common/
Mutex.cpp 98 Mutex::Locker::Locker () :
109 Mutex::Locker::Locker (Mutex& m) :
121 Mutex::Locker::Locker (Mutex* m) :
133 Mutex::Locker::~Locker ()
143 Mutex::Locker::Lock (Mutex &mutex)
156 Mutex::Locker::Unlock (
    [all...]
  /hardware/qcom/display/msm8084/libgralloc/
gr.h 76 class Locker {
81 Locker& locker; member in class:Locker::Autolock
83 inline Autolock(Locker& locker) : locker(locker) { locker.lock(); }
84 inline ~Autolock() { locker.unlock(); }
86 inline Locker() {
    [all...]
  /hardware/qcom/display/msm8226/libgralloc/
gr.h 76 class Locker {
81 Locker& locker; member in class:Locker::Autolock
83 inline Autolock(Locker& locker) : locker(locker) { locker.lock(); }
84 inline ~Autolock() { locker.unlock(); }
86 inline Locker() {
    [all...]
  /external/lldb/include/lldb/Host/
Mutex.h 30 friend class Locker;
40 /// @class Mutex::Locker
43 /// objects to have a mutex locked when an Mutex::Locker
45 /// when the Mutex::Locker::Reset(pthread_mutex_t *)
49 class Locker
57 /// Mutex::Locker::Reset(pthread_mutex_t *) method.
59 /// @see Mutex::Locker::Reset(pthread_mutex_t *)
61 Locker();
73 Locker(Mutex& m);
85 Locker(Mutex* m)
    [all...]
  /external/lldb/examples/interposing/darwin/fd_interposing/
FDInterposing.cpp 331 class Locker
334 Locker (pthread_mutex_t *mutex_ptr) :
341 Locker (pthread_mutex_t *mutex_ptr, bool &lock_acquired) :
349 ~Locker ()
669 Locker locker (&g_mutex);
698 Locker locker (&g_mutex);
727 Locker locker (&g_mutex)
    [all...]
  /external/chromium_org/v8/src/
v8threads.cc 17 // Track whether this V8 instance has ever called v8::Locker. This allows the
19 bool Locker::active_ = false;
22 // Once the Locker is initialized, the current thread will be guaranteed to have
24 void Locker::Initialize(v8::Isolate* isolate) {
29 // Record that the Locker has been used at least once.
38 // initialize here, before anyone can call ~Locker() or Unlocker().
45 // This may be a locker within an unlocker in which case we have to
59 bool Locker::IsLocked(v8::Isolate* isolate) {
66 bool Locker::IsActive() {
71 Locker::~Locker()
    [all...]
  /external/lldb/include/lldb/Interpreter/
ScriptInterpreterPython.h 301 class Locker : public ScriptInterpreterLocker
319 Locker (ScriptInterpreterPython *py_interpreter = NULL,
324 ~Locker ();
  /external/lldb/source/Interpreter/
ScriptInterpreterPython.cpp 161 ScriptInterpreterPython::Locker::Locker (ScriptInterpreterPython *py_interpreter,
185 ScriptInterpreterPython::Locker::DoAcquireLock()
195 ScriptInterpreterPython::Locker::DoInitSession(bool init_lldb_globals)
203 ScriptInterpreterPython::Locker::DoFreeLock()
213 ScriptInterpreterPython::Locker::DoTearDownSession()
221 ScriptInterpreterPython::Locker::~Locker()
331 ScriptInterpreterPython::Locker locker(script_interpreter
    [all...]
  /external/chromium_org/v8/include/
v8.h     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.update.configurator_3.3.100.v20100512.jar 
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.osgi/3.9.1.v20130814-1242/
org.eclipse.osgi-3.9.1.v20130814-1242.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.osgi_3.9.1.v20140110-1610.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.osgi/3.9.0.v20130529-1710/
org.eclipse.osgi-3.9.0.v20130529-1710.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.osgi_3.9.0.v20130529-1710.jar 

Completed in 782 milliseconds