Home
last modified time | relevance | path

Searched refs:RELEASE_LOCK (Results 1 – 8 of 8) sorted by relevance

/external/jackson-core/src/main/java/com/fasterxml/jackson/core/util/
DThreadLocalBufferManager.java26 private final Object RELEASE_LOCK = new Object(); field in ThreadLocalBufferManager
67 synchronized (RELEASE_LOCK) { in releaseBuffers()
/external/python/cpython2/Modules/
Dbz2module.c70 #define RELEASE_LOCK(obj) PyThread_release_lock(obj->lock) macro
73 #define RELEASE_LOCK(obj) macro
584 RELEASE_LOCK(self); in BZ2File_read()
633 RELEASE_LOCK(self); in BZ2File_readline()
791 RELEASE_LOCK(self); in BZ2File_readlines()
860 RELEASE_LOCK(self); in BZ2File_write()
991 RELEASE_LOCK(self); in BZ2File_writelines()
1154 RELEASE_LOCK(self); in BZ2File_seek()
1226 RELEASE_LOCK(self); in BZ2File_close()
1377 RELEASE_LOCK(self); in BZ2File_clear()
[all …]
/external/python/cpython3/Modules/
D_bz2module.c28 #define RELEASE_LOCK(obj) PyThread_release_lock((obj)->lock) macro
234 RELEASE_LOCK(self); in _bz2_BZ2Compressor_compress_impl()
261 RELEASE_LOCK(self); in _bz2_BZ2Compressor_flush_impl()
600 RELEASE_LOCK(self); in _bz2_BZ2Decompressor_decompress_impl()
D_lzmamodule.c24 #define RELEASE_LOCK(obj) PyThread_release_lock((obj)->lock) macro
559 RELEASE_LOCK(self); in _lzma_LZMACompressor_compress_impl()
586 RELEASE_LOCK(self); in _lzma_LZMACompressor_flush_impl()
1080 RELEASE_LOCK(self); in _lzma_LZMADecompressor_decompress_impl()
/external/python/cpython2/Modules/_ctypes/libffi/src/
Ddlmalloc.c1448 #define RELEASE_LOCK(l) pthread_mutex_unlock(l) macro
1460 #define RELEASE_LOCK(l) DosReleaseMutexSem(*l) macro
1492 #define RELEASE_LOCK(l) win32_release_lock(l) macro
1507 #define RELEASE_MORECORE_LOCK() RELEASE_LOCK(&morecore_mutex);
1515 #define RELEASE_MAGIC_INIT_LOCK() RELEASE_LOCK(&magic_init_mutex);
2210 #define POSTACTION(M) { if (use_lock(M)) RELEASE_LOCK(&(M)->mutex); }
/external/libffi/src/
Ddlmalloc.c1448 #define RELEASE_LOCK(l) pthread_mutex_unlock(l) macro
1460 #define RELEASE_LOCK(l) DosReleaseMutexSem(*l) macro
1492 #define RELEASE_LOCK(l) win32_release_lock(l) macro
1507 #define RELEASE_MORECORE_LOCK() RELEASE_LOCK(&morecore_mutex);
1515 #define RELEASE_MAGIC_INIT_LOCK() RELEASE_LOCK(&magic_init_mutex);
2210 #define POSTACTION(M) { if (use_lock(M)) RELEASE_LOCK(&(M)->mutex); }
/external/dlmalloc/
Dmalloc.c1890 #define RELEASE_LOCK(sl) CLEAR_LOCK(sl) macro
1966 #define RELEASE_LOCK(lk) recursive_release_lock(lk) macro
1976 #define RELEASE_LOCK(lk) LeaveCriticalSection(lk) macro
2005 #define RELEASE_LOCK(lk) pthread_mutex_unlock(lk) macro
2042 #define RELEASE_MALLOC_GLOBAL_LOCK() RELEASE_LOCK(&malloc_global_mutex);
2744 #define POSTACTION(M) { if (use_lock(M)) RELEASE_LOCK(&(M)->mutex); }
3096 static void post_fork_parent(void) { RELEASE_LOCK(&(gm)->mutex); } in post_fork_parent()
/external/llvm-project/openmp/runtime/src/
Dkmp_csupport.cpp2112 #define RELEASE_LOCK __kmp_release_user_lock_with_checks macro
2810 RELEASE_LOCK(lck, gtid); in __kmpc_unset_lock()