HomeSort by relevance Sort by last modified time
    Searched defs:marshal (Results 1 - 3 of 3) sorted by null

  /external/bluetooth/glib/gobject/
gsourceclosure.c 194 GClosureMarshal marshal = (GClosureMarshal)source->source_funcs->closure_marshal; local
195 if (!marshal)
199 marshal = source_closure_marshal_BOOLEAN__VOID;
201 marshal = g_cclosure_marshal_BOOLEAN__FLAGS;
203 if (marshal)
204 g_closure_set_marshal (closure, marshal);
gclosure.h 41 #define G_CLOSURE_NEEDS_MARSHAL(closure) (((GClosure*) (closure))->marshal == NULL)
48 * and the marshal guards. Note that each guard counts as two notifiers.
161 /*< private >*/ void (*marshal) (GClosure *closure, member in struct:_GClosure
172 * - ->marshal and ->data are _invalid_ as soon as ->is_invalid==TRUE
227 GClosureMarshal marshal);
gclosure.c 211 closure->marshal = NULL;
234 * - must prepare for callback removal during FNOTIFY and INOTIFY (done via ->marshal= & ->data=)
235 * - must distinguish (->marshal= & ->data=) for INOTIFY vs. FNOTIFY (via ->in_inotify)
252 closure->marshal = (GClosureMarshal) ndata->notify;
256 closure->marshal = NULL;
267 closure->marshal = (GClosureMarshal) ndata->notify;
271 closure->marshal = NULL;
303 * @closure->marshal and modifies the way it is called in some
335 /* usually the meta marshal will be setup right after creation, so the
357 * g_object_watch_closure() for an example of marshal guards
748 GClosureMarshal marshal; local
    [all...]

Completed in 99 milliseconds