OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GStaticPrivate
(Results
1 - 11
of
11
) sorted by null
/external/bluetooth/glib/glib/
gthread.h
75
typedef struct _GStaticPrivate
GStaticPrivate
;
255
void g_static_private_init (
GStaticPrivate
*private_key);
256
gpointer g_static_private_get (
GStaticPrivate
*private_key);
257
void g_static_private_set (
GStaticPrivate
*private_key,
260
void g_static_private_free (
GStaticPrivate
*private_key);
gthread.c
414
g_static_private_init (
GStaticPrivate
*private_key)
420
g_static_private_get (
GStaticPrivate
*private_key)
439
g_static_private_set (
GStaticPrivate
*private_key,
498
g_static_private_free (
GStaticPrivate
*private_key)
gstrfuncs.c
930
static
GStaticPrivate
msg_private = G_STATIC_PRIVATE_INIT;
[
all
...]
gutf8.c
546
static
GStaticPrivate
cache_private = G_STATIC_PRIVATE_INIT;
[
all
...]
gconvert.c
[
all
...]
gutils.c
[
all
...]
gmain.c
[
all
...]
/external/bluetooth/glib/tests/
thread-test.c
107
/*
GStaticPrivate
*/
111
static
GStaticPrivate
test_g_static_private_private1 = G_STATIC_PRIVATE_INIT;
112
static
GStaticPrivate
test_g_static_private_private2 = G_STATIC_PRIVATE_INIT;
/external/bluetooth/glib/gio/
gcancellable.c
72
static
GStaticPrivate
current_cancellable = G_STATIC_PRIVATE_INIT;
/external/webkit/Source/JavaScriptCore/wtf/
ThreadSpecific.h
112
GStaticPrivate
m_key;
/external/bluetooth/glib/gmodule/
gmodule.c
94
static
GStaticPrivate
module_error_private = G_STATIC_PRIVATE_INIT;
Completed in 366 milliseconds