HomeSort by relevance Sort by last modified time
    Searched full:mutex (Results 101 - 125 of 750) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/srec/portable/include/
ptrd.h 111 * library is shutdown, or cannot lock on mutex; ESR_INVALID_ARGUMENT if monitor is null
122 * @return ESR_SUCCESS if success; ESR_INVALID_ARGUMENT if monitor is null; ESR_FATAL_ERROR if waiting on the mutex failed
243 * Creates a thread mutex. Thread mutexes are similar to thread monitors
247 * so-called recursive locking, meaning that a thread owning the mutex can
251 * @param mutex Handle to the created mutex
256 PORTABLE_API ESR_ReturnCode PtrdMutexCreate(PtrdMutex **mutex);
259 * Destroys a mutex.
261 * @param mutex Handle to the mutex to destro
    [all...]
  /frameworks/base/media/libmedia/
mediaplayer.cpp 72 Mutex::Autolock _l(mLock);
94 Mutex::Autolock _l(mLock);
105 Mutex::Autolock _l(mLock);
161 Mutex::Autolock _l(mLock);
174 Mutex::Autolock _l(mLock);
179 Mutex::Autolock _l(mLock);
186 Mutex::Autolock lock(mLock);
196 Mutex::Autolock lock(mLock);
206 Mutex::Autolock _l(mLock);
233 Mutex::Autolock _l(mLock)
    [all...]
  /ndk/build/platforms/android-3/arch-arm/usr/include/
pthread.h 160 int pthread_mutex_init(pthread_mutex_t *mutex,
162 int pthread_mutex_destroy(pthread_mutex_t *mutex);
163 int pthread_mutex_lock(pthread_mutex_t *mutex);
164 int pthread_mutex_unlock(pthread_mutex_t *mutex);
165 int pthread_mutex_trylock(pthread_mutex_t *mutex);
166 int pthread_mutex_timedlock(pthread_mutex_t *mutex, struct timespec* ts);
173 int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex);
175 pthread_mutex_t * mutex,
183 pthread_mutex_t *mutex,
187 pthread_mutex_t * mutex,
    [all...]
  /ndk/build/platforms/android-4/arch-arm/usr/include/
pthread.h 160 int pthread_mutex_init(pthread_mutex_t *mutex,
162 int pthread_mutex_destroy(pthread_mutex_t *mutex);
163 int pthread_mutex_lock(pthread_mutex_t *mutex);
164 int pthread_mutex_unlock(pthread_mutex_t *mutex);
165 int pthread_mutex_trylock(pthread_mutex_t *mutex);
166 int pthread_mutex_timedlock(pthread_mutex_t *mutex, struct timespec* ts);
173 int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex);
175 pthread_mutex_t * mutex,
183 pthread_mutex_t *mutex,
187 pthread_mutex_t * mutex,
    [all...]
  /ndk/build/platforms/android-5/arch-arm/usr/include/
pthread.h 160 int pthread_mutex_init(pthread_mutex_t *mutex,
162 int pthread_mutex_destroy(pthread_mutex_t *mutex);
163 int pthread_mutex_lock(pthread_mutex_t *mutex);
164 int pthread_mutex_unlock(pthread_mutex_t *mutex);
165 int pthread_mutex_trylock(pthread_mutex_t *mutex);
166 int pthread_mutex_timedlock(pthread_mutex_t *mutex, struct timespec* ts);
173 int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex);
175 pthread_mutex_t * mutex,
183 pthread_mutex_t *mutex,
187 pthread_mutex_t * mutex,
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/pth/
SDL_syscond.c 103 The mutex must be locked before entering this function!
104 The mutex is unlocked during the wait, and locked again after the wait.
122 int SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms)
138 if ( pth_cond_await(&(cond->condpth_p), &(mutex->mutexpth_p), ev) != 0 ) {
149 int SDL_CondWait(SDL_cond *cond, SDL_mutex *mutex)
159 if ( pth_cond_await(&(cond->condpth_p), &(mutex->mutexpth_p), NULL) != 0 ) {
  /external/qemu/distrib/sdl-1.2.12/src/thread/pthread/
SDL_syscond.c 98 int SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms)
119 retval = pthread_cond_timedwait(&cond->cond, &mutex->id, &abstime);
137 /* Wait on the condition variable, unlocking the provided mutex.
138 The mutex must be locked before entering this function!
140 int SDL_CondWait(SDL_cond *cond, SDL_mutex *mutex)
150 if ( pthread_cond_wait(&cond->cond, &mutex->id) != 0 ) {
  /external/qemu/distrib/sdl-1.2.12/src/thread/riscos/
SDL_syscond.c 102 int SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms)
123 retval = pthread_cond_timedwait(&cond->cond, &mutex->id, &abstime);
141 /* Wait on the condition variable, unlocking the provided mutex.
142 The mutex must be locked before entering this function!
144 int SDL_CondWait(SDL_cond *cond, SDL_mutex *mutex)
154 if ( pthread_cond_wait(&cond->cond, &mutex->id) != 0 ) {
  /external/webkit/JavaScriptCore/wtf/
ThreadingWin.cpp 135 static Mutex* atomicallyInitializedStaticMutex;
150 static Mutex& threadMapMutex()
152 static Mutex mutex; local
153 return mutex;
159 atomicallyInitializedStaticMutex = new Mutex;
283 Mutex::Mutex()
289 Mutex::~Mutex()
    [all...]
dtoa.h 25 class Mutex;
30 extern WTF::Mutex* s_dtoaP5Mutex;
  /frameworks/base/media/libstagefright/
AMRWriter.cpp 56 Mutex::Autolock autoLock(mLock);
98 Mutex::Autolock autoLock(mLock);
131 Mutex::Autolock autoLock(mLock);
157 Mutex::Autolock autoLock(mLock);
187 Mutex::Autolock autoLock(mLock);
192 Mutex::Autolock autoLock(mLock);
MediaBufferGroup.cpp 45 Mutex::Autolock autoLock(mLock);
59 Mutex::Autolock autoLock(mLock);
82 Mutex::Autolock autoLock(mLock);
Prefetcher.cpp 51 Mutex mLock;
91 Mutex::Autolock autoLock(mLock);
113 Mutex::Autolock autoLock(mLock);
147 Mutex::Autolock autoLock(mLock);
210 Mutex::Autolock autoLock(mLock);
226 Mutex::Autolock autoLock(mLock);
299 Mutex::Autolock autoLock(mLock);
315 Mutex::Autolock autoLock(mLock);
334 Mutex::Autolock autoLock(mLock);
370 Mutex::Autolock autoLock(mLock)
    [all...]
  /frameworks/base/media/libstagefright/omx/
OMXMaster.cpp 65 Mutex::Autolock autoLock(mLock);
90 Mutex::Autolock autoLock(mLock);
108 Mutex::Autolock autoLock(mLock);
133 Mutex::Autolock autoLock(mLock);
151 Mutex::Autolock autoLock(mLock);
170 Mutex::Autolock autoLock(mLock);
  /external/dbus/dbus/
dbus-sysdeps-pthread.c 100 _dbus_pthread_mutex_free (DBusMutex *mutex)
102 DBusMutexPThread *pmutex = DBUS_MUTEX_PTHREAD (mutex);
112 _dbus_pthread_mutex_lock (DBusMutex *mutex)
114 DBusMutexPThread *pmutex = DBUS_MUTEX_PTHREAD (mutex);
165 _dbus_pthread_mutex_unlock (DBusMutex *mutex)
167 DBusMutexPThread *pmutex = DBUS_MUTEX_PTHREAD (mutex);
216 DBusMutex *mutex)
218 DBusMutexPThread *pmutex = DBUS_MUTEX_PTHREAD (mutex);
230 pmutex->holder = pthread_self(); /* other threads may have locked the mutex in the meantime */
235 DBusMutex *mutex,
    [all...]
  /external/icu4c/test/intltest/
tsmthred.h 12 #include "mutex.h"
  /external/opencore/oscl/oscl/osclproc/src/
oscl_mutex.cpp 26 /*! \file oscl_mutex.cpp .This file provides MUTEX implementation that can be ported
48 * Creates the Mutex
75 * Locks the Mutex
84 //verify the mutex is created.
94 * Try to lock the mutex,if the Mutex is already locked calling thread
121 * Releases the Mutex
130 //verify the mutex is created.
141 * Closes the Mutex
  /frameworks/base/libs/utils/
Threads.cpp 330 * Mutex class
338 Mutex::Mutex()
348 Mutex::Mutex(const char* name)
359 Mutex::Mutex(int type, const char* name)
370 Mutex::~Mutex()
375 status_t Mutex::lock(
    [all...]
  /bionic/libc/kernel/common/linux/mtd/
blktrans.h 15 #include <linux/mutex.h>
27 struct mutex lock;
  /dalvik/libcore/archive/src/main/native/
zip.h 45 MUTEX mutex; member in struct:JCLZipFileLink
  /external/kernel-headers/original/linux/mtd/
blktrans.h 13 #include <linux/mutex.h>
25 struct mutex lock;
  /external/kernel-headers/original/linux/
seq_file.h 7 #include <linux/mutex.h>
22 struct mutex lock;
  /external/skia/src/ports/
SkThread_pthread.cpp 49 SkDEBUGF(("pthread mutex size = %d\n", sizeof(pthread_mutex_t)));
50 SkASSERT(!"mutex storage is too small");
  /external/webkit/WebKit/win/
WebLocalizableStrings.cpp 51 static Mutex& mainBundleLocStringsMutex()
53 DEFINE_STATIC_LOCAL(Mutex, mutex, ());
54 return mutex;
63 static Mutex& frameworkLocStringsMutex()
65 DEFINE_STATIC_LOCAL(Mutex, mutex, ());
66 return mutex;
  /frameworks/base/include/private/binder/
Static.h 31 extern Mutex gProcessMutex;
35 extern Mutex gDefaultServiceManagerLock;

Completed in 782 milliseconds

1 2 3 45 6 7 8 91011>>