Home
last modified time | relevance | path

Searched refs:MessagePump (Results 1 – 25 of 33) sorted by relevance

12

/external/chromium_org/base/message_loop/
Dmessage_pump.cc9 MessagePump::MessagePump() { in MessagePump() function in base::MessagePump
12 MessagePump::~MessagePump() { in ~MessagePump()
15 void MessagePump::SetTimerSlack(TimerSlack) { in SetTimerSlack()
Dmessage_pump.h18 class BASE_EXPORT MessagePump : public NonThreadSafe {
60 MessagePump();
61 virtual ~MessagePump();
Dmessage_loop_test.cc89 scoped_ptr<MessagePump> pump(factory()); in RunTest_PostTask()
118 scoped_ptr<MessagePump> pump(factory()); in RunTest_PostDelayedTask_Basic()
141 scoped_ptr<MessagePump> pump(factory()); in RunTest_PostDelayedTask_InDelayOrder()
166 scoped_ptr<MessagePump> pump(factory()); in RunTest_PostDelayedTask_InPostOrder()
196 scoped_ptr<MessagePump> pump(factory()); in RunTest_PostDelayedTask_InPostOrder_2()
223 scoped_ptr<MessagePump> pump(factory()); in RunTest_PostDelayedTask_InPostOrder_3()
251 scoped_ptr<MessagePump> pump(factory()); in RunTest_PostDelayedTask_SharedTimer()
318 scoped_ptr<MessagePump> pump(factory()); in RunTest_EnsureDeletion()
338 scoped_ptr<MessagePump> pump(factory()); in RunTest_EnsureDeletion_Chain()
365 scoped_ptr<MessagePump> pump(factory()); in RunTest_Nesting()
[all …]
Dmessage_loop.cc109 MessagePumpForIO* ToPumpIO(MessagePump* pump) { in ToPumpIO()
141 MessageLoop::MessageLoop(scoped_ptr<MessagePump> pump) in MessageLoop()
214 scoped_ptr<MessagePump> MessageLoop::CreateMessagePumpForType(Type type) { in CreateMessagePumpForType()
223 #define MESSAGE_PUMP_UI scoped_ptr<MessagePump>(MessagePumpMac::Create()) in CreateMessagePumpForType()
227 #define MESSAGE_PUMP_UI scoped_ptr<MessagePump>() in CreateMessagePumpForType()
229 #define MESSAGE_PUMP_UI scoped_ptr<MessagePump>(new MessagePumpForUI()) in CreateMessagePumpForType()
238 return scoped_ptr<MessagePump>(new MessagePumpForIO()); in CreateMessagePumpForType()
242 return scoped_ptr<MessagePump>(new MessagePumpForUI()); in CreateMessagePumpForType()
246 return scoped_ptr<MessagePump>(new MessagePumpDefault()); in CreateMessagePumpForType()
Dmessage_loop.h77 class BASE_EXPORT MessageLoop : public MessagePump::Delegate {
117 explicit MessageLoop(scoped_ptr<base::MessagePump> pump);
125 typedef scoped_ptr<MessagePump> (MessagePumpFactory)();
133 static scoped_ptr<MessagePump> CreateMessagePumpForType(Type type);
393 scoped_ptr<MessagePump> pump_;
Dmessage_pump_android.cc26 base::MessagePump::Delegate* delegate = in DoRunLoopOnce()
27 reinterpret_cast<base::MessagePump::Delegate*>(native_delegate); in DoRunLoopOnce()
Dmessage_pump_mac.h81 class MessagePumpCFRunLoopBase : public MessagePump {
334 static MessagePump* Create();
Dmessage_pump_default.h14 class MessagePumpDefault : public MessagePump {
Dmessage_pump_android.h22 class BASE_EXPORT MessagePumpForUI : public MessagePump {
Dmessage_pump_glib.h22 class BASE_EXPORT MessagePumpGlib : public MessagePump {
/external/chromium_org/base/test/
Dtest_support_android.cc20 RunState(base::MessagePump::Delegate* delegate, int run_depth) in RunState()
26 base::MessagePump::Delegate* delegate;
77 virtual void Start(base::MessagePump::Delegate* delegate) OVERRIDE { in Start()
82 virtual void Run(base::MessagePump::Delegate* delegate) OVERRIDE { in Run()
136 scoped_ptr<base::MessagePump> CreateMessagePumpForUIStub() { in CreateMessagePumpForUIStub()
137 return scoped_ptr<base::MessagePump>(new MessagePumpForUIStub()); in CreateMessagePumpForUIStub()
Dtest_support_ios.mm154 scoped_ptr<base::MessagePump> CreateMessagePumpForUIForTests() {
155 // A default MessagePump will do quite nicely in tests.
156 return scoped_ptr<base::MessagePump>(new base::MessagePumpDefault());
/external/chromium_org/mojo/common/
Dmessage_pump_mojo_unittest.cc14 scoped_ptr<base::MessagePump> CreateMojoMessagePump() { in CreateMojoMessagePump()
15 return scoped_ptr<base::MessagePump>(new MessagePumpMojo()); in CreateMojoMessagePump()
Dmessage_pump_mojo.h23 class MOJO_COMMON_EXPORT MessagePumpMojo : public base::MessagePump {
30 static scoped_ptr<base::MessagePump> Create();
Dhandle_watcher.cc35 scoped_ptr<base::MessagePump> CreateMessagePumpMojo() { in CreateMessagePumpMojo()
37 return scoped_ptr<base::MessagePump>(message_pump_mojo).Pass(); in CreateMessagePumpMojo()
Dmessage_pump_mojo.cc47 scoped_ptr<base::MessagePump> MessagePumpMojo::Create() { in Create()
48 return scoped_ptr<MessagePump>(new MessagePumpMojo()); in Create()
/external/chromium_org/content/public/test/
Dnested_message_pump_android.cc27 RunState(base::MessagePump::Delegate* delegate, int run_depth) in RunState()
34 base::MessagePump::Delegate* delegate;
121 base::MessagePump::Delegate* delegate) { in Start()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/thread/
Dmessagepump_unittest.py31 from webkitpy.common.thread.messagepump import MessagePump, MessagePumpDelegate
55 pump = MessagePump(delegate, queue)
Dmessagepump.py41 class MessagePump(object): class
/external/chromium_org/content/test/
Dcontent_test_launcher.cc38 scoped_ptr<base::MessagePump> CreateMessagePumpForUI() { in CreateMessagePumpForUI()
39 return scoped_ptr<base::MessagePump>(new NestedMessagePumpAndroid()); in CreateMessagePumpForUI()
/external/chromium_org/base/threading/
Dthread.h19 class MessagePump; variable
37 typedef Callback<scoped_ptr<MessagePump>()> MessagePumpFactory;
/external/chromium_org/content/shell/browser/
Dshell_layout_tests_android.cc40 scoped_ptr<base::MessagePump> CreateMessagePumpForUI() { in CreateMessagePumpForUI()
41 return scoped_ptr<base::MessagePump>(new content::NestedMessagePumpAndroid()); in CreateMessagePumpForUI()
/external/chromium_org/chrome/utility/image_writer/
Ddisk_unmounter_mac.cc92 scoped_ptr<base::MessagePump> DiskUnmounterMac::CreateMessagePump() { in CreateMessagePump()
93 return scoped_ptr<base::MessagePump>(new base::MessagePumpCFRunLoop); in CreateMessagePump()
Ddisk_unmounter_mac.h52 static scoped_ptr<base::MessagePump> CreateMessagePump();
/external/chromium_org/mojo/shell/
Dchild_process_host_unittest.cc39 scoped_ptr<base::MessagePump>(new common::MessagePumpMojo())); in TEST_F()

12