HomeSort by relevance Sort by last modified time
    Searched refs:Mutex (Results 101 - 125 of 1206) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteDatabase.h 104 Mutex& databaseMutex() { return m_lockingMutex; }
134 Mutex m_authorizerLock;
137 Mutex m_lockingMutex;
140 Mutex m_databaseClosingMutex;
  /external/chromium_org/third_party/WebKit/Source/platform/
TaskSynchronizer.h 60 Mutex m_synchronousMutex;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ThreadSafeDataTransport.h 63 Mutex m_mutex;
  /external/chromium_org/v8/src/libplatform/
task-queue.h 11 #include "src/platform/mutex.h"
36 Mutex lock_;
  /external/chromium_org/v8/test/cctest/
test-libplatform.h 43 LockGuard<Mutex> guard(&lock_);
48 LockGuard<Mutex> guard(&lock_);
53 LockGuard<Mutex> guard(&lock_);
58 mutable Mutex lock_;
  /external/clang/test/Misc/
ast-dump-color.cpp 18 class __attribute__((lockable)) Mutex {
65 //CHECK: {{^}}[[Blue]]|-[[RESET]][[GREEN]]CXXRecordDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]line:18:1[[RESET]], [[Yellow]]line:25:1[[RESET]]> [[Yellow]]line:18:33[[RESET]] class[[CYAN]] Mutex[[RESET]] definition{{$}}
66 //CHECK: {{^}}[[Blue]]| |-[[RESET]][[BLUE]]CapabilityAttr[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]col:22[[RESET]]> capability "mutex"{{$}}
67 //CHECK: {{^}}[[Blue]]| |-[[RESET]][[GREEN]]CXXRecordDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]col:1[[RESET]], [[Yellow]]col:33[[RESET]]> [[Yellow]]col:33[[RESET]] implicit class[[CYAN]] Mutex[[RESET]]{{$}}
78 //CHECK: {{^}}[[Blue]]| |-[[RESET]][[GREEN]]CXXConstructorDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]line:18:33[[RESET]]> [[Yellow]]col:33[[RESET]] implicit used[[CYAN]] Mutex[[RESET]] [[Green]]'void (void)'[[RESET]] inline{{.*$}}
80 //CHECK: {{^}}[[Blue]]| |-[[RESET]][[GREEN]]CXXConstructorDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]col:33[[RESET]]> [[Yellow]]col:33[[RESET]] implicit[[CYAN]] Mutex[[RESET]] [[Green]]'void (const class Mutex &)'[[RESET]] inline{{ .*$}}
81 //CHECK: {{^}}[[Blue]]| | `-[[RESET]][[GREEN]]ParmVarDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]col:33[[RESET]]> [[Yellow]]col:33[[RESET]] [[Green]]'const class Mutex &'[[RESET]]{{$}}
82 //CHECK: {{^}}[[Blue]]| `-[[RESET]][[GREEN]]CXXConstructorDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]col:33[[RESET]]> [[Yellow]]col:33[[RESET]] implicit[[CYAN]] Mutex[[RESET]] [[Green]]'void (class Mutex &&)'[[RESET]] inline{{ .*$}
    [all...]
  /external/lldb/include/lldb/Host/
Condition.h 16 #include "lldb/Host/Mutex.h"
73 /// \a mutex. The waiting thread unblocks only after another thread
82 /// The current thread re-acquires the lock on \a mutex following
85 /// @param[in] mutex
86 /// The mutex to use in the \c pthread_cond_timedwait() or
102 Wait (Mutex &mutex, const TimeValue *abstime = NULL, bool *timed_out = NULL);
Predicate.h 14 #include "lldb/Host/Mutex.h"
52 /// Initializes the mutex, condition and value with their default
65 /// Initializes the mutex and condition with their default
81 /// Destrory the condition, mutex, and T objects.
100 Mutex::Locker locker(m_mutex);
123 Mutex::Locker locker(m_mutex);
151 Mutex::Locker locker(m_mutex);
179 Mutex::Locker locker(m_mutex);
220 // unlock the mutex and wait for the condition to be set. When either
221 // function returns, they will re-lock the mutex. We use an auto lock/unloc
    [all...]
  /external/lldb/include/lldb/Utility/
SharedCluster.h 14 #include "lldb/Host/Mutex.h"
49 m_mutex(Mutex::eMutexTypeNormal) {}
59 // and it should have locked the mutex, now we will unlock it before
66 Mutex::Locker locker (m_mutex);
74 Mutex::Locker locker (m_mutex);
104 Mutex m_mutex;
  /frameworks/av/services/camera/libcameraservice/utils/
CameraTraces.cpp 24 #include <utils/Mutex.h>
34 Mutex tracesLock;
44 Mutex::Autolock al(sImpl.tracesLock);
69 Mutex::Autolock al(sImpl.tracesLock);
  /frameworks/base/libs/hwui/renderthread/
RenderTask.cpp 23 #include <utils/Mutex.h>
  /frameworks/wilhelm/src/android/
CallbackProtector.h 58 Mutex mLock;
CallbackProtector.cpp 40 Mutex::Autolock _l(mLock);
60 Mutex::Autolock _l(mLock);
86 Mutex::Autolock _l(mLock);
112 Mutex::Autolock _l(mLock);
133 Mutex::Autolock _l(mLock);
  /packages/apps/Nfc/nci/jni/
DataQueue.h 24 #include "Mutex.h"
104 Mutex mMutex;
  /system/core/include/utils/
threads.h 33 #include <utils/Mutex.h>
Condition.h 29 #include <utils/Mutex.h>
39 * Condition variables are paired up with mutexes. Lock the mutex,
41 * or unlock the mutex and continue. All threads calling wait() must
42 * use the same mutex for a given Condition.
59 // Wait on the condition variable. Lock the mutex before calling.
60 status_t wait(Mutex& mutex);
62 status_t waitRelative(Mutex& mutex, nsecs_t reltime);
105 inline status_t Condition::wait(Mutex& mutex)
    [all...]
  /external/chromium_org/v8/src/platform/
mutex.cc 5 #include "src/platform/mutex.h"
14 static V8_INLINE void InitializeNativeHandle(pthread_mutex_t* mutex) {
17 // Use an error checking mutex in debug mode.
23 result = pthread_mutex_init(mutex, &attr);
27 // Use a fast mutex (default attributes).
28 result = pthread_mutex_init(mutex, NULL);
35 static V8_INLINE void InitializeRecursiveNativeHandle(pthread_mutex_t* mutex) {
41 result = pthread_mutex_init(mutex, &attr);
49 static V8_INLINE void DestroyNativeHandle(pthread_mutex_t* mutex) {
50 int result = pthread_mutex_destroy(mutex);
    [all...]
  /hardware/samsung_slsi/exynos5/libexynosutils/
ExynosMutex.cpp 71 androidMutexType = Mutex::PRIVATE;
74 androidMutexType = Mutex::SHARED;
81 m_mutex = new Mutex(androidMutexType, name);
83 ALOGE("%s::Mutex create fail", __func__);
103 delete ((Mutex *)m_mutex);
125 if (((Mutex *)m_mutex)->lock() != 0) {
148 ((Mutex *)m_mutex)->unlock();
170 ret = ((Mutex *)m_mutex)->tryLock();
188 ExynosMutex *mutex = new ExynosMutex(); local
190 if (mutex->create(type, name) == false)
    [all...]
  /sdk/emulator/opengl/shared/emugl/common/
thread_store_unittest.cpp 17 #include "emugl/common/mutex.h"
34 Mutex::AutoLock lock(mMutex);
41 Mutex::AutoLock lock(mMutex);
46 Mutex::AutoLock lock(mMutex);
52 Mutex::AutoLock lock(mMutex);
57 Mutex::AutoLock lock(mMutex);
67 static Mutex mMutex;
73 Mutex StaticCounter::mMutex;
  /frameworks/av/media/libmedia/
mediametadataretriever.cpp 34 Mutex MediaMetadataRetriever::sServiceLock;
40 Mutex::Autolock lock(sServiceLock);
89 Mutex::Autolock _l(mLock);
104 Mutex::Autolock _l(mLock);
120 Mutex::Autolock _l(mLock);
135 Mutex::Autolock _l(mLock);
146 Mutex::Autolock _l(mLock);
157 Mutex::Autolock _l(mLock);
166 Mutex::Autolock lock(MediaMetadataRetriever::sServiceLock);
173 Mutex::Autolock lock(sServiceLock)
    [all...]
  /external/chromium_org/third_party/leveldatabase/port/
port_chromium.h 37 class Mutex {
39 Mutex();
40 ~Mutex();
49 DISALLOW_COPY_AND_ASSIGN(Mutex);
54 explicit CondVar(Mutex* mu);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
hash.c 65 _glthread_Mutex Mutex; /**< mutual exclusion lock */
82 _glthread_INIT_MUTEX(table->Mutex);
115 _glthread_DESTROY_MUTEX(table->Mutex);
160 _glthread_LOCK_MUTEX(table->Mutex);
162 _glthread_UNLOCK_MUTEX(table->Mutex);
185 _glthread_LOCK_MUTEX(table->Mutex);
202 _glthread_UNLOCK_MUTEX(table->Mutex);
216 _glthread_UNLOCK_MUTEX(table->Mutex);
239 /* have to check this outside of mutex lock */
246 _glthread_LOCK_MUTEX(table->Mutex);
    [all...]
  /external/mesa3d/src/mesa/main/
hash.c 65 _glthread_Mutex Mutex; /**< mutual exclusion lock */
82 _glthread_INIT_MUTEX(table->Mutex);
115 _glthread_DESTROY_MUTEX(table->Mutex);
160 _glthread_LOCK_MUTEX(table->Mutex);
162 _glthread_UNLOCK_MUTEX(table->Mutex);
185 _glthread_LOCK_MUTEX(table->Mutex);
202 _glthread_UNLOCK_MUTEX(table->Mutex);
216 _glthread_UNLOCK_MUTEX(table->Mutex);
239 /* have to check this outside of mutex lock */
246 _glthread_LOCK_MUTEX(table->Mutex);
    [all...]
  /hardware/samsung_slsi/exynos5/libcamera2/
SignalDrivenThread.cpp 82 Mutex::Autolock lock(m_signalMutex);
97 Mutex::Autolock lock(m_signalMutex);
103 Mutex::Autolock lock(m_signalMutex);
122 Mutex::Autolock lock(m_signalMutex);
137 Mutex::Autolock lock(m_signalMutex);
  /external/lldb/source/DataFormatters/
TypeCategoryMap.cpp 23 m_map_mutex(Mutex::eMutexTypeRecursive),
37 Mutex::Locker locker(m_map_mutex);
46 Mutex::Locker locker(m_map_mutex);
60 Mutex::Locker locker(m_map_mutex);
70 Mutex::Locker locker(m_map_mutex);
80 Mutex::Locker locker(m_map_mutex);
109 Mutex::Locker locker(m_map_mutex);
122 Mutex::Locker locker(m_map_mutex);
132 Mutex::Locker locker(m_map_mutex);
143 Mutex::Locker locker(m_map_mutex)
    [all...]

Completed in 2590 milliseconds

1 2 3 45 6 7 8 91011>>