Lines Matching refs:pspecs
35 GParamSpec **pspecs);
48 GSList *pspecs; member
63 g_slist_free (nqueue->pspecs); in g_object_notify_queue_free()
94 GParamSpec *pspecs_mem[16], **pspecs, **free_me = NULL; in g_object_notify_queue_thaw() local
105 pspecs = nqueue->n_pspecs > 16 ? free_me = g_new (GParamSpec*, nqueue->n_pspecs) : pspecs_mem; in g_object_notify_queue_thaw()
107 pspecs[0] = NULL; in g_object_notify_queue_thaw()
108 for (slist = nqueue->pspecs; slist; slist = slist->next) in g_object_notify_queue_thaw()
115 if (pspecs[i] == pspec) in g_object_notify_queue_thaw()
120 pspecs[n_pspecs++] = pspec; in g_object_notify_queue_thaw()
125 context->dispatcher (object, n_pspecs, pspecs); in g_object_notify_queue_thaw()
135 g_slist_free (nqueue->pspecs); in g_object_notify_queue_clear()
136 nqueue->pspecs = NULL; in g_object_notify_queue_clear()
156 nqueue->pspecs = g_slist_prepend (nqueue->pspecs, pspec); in g_object_notify_queue_add()