HomeSort by relevance Sort by last modified time
    Searched refs:source_funcs (Results 1 - 4 of 4) sorted by null

  /external/bluetooth/glib/gobject/
gsourceclosure.c 140 GSourceFunc closure_callback = source->source_funcs->closure_callback;
144 if (source->source_funcs == &g_io_watch_funcs)
146 else if (source->source_funcs == &g_timeout_funcs ||
147 source->source_funcs == &g_idle_funcs)
179 if (!source->source_funcs->closure_callback &&
180 source->source_funcs != &g_io_watch_funcs &&
181 source->source_funcs != &g_timeout_funcs &&
182 source->source_funcs != &g_idle_funcs)
194 GClosureMarshal marshal = (GClosureMarshal)source->source_funcs->closure_marshal;
197 if (source->source_funcs == &g_idle_funcs |
    [all...]
  /external/chromium/base/
message_pump_glib_x.cc 174 gdksource_->source_funcs->dispatch = gdkdispatcher_;
188 gdksource_->source_funcs->dispatch = gdkdispatcher_;
201 gdksource_->source_funcs->dispatch;
202 gdksource_->source_funcs->dispatch = PlaceholderDispatch;
208 gdksource_->source_funcs->dispatch = cb;
222 pump_x->gdkdispatcher_ = pump_x->gdksource_->source_funcs->dispatch;
  /external/bluetooth/glib/glib/
gmain.h 49 GSourceFuncs *source_funcs; member in struct:_GSource
175 GSource *g_source_new (GSourceFuncs *source_funcs,
gmain.c 553 * @source_funcs: structure containing functions that implement
569 g_source_new (GSourceFuncs *source_funcs,
574 g_return_val_if_fail (source_funcs != NULL, NULL);
579 source->source_funcs = source_funcs;
1011 source->source_funcs = funcs;
1188 if (source->source_funcs->finalize)
1189 source->source_funcs->finalize (source);
1266 * @funcs: the @source_funcs passed to g_source_new().
1293 source->source_funcs == funcs &
    [all...]

Completed in 199 milliseconds