Home
last modified time | relevance | path

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

/external/bluetooth/glib/gobject/
Dgobject.c1943 WeakRefStack *wstack = data; in weak_refs_notify() local
1946 for (i = 0; i < wstack->n_weak_refs; i++) in weak_refs_notify()
1947 wstack->weak_refs[i].notify (wstack->weak_refs[i].data, wstack->object); in weak_refs_notify()
1948 g_free (wstack); in weak_refs_notify()
1968 WeakRefStack *wstack; in g_object_weak_ref() local
1975 wstack = g_datalist_id_remove_no_notify (&object->qdata, quark_weak_refs); in g_object_weak_ref()
1976 if (wstack) in g_object_weak_ref()
1978 i = wstack->n_weak_refs++; in g_object_weak_ref()
1979 wstack = g_realloc (wstack, sizeof (*wstack) + sizeof (wstack->weak_refs[0]) * i); in g_object_weak_ref()
1983 wstack = g_renew (WeakRefStack, NULL, 1); in g_object_weak_ref()
[all …]
DChangeLog2614 (weak_refs_notify): pass wstack->object as extra argument to
2616 (g_object_weak_ref): set wstack->object when initialising