Home
last modified time | relevance | path

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

/external/bluetooth/glib/gobject/
Dgobjectnotifyqueue.c61 GObjectNotifyQueue *nqueue = data; in g_object_notify_queue_free() local
63 g_slist_free (nqueue->pspecs); in g_object_notify_queue_free()
64 g_list_free_1 ((void*) nqueue); in g_object_notify_queue_free()
71 GObjectNotifyQueue *nqueue; in g_object_notify_queue_freeze() local
73 nqueue = g_datalist_id_get_data (&object->qdata, context->quark_notify_queue); in g_object_notify_queue_freeze()
74 if (!nqueue) in g_object_notify_queue_freeze()
76 nqueue = (void*) g_list_alloc (); in g_object_notify_queue_freeze()
77 memset (nqueue, 0, sizeof (*nqueue)); in g_object_notify_queue_freeze()
78 nqueue->context = context; in g_object_notify_queue_freeze()
80 nqueue, g_object_notify_queue_free); in g_object_notify_queue_freeze()
[all …]
Dgobject.c172 GObjectNotifyQueue *nqueue);
853 GObjectNotifyQueue *nqueue; in g_object_notify() local
855 nqueue = g_object_notify_queue_freeze (object, &property_notify_context); in g_object_notify()
856 g_object_notify_queue_add (object, nqueue, pspec); in g_object_notify()
857 g_object_notify_queue_thaw (object, nqueue); in g_object_notify()
875 GObjectNotifyQueue *nqueue; in g_object_thaw_notify() local
882 nqueue = g_object_notify_queue_from_object (object, &property_notify_context); in g_object_thaw_notify()
883 if (!nqueue || !nqueue->freeze_count) in g_object_thaw_notify()
887 g_object_notify_queue_thaw (object, nqueue); in g_object_thaw_notify()
911 GObjectNotifyQueue *nqueue) in object_set_property() argument
[all …]