OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:u_setMutexFunctions
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/icu/source/common/unicode/
usystem.h
30
# define
u_setMutexFunctions
u_setMutexFunctions_SYSTEM_API_DO_NOT_USE
uclean.h
71
* u_setMemoryFunctions(),
u_setMutexFunctions
and
121
* @param context user supplied value, obtained from from
u_setMutexFunctions
().
138
* @param context user supplied value, obtained from from
u_setMutexFunctions
().
166
u_setMutexFunctions
(const void *context, UMtxInitFn *init, UMtxFn *destroy, UMtxFn *lock, UMtxFn *unlock,
urename.h
343
#define
u_setMutexFunctions
U_ICU_ENTRY_POINT_RENAME(
u_setMutexFunctions
)
[
all
...]
/external/icu4c/common/unicode/
uclean.h
70
* u_setMemoryFunctions(),
u_setMutexFunctions
and
120
* @param context user supplied value, obtained from from
u_setMutexFunctions
().
137
* @param context user supplied value, obtained from from
u_setMutexFunctions
().
163
u_setMutexFunctions
(const void *context, UMtxInitFn *init, UMtxFn *destroy, UMtxFn *lock, UMtxFn *unlock,
urename.h
332
#define
u_setMutexFunctions
U_ICU_ENTRY_POINT_RENAME(
u_setMutexFunctions
)
[
all
...]
/external/chromium_org/third_party/icu/source/test/cintltst/
hpmufn.c
207
* Test
u_setMutexFunctions
()
282
u_setMutexFunctions
(&gContext, myMutexInit, myMutexDestroy, myMutexLock, myMutexUnlock, &status);
290
u_setMutexFunctions
(&gContext, NULL, myMutexDestroy, myMutexLock, myMutexUnlock, &status);
293
u_setMutexFunctions
(&gContext, myMutexInit, NULL, myMutexLock, myMutexUnlock, &status);
296
u_setMutexFunctions
(&gContext, myMutexInit, myMutexDestroy, NULL, myMutexUnlock, &status);
299
u_setMutexFunctions
(&gContext, myMutexInit, myMutexDestroy, myMutexLock, NULL, &status);
302
/*
u_setMutexFunctions
() should work with null or non-null context pointer */
304
u_setMutexFunctions
(NULL, myMutexInit, myMutexDestroy, myMutexLock, myMutexUnlock, &status);
306
u_setMutexFunctions
(&gContext, myMutexInit, myMutexDestroy, myMutexLock, myMutexUnlock, &status);
315
u_setMutexFunctions
(&gContext, myMutexInit, myMutexDestroy, myMutexLock, myMutexUnlock, &status)
[
all
...]
/external/icu4c/test/cintltst/
hpmufn.c
207
* Test
u_setMutexFunctions
()
282
u_setMutexFunctions
(&gContext, myMutexInit, myMutexDestroy, myMutexLock, myMutexUnlock, &status);
290
u_setMutexFunctions
(&gContext, NULL, myMutexDestroy, myMutexLock, myMutexUnlock, &status);
293
u_setMutexFunctions
(&gContext, myMutexInit, NULL, myMutexLock, myMutexUnlock, &status);
296
u_setMutexFunctions
(&gContext, myMutexInit, myMutexDestroy, NULL, myMutexUnlock, &status);
299
u_setMutexFunctions
(&gContext, myMutexInit, myMutexDestroy, myMutexLock, NULL, &status);
302
/*
u_setMutexFunctions
() should work with null or non-null context pointer */
304
u_setMutexFunctions
(NULL, myMutexInit, myMutexDestroy, myMutexLock, myMutexUnlock, &status);
306
u_setMutexFunctions
(&gContext, myMutexInit, myMutexDestroy, myMutexLock, myMutexUnlock, &status);
315
u_setMutexFunctions
(&gContext, myMutexInit, myMutexDestroy, myMutexLock, myMutexUnlock, &status)
[
all
...]
/external/icu4c/common/
umutex.cpp
100
* directly using the system (Posix or Windows) APIs. See
u_setMutexFunctions
().
110
// Clean up (undo) the effects of
u_setMutexFunctions
().
305
u_setMutexFunctions
(const void *context, UMtxInitFn *i, UMtxFn *d, UMtxFn *l, UMtxFn *u,
324
// It's possible to call
u_setMutexFunctions
() more than once without without explicitly cleaning up,
327
// previous
u_setMutexFunctions
(), and now need to be destroyed.
340
*
u_setMutexFunctions
must be done in a single-threaded envioronment. Not thread safe.
/external/chromium_org/third_party/icu/source/common/
umutex.c
184
UMTX userMutex; /* For use with
u_setMutexFunctions
operations, */
217
* directly using the system (Posix or Windows) APIs. See
u_setMutexFunctions
().
421
u_setMutexFunctions
(const void *context, UMtxInitFn *i, UMtxFn *d, UMtxFn *l, UMtxFn *u,
465
* yet initialized - at the end u_cleanup(), and at the end of
u_setMutexFunctions
, both
Completed in 332 milliseconds