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

1 2

  /external/bluetooth/glib/tests/
errorcheck-mutex-test.c 12 g_mutex_lock ((GMutex*)mutex);
20 GMutex* mutex = g_mutex_new ();
28 GMutex* mutex = g_mutex_new ();
36 GMutex* mutex = g_mutex_new ();
45 GMutex* mutex = g_mutex_new ();
53 GMutex* mutex = g_mutex_new ();
61 GMutex* mutex = g_mutex_new ();
72 GMutex* mutex = g_mutex_new ();
80 GMutex* mutex = g_mutex_new ();
slice-concurrent.c 33 GMutex* to_free_mutex;
thread-test.c 6 /* GMutex */
8 static GMutex* test_g_mutex_mutex = NULL;
  /external/bluetooth/glib/docs/reference/glib/
glib-overrides.txt 23 # GMutex
27 <RETURNS>GMutex *</RETURNS>
33 GMutex *mutex
39 GMutex *mutex
45 GMutex *mutex
51 GMutex *mutex
85 <RETURNS>GMutex *</RETURNS>
159 GCond *cond, GMutex *mutex
165 GCond *cond, GMutex *mutex, GTimeVal *abs_time
  /external/skia/src/core/
SkTypefaceCache.cpp 88 static SkMutex gMutex;
91 SkAutoMutexAcquire ama(gMutex);
96 SkAutoMutexAcquire ama(gMutex);
101 SkAutoMutexAcquire ama(gMutex);
117 SkAutoMutexAcquire ama(gMutex);
  /external/bluetooth/glib/gthread/
gthread-impl.c 82 static GMutex *
85 GMutex *retval = g_thread_functions_for_glib_use_default.mutex_new ();
97 g_mutex_lock_errorcheck_impl (GMutex *mutex,
119 g_mutex_trylock_errorcheck_impl (GMutex *mutex,
144 g_mutex_unlock_errorcheck_impl (GMutex *mutex,
169 g_mutex_free_errorcheck_impl (GMutex *mutex,
186 GMutex *mutex,
215 GMutex *mutex,
275 (void (*)(GMutex *)) g_mutex_lock_errorcheck_impl;
277 (gboolean (*)(GMutex *)) g_mutex_trylock_errorcheck_impl
    [all...]
gthread-win32.c 97 static GMutex *
105 return (GMutex *) retval;
109 g_mutex_free_win32_cs_impl (GMutex *mutex)
123 g_mutex_lock_win32_cs_impl (GMutex *mutex)
129 g_mutex_trylock_win32_cs_impl (GMutex * mutex)
135 g_mutex_unlock_win32_cs_impl (GMutex *mutex)
140 static GMutex *
148 return (GMutex *) retval;
152 g_mutex_free_win32_impl (GMutex *mutex)
162 g_mutex_lock_win32_impl (GMutex *mutex
    [all...]
gthread-posix.c 159 static GMutex *
162 GMutex *result = (GMutex *) g_new (pthread_mutex_t, 1);
169 g_mutex_free_posix_impl (GMutex * mutex)
183 g_mutex_trylock_posix_impl (GMutex * mutex)
219 GMutex * entered_mutex,
447 (void (*)(GMutex *)) pthread_mutex_lock,
449 (void (*)(GMutex *)) pthread_mutex_unlock,
454 (void (*)(GCond *, GMutex *)) pthread_cond_wait,
  /external/webkit/Source/JavaScriptCore/wtf/gobject/
GOwnPtr.cpp 46 template <> void freeOwnedGPtr<GMutex>(GMutex* ptr)
GOwnPtr.h 39 template<> void freeOwnedGPtr<GMutex>(GMutex*);
GTypedefs.h 55 typedef struct _GMutex GMutex;
  /external/bluetooth/glib/glib/
gthread.h 72 typedef struct _GMutex GMutex;
80 GMutex* (*mutex_new) (void);
81 void (*mutex_lock) (GMutex *mutex);
82 gboolean (*mutex_trylock) (GMutex *mutex);
83 void (*mutex_unlock) (GMutex *mutex);
84 void (*mutex_free) (GMutex *mutex);
89 GMutex *mutex);
91 GMutex *mutex,
150 GMutex* g_static_mutex_get_mutex_impl (GMutex **mutex)
    [all...]
gasyncqueue.h 116 GMutex* _g_async_queue_get_mutex (GAsyncQueue *queue);
gthread.c 96 (GMutex*(*)())g_thread_fail, /* mutex_new */
123 static GMutex *g_once_mutex = NULL;
248 GMutex *
249 g_static_mutex_get_mutex_impl (GMutex** mutex)
269 GMutex **runtime_mutex;
278 runtime_mutex = ((GMutex**)mutex);
gmain.h 131 GMutex *mutex);
  /external/srec/portable/src/
plog.c 67 static PtrdMutex* Gmutex = NULL;
163 if ((rc = PtrdMutexCreate(&Gmutex)) != ESR_SUCCESS)
179 if (Gmutex != NULL)
181 PtrdMutexDestroy(Gmutex);
182 Gmutex = NULL;
219 if ((rc = PtrdMutexDestroy(Gmutex)) != ESR_SUCCESS)
221 Gmutex = NULL;
301 rc = PtrdMutexLock(Gmutex);
401 PtrdMutexUnlock(Gmutex);
409 PtrdMutexUnlock(Gmutex);
    [all...]
  /frameworks/base/libs/utils/
BufferedTextOutput.cpp 87 static mutex_t gMutex;
113 mutex_lock(&gMutex);
125 mutex_unlock(&gMutex);
132 mutex_lock(&gMutex);
135 mutex_unlock(&gMutex);
  /external/bluetooth/bluez/audio/
gsta2dpsink.h 69 GMutex *cb_mutex;
gstavdtpsink.h 70 GMutex *sink_lock;
  /external/bluetooth/glib/docs/reference/glib/tmpl/
atomic_operations.sgml 12 save you from using a performance-expensive #GMutex to protect the
38 the foot. So if in doubt, use a #GMutex. If you don't know, what
58 <term>#GMutex</term>
threads.sgml 27 (#GMutex, #GStaticMutex, #G_LOCK_DEFINE, #GStaticRecMutex and
501 <!-- ##### STRUCT GMutex ##### -->
504 The #GMutex struct is an opaque data structure to represent a mutex
538 static GMutex * mutex = NULL;
561 static GMutex *give_me_next_number_mutex = NULL;
591 calling g_thread_init() first, then you can not use a #GMutex, as
597 A #GMutex should only be accessed via the following functions.
612 Creates a new #GMutex.
621 @Returns: a new #GMutex.
639 #GMutex is neither guaranteed to be recursive nor to be non-recursive
    [all...]
  /frameworks/base/native/android/
asset_manager.cpp 67 static Mutex gMutex;
75 Mutex::Autolock _l(gMutex);
  /external/webkit/Source/JavaScriptCore/wtf/
ThreadingPrimitives.h 70 typedef GOwnPtr<GMutex> PlatformMutex;
  /external/bluetooth/glib/
glibconfig.h 169 (g_thread_use_default_impl ? ((GMutex*)(gpointer) ((mutex)->static_mutex.pad)) : \
  /external/bluetooth/glib/gobject/tests/
threadtests.c 113 static GMutex *sync_mutex = NULL;

Completed in 1050 milliseconds

1 2