Home
last modified time | relevance | path

Searched refs:from_here (Results 1 – 24 of 24) sorted by relevance

/packages/modules/Bluetooth/system/stack/btu/
Dbtu_task.cc91 bt_status_t do_in_main_thread(const base::Location& from_here, in do_in_main_thread() argument
93 if (!main_thread.DoInThread(from_here, std::move(task))) { in do_in_main_thread()
94 LOG(ERROR) << __func__ << ": failed from " << from_here.ToString(); in do_in_main_thread()
100 bt_status_t do_in_main_thread_delayed(const base::Location& from_here, in do_in_main_thread_delayed() argument
103 if (!main_thread.DoInThreadDelayed(from_here, std::move(task), delay)) { in do_in_main_thread_delayed()
104 LOG(ERROR) << __func__ << ": failed from " << from_here.ToString(); in do_in_main_thread_delayed()
/packages/modules/Bluetooth/system/common/
Dmessage_loop_thread.cc79 bool MessageLoopThread::DoInThread(const base::Location& from_here, in DoInThread() argument
81 return DoInThreadDelayed(from_here, std::move(task), base::TimeDelta()); in DoInThread()
84 bool MessageLoopThread::DoInThreadDelayed(const base::Location& from_here, in DoInThreadDelayed() argument
91 << ", from " << from_here.ToString(); in DoInThreadDelayed()
104 << ", from " << from_here.ToString(); in DoInThreadDelayed()
107 if (!message_loop_->task_runner()->PostDelayedTask(from_here, std::move(task), in DoInThreadDelayed()
111 << ", from " << from_here.ToString(); in DoInThreadDelayed()
Donce_timer.cc38 const base::Location& from_here, in Schedule() argument
55 from_here, task_wrapper_.callback(), in Schedule()
63 << ", from " << from_here.ToString(); in Schedule()
Drepeating_timer.cc46 const base::Location& from_here, base::Closure task, in SchedulePeriodic() argument
69 from_here, task_wrapper_.callback(), in SchedulePeriodic()
77 << ", from " << from_here.ToString(); in SchedulePeriodic()
Dmessage_loop_thread.h76 bool DoInThread(const base::Location& from_here, base::OnceClosure task);
169 bool DoInThreadDelayed(const base::Location& from_here,
Drepeating_timer.h60 const base::Location& from_here,
Donce_timer.h60 const base::Location& from_here, base::OnceClosure task,
/packages/modules/Bluetooth/system/test/mock/
Dmock_common_message_loop_thread.cc78 bool MessageLoopThread::DoInThread(const base::Location& from_here, in DoInThread() argument
80 return DoInThreadDelayed(from_here, std::move(task), base::TimeDelta()); in DoInThread()
83 bool MessageLoopThread::DoInThreadDelayed(const base::Location& from_here, in DoInThreadDelayed() argument
90 << ", from " << from_here.ToString(); in DoInThreadDelayed()
103 << ", from " << from_here.ToString(); in DoInThreadDelayed()
106 if (!message_loop_->task_runner()->PostDelayedTask(from_here, std::move(task), in DoInThreadDelayed()
110 << ", from " << from_here.ToString(); in DoInThreadDelayed()
Dmock_common_repeating_timer.cc44 const base::Location& from_here, base::Closure task, in SchedulePeriodic() argument
Dmock_btif_core.cc95 bt_status_t do_in_jni_thread(const base::Location& from_here, in do_in_jni_thread() argument
/packages/modules/Bluetooth/system/test/common/
Dmain_handler.cc40 bt_status_t do_in_main_thread(const base::Location& from_here, in do_in_main_thread() argument
42 ASSERT_LOG(main_thread.DoInThread(from_here, std::move(task)), in do_in_main_thread()
47 bt_status_t do_in_main_thread_delayed(const base::Location& from_here, in do_in_main_thread_delayed() argument
50 ASSERT_LOG(!main_thread.DoInThreadDelayed(from_here, std::move(task), delay), in do_in_main_thread_delayed()
Dmain_handler.h29 bt_status_t do_in_main_thread(const base::Location& from_here,
31 bt_status_t do_in_main_thread_delayed(const base::Location& from_here,
/packages/modules/Bluetooth/system/btif/include/
Dbtif_common.h156 extern bt_status_t do_in_jni_thread(const base::Location& from_here,
169 base::Callback<R(Args...)> jni_thread_wrapper(const base::Location& from_here, in jni_thread_wrapper() argument
172 [](const base::Location& from_here, base::Callback<R(Args...)> cb, in jni_thread_wrapper()
174 do_in_jni_thread(from_here, in jni_thread_wrapper()
177 from_here, std::move(cb)); in jni_thread_wrapper()
/packages/modules/Bluetooth/system/btif/src/
Dbtif_hearing_aid.cc41 base::Callback<void()> jni_thread_wrapper(const base::Location& from_here, in jni_thread_wrapper() argument
44 [](const base::Location& from_here, base::Callback<void()> cb) { in jni_thread_wrapper() argument
45 do_in_jni_thread(from_here, cb); in jni_thread_wrapper()
47 from_here, std::move(cb)); in jni_thread_wrapper()
Dbtif_core.cc162 bt_status_t do_in_jni_thread(const base::Location& from_here, in do_in_jni_thread() argument
164 if (!jni_thread.DoInThread(from_here, std::move(task))) { in do_in_jni_thread()
/packages/modules/Bluetooth/system/main/
Dbte_main.cc68 static void post_to_main_message_loop(const base::Location& from_here, in post_to_main_message_loop() argument
70 if (do_in_main_thread(from_here, base::Bind(&btu_hci_msg_process, p_msg)) != in post_to_main_message_loop()
73 << from_here.ToString(); in post_to_main_message_loop()
/packages/modules/Bluetooth/system/stack/include/
Dbtu.h66 bt_status_t do_in_main_thread(const base::Location& from_here,
68 bt_status_t do_in_main_thread_delayed(const base::Location& from_here,
/packages/modules/Bluetooth/system/bta/le_audio/audio_hal_client/
Daudio_hal_client_test.cc53 bt_status_t do_in_main_thread(const base::Location& from_here, in do_in_main_thread() argument
55 if (!message_loop_thread.DoInThread(from_here, std::move(task))) { in do_in_main_thread()
56 LOG(ERROR) << __func__ << ": failed from " << from_here.ToString(); in do_in_main_thread()
/packages/modules/Bluetooth/system/bta/le_audio/broadcaster/
Dbroadcaster_test.cc77 bt_status_t do_in_main_thread(const base::Location& from_here, in do_in_main_thread() argument
82 from_here, in do_in_main_thread()
89 LOG(ERROR) << __func__ << ": failed from " << from_here.ToString(); in do_in_main_thread()
/packages/modules/Bluetooth/system/btif/test/
Dbtif_rc_test.cc95 bt_status_t do_in_jni_thread(const base::Location& from_here, in do_in_jni_thread() argument
Dbtif_profile_queue_test.cc38 bt_status_t do_in_jni_thread(const base::Location& from_here, in do_in_jni_thread() argument
/packages/modules/Bluetooth/system/main/shim/
Dlink_policy.cc40 bt_status_t do_in_main_thread(const base::Location& from_here,
Dacl.cc74 bt_status_t do_in_main_thread(const base::Location& from_here,
/packages/modules/Bluetooth/system/bta/le_audio/
Dle_audio_client_test.cc96 bt_status_t do_in_main_thread(const base::Location& from_here, in do_in_main_thread() argument
101 from_here, in do_in_main_thread()
108 LOG(ERROR) << __func__ << ": failed from " << from_here.ToString(); in do_in_main_thread()
115 bt_status_t do_in_main_thread_delayed(const base::Location& from_here, in do_in_main_thread_delayed() argument
119 return do_in_main_thread(from_here, std::move(task)); in do_in_main_thread_delayed()