/external/chromium_org/base/message_loop/ |
D | message_pump.cc | 9 MessagePump::MessagePump() { in MessagePump() function in base::MessagePump 12 MessagePump::~MessagePump() { in ~MessagePump() 15 void MessagePump::SetTimerSlack(TimerSlack) { in SetTimerSlack()
|
D | message_pump.h | 18 class BASE_EXPORT MessagePump : public NonThreadSafe { 60 MessagePump(); 61 virtual ~MessagePump();
|
D | message_loop_test.cc | 89 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 …]
|
D | message_loop.cc | 109 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()
|
D | message_loop.h | 77 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_;
|
D | message_pump_android.cc | 26 base::MessagePump::Delegate* delegate = in DoRunLoopOnce() 27 reinterpret_cast<base::MessagePump::Delegate*>(native_delegate); in DoRunLoopOnce()
|
D | message_pump_mac.h | 81 class MessagePumpCFRunLoopBase : public MessagePump { 334 static MessagePump* Create();
|
D | message_pump_default.h | 14 class MessagePumpDefault : public MessagePump {
|
D | message_pump_android.h | 22 class BASE_EXPORT MessagePumpForUI : public MessagePump {
|
D | message_pump_glib.h | 22 class BASE_EXPORT MessagePumpGlib : public MessagePump {
|
/external/chromium_org/base/test/ |
D | test_support_android.cc | 20 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()
|
D | test_support_ios.mm | 154 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/ |
D | message_pump_mojo_unittest.cc | 14 scoped_ptr<base::MessagePump> CreateMojoMessagePump() { in CreateMojoMessagePump() 15 return scoped_ptr<base::MessagePump>(new MessagePumpMojo()); in CreateMojoMessagePump()
|
D | message_pump_mojo.h | 23 class MOJO_COMMON_EXPORT MessagePumpMojo : public base::MessagePump { 30 static scoped_ptr<base::MessagePump> Create();
|
D | handle_watcher.cc | 35 scoped_ptr<base::MessagePump> CreateMessagePumpMojo() { in CreateMessagePumpMojo() 37 return scoped_ptr<base::MessagePump>(message_pump_mojo).Pass(); in CreateMessagePumpMojo()
|
D | message_pump_mojo.cc | 47 scoped_ptr<base::MessagePump> MessagePumpMojo::Create() { in Create() 48 return scoped_ptr<MessagePump>(new MessagePumpMojo()); in Create()
|
/external/chromium_org/content/public/test/ |
D | nested_message_pump_android.cc | 27 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/ |
D | messagepump_unittest.py | 31 from webkitpy.common.thread.messagepump import MessagePump, MessagePumpDelegate 55 pump = MessagePump(delegate, queue)
|
D | messagepump.py | 41 class MessagePump(object): class
|
/external/chromium_org/content/test/ |
D | content_test_launcher.cc | 38 scoped_ptr<base::MessagePump> CreateMessagePumpForUI() { in CreateMessagePumpForUI() 39 return scoped_ptr<base::MessagePump>(new NestedMessagePumpAndroid()); in CreateMessagePumpForUI()
|
/external/chromium_org/base/threading/ |
D | thread.h | 19 class MessagePump; variable 37 typedef Callback<scoped_ptr<MessagePump>()> MessagePumpFactory;
|
/external/chromium_org/content/shell/browser/ |
D | shell_layout_tests_android.cc | 40 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/ |
D | disk_unmounter_mac.cc | 92 scoped_ptr<base::MessagePump> DiskUnmounterMac::CreateMessagePump() { in CreateMessagePump() 93 return scoped_ptr<base::MessagePump>(new base::MessagePumpCFRunLoop); in CreateMessagePump()
|
D | disk_unmounter_mac.h | 52 static scoped_ptr<base::MessagePump> CreateMessagePump();
|
/external/chromium_org/mojo/shell/ |
D | child_process_host_unittest.cc | 39 scoped_ptr<base::MessagePump>(new common::MessagePumpMojo())); in TEST_F()
|