Searched refs:work_source_ (Results 1 – 2 of 2) sorted by relevance
193 work_source_ = g_source_new(&WorkSourceFuncs, sizeof(WorkSource)); in MessagePumpGlib()194 static_cast<WorkSource*>(work_source_)->pump = this; in MessagePumpGlib()195 g_source_add_poll(work_source_, wakeup_gpollfd_.get()); in MessagePumpGlib()197 g_source_set_priority(work_source_, G_PRIORITY_DEFAULT_IDLE); in MessagePumpGlib()199 g_source_set_can_recurse(work_source_, TRUE); in MessagePumpGlib()200 g_source_attach(work_source_, context_); in MessagePumpGlib()207 g_source_destroy(work_source_); in ~MessagePumpGlib()208 g_source_unref(work_source_); in ~MessagePumpGlib()
64 GSource* work_source_; variable