Searched refs:work_source_ (Results 1 – 4 of 4) sorted by relevance
/external/chromium/base/ |
D | message_pump_glib.cc | 155 work_source_ = g_source_new(&WorkSourceFuncs, sizeof(WorkSource)); in MessagePumpForUI() 156 static_cast<WorkSource*>(work_source_)->pump = this; in MessagePumpForUI() 157 g_source_add_poll(work_source_, wakeup_gpollfd_.get()); in MessagePumpForUI() 159 g_source_set_priority(work_source_, G_PRIORITY_DEFAULT_IDLE); in MessagePumpForUI() 161 g_source_set_can_recurse(work_source_, TRUE); in MessagePumpForUI() 162 g_source_attach(work_source_, context_); in MessagePumpForUI() 169 g_source_destroy(work_source_); in ~MessagePumpForUI() 170 g_source_unref(work_source_); in ~MessagePumpForUI()
|
D | message_pump_mac.mm | 73 work_source_ = CFRunLoopSourceCreate(NULL, // allocator 76 CFRunLoopAddSource(run_loop_, work_source_, kCFRunLoopCommonModes); 142 CFRunLoopRemoveSource(run_loop_, work_source_, kCFRunLoopCommonModes); 143 CFRelease(work_source_); 166 CFRunLoopSourceSignal(work_source_); 184 CFRunLoopSourceSignal(work_source_); 229 CFRunLoopSourceSignal(self->work_source_); 285 CFRunLoopSourceSignal(work_source_);
|
D | message_pump_glib.h | 124 GSource* work_source_; variable
|
D | message_pump_mac.h | 150 CFRunLoopSourceRef work_source_; variable
|