Home
last modified time | relevance | path

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

/external/bluetooth/glib/glib/
Dgthread.h361 #define G_LOCK_NAME(name) g__ ## name ## _lock macro
365 GStaticMutex G_LOCK_NAME (name) = G_STATIC_MUTEX_INIT
366 # define G_LOCK_EXTERN(name) extern GStaticMutex G_LOCK_NAME (name)
374 g_static_mutex_lock (&G_LOCK_NAME (name)); \
381 g_static_mutex_unlock (&G_LOCK_NAME (name)); \
387 #name), g_static_mutex_trylock (&G_LOCK_NAME (name)))
389 # define G_LOCK(name) g_static_mutex_lock (&G_LOCK_NAME (name))
390 # define G_UNLOCK(name) g_static_mutex_unlock (&G_LOCK_NAME (name))
391 # define G_TRYLOCK(name) g_static_mutex_trylock (&G_LOCK_NAME (name))
/external/bluetooth/glib/docs/reference/glib/
Dglib-sections.txt645 G_LOCK_NAME
/external/bluetooth/glib/
DChangeLog.pre-2-05728 * glib.h (G_LOCK_NAME): Removed parentheses around the lock name,