Searched refs:wstack (Results 1 – 1 of 1) sorted by relevance
2963 WeakRefStack *wstack = data; in weak_refs_notify() local2966 for (i = 0; i < wstack->n_weak_refs; i++) in weak_refs_notify()2967 wstack->weak_refs[i].notify (wstack->weak_refs[i].data, wstack->object); in weak_refs_notify()2968 g_free (wstack); in weak_refs_notify()2993 WeakRefStack *wstack; in g_object_weak_ref() local3001 wstack = g_datalist_id_remove_no_notify (&object->qdata, quark_weak_refs); in g_object_weak_ref()3002 if (wstack) in g_object_weak_ref()3004 i = wstack->n_weak_refs++; in g_object_weak_ref()3005 wstack = g_realloc (wstack, sizeof (*wstack) + sizeof (wstack->weak_refs[0]) * i); in g_object_weak_ref()3009 wstack = g_renew (WeakRefStack, NULL, 1); in g_object_weak_ref()[all …]