Searched refs:sizeof_closure (Results 1 - 4 of 4) sorted by relevance

/external/bluetooth/glib/gobject/
H A Dgclosure.h207 GClosure* g_closure_new_simple (guint sizeof_closure,
H A Dgclosure.c149 * @sizeof_closure: the size of the structure to allocate, must be at least
193 g_closure_new_simple (guint sizeof_closure, argument
198 g_return_val_if_fail (sizeof_closure >= sizeof (GClosure), NULL);
200 closure = g_malloc0 (sizeof_closure);
214 memset (G_STRUCT_MEMBER_P (closure, sizeof (*closure)), 0, sizeof_closure - sizeof (*closure));
H A Dgobject.h503 GClosure* g_closure_new_object (guint sizeof_closure,
H A Dgobject.c3048 * @sizeof_closure: the size of the structure to allocate, must be at least
3061 g_closure_new_object (guint sizeof_closure, argument
3069 closure = g_closure_new_simple (sizeof_closure, object);

Completed in 58 milliseconds