/packages/modules/Bluetooth/system/stack/btu/ |
D | main_thread.cc | 42 bt_status_t do_in_main_thread(const base::Location& from_here, in do_in_main_thread() argument 44 if (!main_thread.DoInThread(from_here, std::move(task))) { in do_in_main_thread() 45 log::error("failed from {}", from_here.ToString()); in do_in_main_thread() 51 bt_status_t do_in_main_thread_delayed(const base::Location& from_here, in do_in_main_thread_delayed() argument 54 if (!main_thread.DoInThreadDelayed(from_here, std::move(task), delay)) { in do_in_main_thread_delayed() 55 log::error("failed from {}", from_here.ToString()); in do_in_main_thread_delayed()
|
/packages/modules/Bluetooth/system/test/common/ |
D | main_handler.cc | 42 bt_status_t do_in_main_thread(const base::Location& from_here, in do_in_main_thread() argument 45 main_thread.DoInThread(from_here, std::move(task)), in do_in_main_thread() 50 bt_status_t do_in_main_thread_delayed(const base::Location& from_here, in do_in_main_thread_delayed() argument 54 !main_thread.DoInThreadDelayed(from_here, std::move(task), delay), in do_in_main_thread_delayed()
|
D | main_handler.h | 31 bt_status_t do_in_main_thread(const base::Location& from_here, 33 bt_status_t do_in_main_thread_delayed(const base::Location& from_here,
|
/packages/modules/Bluetooth/system/common/ |
D | message_loop_thread.cc | 75 bool MessageLoopThread::DoInThread(const base::Location& from_here, in DoInThread() argument 77 return DoInThreadDelayed(from_here, std::move(task), in DoInThread() 81 bool MessageLoopThread::DoInThreadDelayed(const base::Location& from_here, in DoInThreadDelayed() argument 88 from_here.ToString()); in DoInThreadDelayed() 92 from_here, std::move(task), timeDeltaFromMicroseconds(delay))) { in DoInThreadDelayed() 94 *this, from_here.ToString()); in DoInThreadDelayed()
|
D | repeating_timer.cc | 42 const base::Location& from_here, base::RepeatingClosure task, in SchedulePeriodic() argument 65 from_here, task_wrapper_.callback(), in SchedulePeriodic() 68 *thread, from_here.ToString()); in SchedulePeriodic()
|
D | message_loop_thread.h | 75 bool DoInThread(const base::Location& from_here, base::OnceClosure task); 168 bool DoInThreadDelayed(const base::Location& from_here,
|
D | repeating_timer.h | 64 const base::Location& from_here,
|
/packages/modules/Bluetooth/system/main/shim/ |
D | shim.cc | 34 static void post_to_main_message_loop(const base::Location& from_here, in post_to_main_message_loop() argument 36 if (do_in_main_thread(from_here, base::Bind(&btu_hci_msg_process, p_msg)) != in post_to_main_message_loop() 39 from_here.ToString()); in post_to_main_message_loop()
|
/packages/modules/Bluetooth/system/stack/include/ |
D | main_thread.h | 32 bt_status_t do_in_main_thread(const base::Location& from_here, 34 bt_status_t do_in_main_thread_delayed(const base::Location& from_here,
|
/packages/modules/Bluetooth/system/bta/le_audio/audio_hal_client/ |
D | audio_hal_client_test.cc | 58 bt_status_t do_in_main_thread(const base::Location& from_here, in do_in_main_thread() argument 60 if (!message_loop_thread.DoInThread(from_here, std::move(task))) { in do_in_main_thread() 61 log::error("failed from {}", from_here.ToString()); in do_in_main_thread()
|
/packages/modules/Bluetooth/system/bta/le_audio/broadcaster/ |
D | broadcaster_test.cc | 91 bt_status_t do_in_main_thread(const base::Location& from_here, in do_in_main_thread() argument 96 from_here, in do_in_main_thread() 103 log::error("failed from {}", from_here.ToString()); in do_in_main_thread()
|
/packages/modules/Bluetooth/system/bta/le_audio/ |
D | le_audio_client_test.cc | 139 bt_status_t do_in_main_thread(const base::Location& from_here, in do_in_main_thread() argument 146 from_here, in do_in_main_thread() 153 bluetooth::log::error("failed from {}", from_here.ToString()); in do_in_main_thread() 160 bt_status_t do_in_main_thread_delayed(const base::Location& from_here, in do_in_main_thread_delayed() argument 164 return do_in_main_thread(from_here, std::move(task)); in do_in_main_thread_delayed()
|