HomeSort by relevance Sort by last modified time
    Searched full:umtx (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/icu4c/common/
umutex.c 162 * ICUMutex One of these is set up for each UMTX that is used by other ICU code.
163 * The opaque UMTX points to the corresponding ICUMutex struct.
169 UMTX *owner; /* Points back to the UMTX corrsponding to this */
184 UMTX userMutex; /* For use with u_setMutexFunctions operations, */
196 static UMTX globalUMTX;
198 static UMTX globalUMTX = &globalMutex;
200 static UMTX globalUMTX = NULL;
231 umtx_lock(UMTX *mutex)
268 umtx_unlock(UMTX* mutex
607 UMTX *umtx = thisMutex->owner; local
    [all...]
umutex.h 101 U_CAPI void U_EXPORT2 umtx_lock ( UMTX* mutex );
108 U_CAPI void U_EXPORT2 umtx_unlock ( UMTX* mutex );
119 U_CAPI void U_EXPORT2 umtx_init ( UMTX* mutex );
129 U_CAPI void U_EXPORT2 umtx_destroy( UMTX *mutex );
mutex.h 36 // UMTX myMutex;
53 inline Mutex(UMTX *mutex = NULL);
57 UMTX *fMutex;
63 inline Mutex::Mutex(UMTX *mutex)
servnotf.h 73 private: UMTX notifyLock;
uinit.c 33 static UMTX gICUInitMutex = NULL;
serv.cpp 403 inline XMutex(UMTX *mutex, UBool reentering)
414 UMTX *fMutex;
servloc.h 428 UMTX llock;
  /external/chromium/third_party/icu/source/common/
mutex.h 36 // UMTX myMutex;
61 inline Mutex(UMTX *mutex = NULL);
65 UMTX *fMutex;
71 inline Mutex::Mutex(UMTX *mutex)
umutex.h 101 U_CAPI void U_EXPORT2 umtx_lock ( UMTX* mutex );
108 U_CAPI void U_EXPORT2 umtx_unlock ( UMTX* mutex );
119 U_CAPI void U_EXPORT2 umtx_init ( UMTX* mutex );
129 U_CAPI void U_EXPORT2 umtx_destroy( UMTX *mutex );
servnotf.h 73 private: UMTX notifyLock;
uinit.c 30 static UMTX gICUInitMutex = NULL;
umutex.c 102 static UMTX gGlobalMutex = NULL;
103 static UMTX gIncDecMutex = NULL;
207 umtx_lock(UMTX *mutex)
260 umtx_unlock(UMTX* mutex)
390 umtx_init(UMTX *mutex)
442 umtx_destroy(UMTX *mutex) {
serv.cpp 403 inline XMutex(UMTX *mutex, UBool reentering)
414 UMTX *fMutex;
servloc.h 428 UMTX llock;
  /external/chromium/third_party/icu/public/common/unicode/
uclean.h 129 typedef void *UMTX;
135 * to something that uniquely identifies the mutex into the UMTX that is supplied
139 * The mutex init function must set the UMTX to a non-null value.
141 * identify the mutex by the UMTX value.
147 typedef void U_CALLCONV UMtxInitFn (const void *context, UMTX *mutex, UErrorCode* status);
159 typedef void U_CALLCONV UMtxFn (const void *context, UMTX *mutex);
  /external/icu4c/common/unicode/
uclean.h 113 typedef void *UMTX;
119 * to something that uniquely identifies the mutex into the UMTX that is supplied
123 * The mutex init function must set the UMTX to a non-null value.
125 * identify the mutex by the UMTX value.
131 typedef void U_CALLCONV UMtxInitFn (const void *context, UMTX *mutex, UErrorCode* status);
143 typedef void U_CALLCONV UMtxFn (const void *context, UMTX *mutex);
  /external/chromium/third_party/icu/source/test/cintltst/
hpmufn.c 221 static void U_CALLCONV myMutexInit(const void *context, UMTX *mutex, UErrorCode *status) {
235 static void U_CALLCONV myMutexDestroy(const void *context, UMTX *mutex) {
246 static void U_CALLCONV myMutexLock(const void *context, UMTX *mutex) {
254 static void U_CALLCONV myMutexUnlock(const void *context, UMTX *mutex) {
  /external/icu4c/test/cintltst/
hpmufn.c 221 static void U_CALLCONV myMutexInit(const void *context, UMTX *mutex, UErrorCode *status) {
235 static void U_CALLCONV myMutexDestroy(const void *context, UMTX *mutex) {
246 static void U_CALLCONV myMutexLock(const void *context, UMTX *mutex) {
254 static void U_CALLCONV myMutexUnlock(const void *context, UMTX *mutex) {
  /external/chromium/third_party/icu/source/i18n/
rbt.cpp 27 static UMTX transliteratorDataMutex = NULL;
  /external/icu4c/i18n/
rbt.cpp 27 static UMTX transliteratorDataMutex = NULL;
zonemeta.cpp 26 static UMTX gZoneMetaLock = NULL;
  /external/icu4c/test/intltest/
tsmthred.cpp 293 static UMTX gTestMutexA = NULL;
294 static UMTX gTestMutexB = NULL;
536 //static UMTX debugMutex = NULL;
537 //static UMTX gDebugMutex;
    [all...]
  /external/chromium/third_party/icu/source/test/threadtest/
threadtest.cpp 198 UMTX gStopMutex; // Lets main thread suspend test threads.
199 UMTX gInfoMutex; // Synchronize access to data passed between
  /external/icu4c/test/threadtest/
threadtest.cpp 198 UMTX gStopMutex; // Lets main thread suspend test threads.
199 UMTX gInfoMutex; // Synchronize access to data passed between
  /external/chromium/third_party/icu/source/test/intltest/
tsmthred.cpp 646 static UMTX gTestMutexA = NULL;
647 static UMTX gTestMutexB = NULL;
889 //static UMTX debugMutex = NULL;
890 //static UMTX gDebugMutex;
    [all...]

Completed in 766 milliseconds

1 2 3