OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:uid_cache
(Results
1 - 1
of
1
) sorted by null
/external/bluetooth/glib/gio/
glocalfileinfo.c
110
G_LOCK_DEFINE_STATIC (
uid_cache
);
variable
111
static GHashTable *
uid_cache
= NULL;
variable
1068
if (
uid_cache
== NULL)
1069
uid_cache
= g_hash_table_new_full (NULL, NULL, NULL, (GDestroyNotify)uid_data_free);
1071
data = g_hash_table_lookup (
uid_cache
, GINT_TO_POINTER (uid));
1114
g_hash_table_replace (
uid_cache
, GINT_TO_POINTER (uid), data);
1125
G_LOCK (
uid_cache
);
1128
G_UNLOCK (
uid_cache
);
1139
G_LOCK (
uid_cache
);
1142
G_UNLOCK (
uid_cache
);
[
all
...]
Completed in 25 milliseconds