Home
last modified time | relevance | path

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

/external/libhevc/common/
Dithread.c145 HANDLE mutex_handle_value; in ithread_mutex_init() local
151 mutex_handle_value = CreateSemaphore(NULL, 1, 1, NULL); in ithread_mutex_init()
152 *ppv_mutex_handle = mutex_handle_value; in ithread_mutex_init()
159 HANDLE mutex_handle_value; in ithread_mutex_destroy() local
165 mutex_handle_value = *ppv_mutex_handle; in ithread_mutex_destroy()
166 CloseHandle(mutex_handle_value); in ithread_mutex_destroy()
173 HANDLE mutex_handle_value; in ithread_mutex_lock() local
180 mutex_handle_value = *ppv_mutex_handle; in ithread_mutex_lock()
181 result = WaitForSingleObject(mutex_handle_value, INFINITE); in ithread_mutex_lock()
193 HANDLE mutex_handle_value; in ithread_mutex_unlock() local
[all …]