OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:work_source_
(Results
1 - 3
of
3
) sorted by null
/external/chromium/base/
message_pump_glib.cc
139
work_source_
= g_source_new(&WorkSourceFuncs, sizeof(WorkSource));
140
static_cast<WorkSource*>(
work_source_
)->pump = this;
141
g_source_add_poll(
work_source_
, wakeup_gpollfd_.get());
143
g_source_set_priority(
work_source_
, G_PRIORITY_DEFAULT_IDLE);
145
g_source_set_can_recurse(
work_source_
, TRUE);
146
g_source_attach(
work_source_
, context_);
153
g_source_destroy(
work_source_
);
154
g_source_unref(
work_source_
);
message_pump_glib.h
123
GSource*
work_source_
;
member in class:base::MessagePumpForUI
message_pump_mac.h
83
// Perform highest-priority work. This is associated with
work_source_
154
CFRunLoopSourceRef
work_source_
;
member in class:base::MessagePumpCFRunLoopBase
Completed in 24 milliseconds