Home
last modified time | relevance | path

Searched refs:MessageLoopForIO (Results 1 – 25 of 40) sorted by relevance

12

/aosp_15_r20/external/libchrome/base/message_loop/
H A Dmessage_loop_io_posix_unittest.cc136 MessageLoopForIO message_loop; in TEST_F()
152 MessageLoopForIO message_loop; in TEST_F()
168 MessageLoopForIO message_loop; in TEST_F()
182 MessageLoopForIO message_loop; in TEST_F()
208 MessageLoopForIO message_loop; in TEST_F()
231 MessageLoopForIO message_loop; in TEST_F()
258 MessageLoopForIO message_loop; in TEST_F()
279 MessageLoopForIO message_loop; in TEST_F()
300 MessageLoopForIO message_loop; in TEST_F()
338 MessageLoopForIO message_loop; in TEST_F()
[all …]
H A Dmessage_loop.h416 class BASE_EXPORT MessageLoopForIO : public MessageLoop {
418 MessageLoopForIO() : MessageLoop(TYPE_IO) {} in MessageLoopForIO() function
428 static_assert(sizeof(MessageLoop) == sizeof(MessageLoopForIO),
H A Dmessage_loop.cc735 MessageLoopCurrentForIO MessageLoopForIO::current() { in current()
740 bool MessageLoopForIO::IsCurrent() { in IsCurrent()
/aosp_15_r20/external/libchrome/components/timers/
H A Dalarm_timer_unittest.cc99 base::MessageLoopForIO loop; in TEST()
114 base::MessageLoopForIO loop; in TEST()
142 base::MessageLoopForIO loop; in TEST()
157 base::MessageLoopForIO loop; in TEST()
172 base::MessageLoopForIO loop; in TEST()
204 auto loop = std::make_unique<base::MessageLoopForIO>(); in TEST()
229 base::MessageLoopForIO loop; in TEST()
250 base::MessageLoopForIO loop; in TEST()
295 base::MessageLoopForIO loop; in TEST()
315 base::MessageLoopForIO loop; in TEST()
[all …]
/aosp_15_r20/external/libchrome/libchrome_tools/patches/
H A Dfix-fd-watcher-leak.patch34 @@ -27,21 +29,7 @@ LazyInstance<ThreadLocalPointer<MessageLoopForIO>>::Leaky
41 - // Delete |watcher_| on the MessageLoopForIO.
43 - // If the MessageLoopForIO is deleted before Watcher::StartWatching() runs,
44 - // |watcher_| is leaked. If the MessageLoopForIO is deleted after
65 + // If the MessageLoopForIO and the Controller live on the same thread.
122 - // MessageLoopForIO. If the MessageLoopForIO is deleted before the delete task
/aosp_15_r20/external/libchrome/base/task_scheduler/
H A Dtask_tracker_posix.h18 class MessageLoopForIO; variable
38 MessageLoopForIO* watch_file_descriptor_message_loop) { in set_watch_file_descriptor_message_loop()
62 MessageLoopForIO* watch_file_descriptor_message_loop_ = nullptr;
H A Dtask_tracker_posix_unittest.cc41 static_cast<MessageLoopForIO*>(service_thread_.message_loop())); in TaskSchedulerTaskTrackerPosixTest()
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/gensrcs/external/libchrome/base/task_scheduler/
Dtask_tracker_posix.h21 class MessageLoopForIO; variable
41 MessageLoopForIO* watch_file_descriptor_message_loop) { in set_watch_file_descriptor_message_loop()
65 MessageLoopForIO* watch_file_descriptor_message_loop_ = nullptr;
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/6/external/libchrome/base/task_scheduler/
Dtask_tracker_posix.h21 class MessageLoopForIO; variable
41 MessageLoopForIO* watch_file_descriptor_message_loop) { in set_watch_file_descriptor_message_loop()
65 MessageLoopForIO* watch_file_descriptor_message_loop_ = nullptr;
/aosp_15_r20/external/libbrillo/brillo/message_loops/
H A Dbase_message_loop.h40 explicit BaseMessageLoop(base::MessageLoopForIO* base_loop);
87 std::unique_ptr<base::MessageLoopForIO> owned_base_loop_;
103 base::MessageLoopForIO* base_loop_;
H A Dmessage_loop_test.cc54 std::unique_ptr<base::MessageLoopForIO> base_loop_;
66 base_loop_.reset(new base::MessageLoopForIO()); in MessageLoopSetUp()
H A Dbase_message_loop.cc54 owned_base_loop_.reset(new base::MessageLoopForIO()); in BaseMessageLoop()
59 BaseMessageLoop::BaseMessageLoop(base::MessageLoopForIO* base_loop) in BaseMessageLoop()
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/gensrcs/external/libchrome/base/message_loop/
Dmessage_loop.h419 class BASE_EXPORT MessageLoopForIO : public MessageLoop {
421 MessageLoopForIO() : MessageLoop(TYPE_IO) {} in MessageLoopForIO() function
431 static_assert(sizeof(MessageLoop) == sizeof(MessageLoopForIO),
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/2/external/libchrome/base/message_loop/
Dmessage_loop.h419 class BASE_EXPORT MessageLoopForIO : public MessageLoop {
421 MessageLoopForIO() : MessageLoop(TYPE_IO) {} in MessageLoopForIO() function
431 static_assert(sizeof(MessageLoop) == sizeof(MessageLoopForIO),
/aosp_15_r20/external/libchrome/base/test/
H A Dtest_io_thread.h43 base::MessageLoopForIO* message_loop() { in message_loop()
44 return static_cast<base::MessageLoopForIO*>(io_thread_.message_loop()); in message_loop()
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/gensrcs/external/libchrome/base/test/
Dtest_io_thread.h46 base::MessageLoopForIO* message_loop() { in message_loop()
47 return static_cast<base::MessageLoopForIO*>(io_thread_.message_loop()); in message_loop()
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/7/external/libchrome/base/test/
Dtest_io_thread.h46 base::MessageLoopForIO* message_loop() { in message_loop()
47 return static_cast<base::MessageLoopForIO*>(io_thread_.message_loop()); in message_loop()
/aosp_15_r20/external/libchrome/base/files/
H A Dfile_descriptor_watcher_posix.cc25 LazyInstance<ThreadLocalPointer<MessageLoopForIO>>::Leaky
196 MessageLoopForIO* message_loop_for_io) { in FileDescriptorWatcher()
H A Dfile_descriptor_watcher_posix_unittest.cc52 ? new MessageLoopForIO in FileDescriptorWatcherTest()
73 static_cast<MessageLoopForIO*>(message_loop_for_io)); in SetUp()
H A Dfile_descriptor_watcher_posix.h89 FileDescriptorWatcher(MessageLoopForIO* message_loop_for_io);
/aosp_15_r20/external/libchrome/base/threading/
H A Dthread.cc310 if (MessageLoopForIO::IsCurrent()) { in ThreadMain()
312 static_cast<MessageLoopForIO*>(message_loop_))); in ThreadMain()
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/gensrcs/external/libchrome/base/files/
Dfile_descriptor_watcher_posix.h92 FileDescriptorWatcher(MessageLoopForIO* message_loop_for_io);
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/1/external/libchrome/base/files/
Dfile_descriptor_watcher_posix.h92 FileDescriptorWatcher(MessageLoopForIO* message_loop_for_io);
/aosp_15_r20/external/libchrome/ipc/
H A Dipc_test_base.h78 base::MessageLoopForIO main_message_loop_;
/aosp_15_r20/external/libbrillo/brillo/
H A Dasynchronous_signal_handler_test.cc41 base::MessageLoopForIO base_loop_;

12