/external/libchrome/base/timer/ |
D | timer.h | 96 Timer(const Location& posted_from, 100 Timer(const Location& posted_from, 123 virtual void Start(const Location& posted_from, 131 void Start(const Location& posted_from, in Start() argument 135 Start(posted_from, delay, in Start() 166 const Location& posted_from() const { return posted_from_; } in posted_from() function 258 RepeatingTimer(const Location& posted_from, in RepeatingTimer() argument 261 : Timer(posted_from, delay, std::move(user_task), true) {} in RepeatingTimer() 262 RepeatingTimer(const Location& posted_from, in RepeatingTimer() argument 266 : Timer(posted_from, delay, std::move(user_task), true, tick_clock) {} in RepeatingTimer() [all …]
|
D | timer.cc | 80 Timer::Timer(const Location& posted_from, in Timer() argument 84 : Timer(posted_from, delay, user_task, is_repeating, nullptr) {} in Timer() 86 Timer::Timer(const Location& posted_from, in Timer() argument 92 posted_from_(posted_from), in Timer() 130 void Timer::Start(const Location& posted_from, in Start() argument 135 posted_from_ = posted_from; in Start()
|
/external/webrtc/test/time_controller/ |
D | simulated_thread.cc | 70 void SimulatedThread::Send(const rtc::Location& posted_from, in Send() argument 77 msg.posted_from = posted_from; in Send() 92 void SimulatedThread::Post(const rtc::Location& posted_from, in Post() argument 97 rtc::Thread::Post(posted_from, phandler, id, pdata, time_sensitive); in Post() 102 void SimulatedThread::PostDelayed(const rtc::Location& posted_from, in PostDelayed() argument 107 rtc::Thread::PostDelayed(posted_from, delay_ms, phandler, id, pdata); in PostDelayed() 113 void SimulatedThread::PostAt(const rtc::Location& posted_from, in PostAt() argument 118 rtc::Thread::PostAt(posted_from, target_time_ms, phandler, id, pdata); in PostAt()
|
D | simulated_thread.h | 39 void Send(const rtc::Location& posted_from, 43 void Post(const rtc::Location& posted_from, 48 void PostDelayed(const rtc::Location& posted_from, 53 void PostAt(const rtc::Location& posted_from,
|
/external/webrtc/rtc_base/ |
D | async_invoker.h | 98 void AsyncInvoke(const Location& posted_from, 105 DoInvoke(posted_from, thread, std::move(closure), id); 111 void AsyncInvokeDelayed(const Location& posted_from, 119 DoInvokeDelayed(posted_from, thread, std::move(closure), delay_ms, id); 136 void DoInvoke(const Location& posted_from, 140 void DoInvokeDelayed(const Location& posted_from,
|
D | thread.h | 243 virtual void Post(const Location& posted_from, 248 virtual void PostDelayed(const Location& posted_from, 253 virtual void PostAt(const Location& posted_from, 310 virtual void Send(const Location& posted_from, 328 ReturnT Invoke(const Location& posted_from, FunctionView<ReturnT()> functor) { in Invoke() argument 330 InvokeInternal(posted_from, [functor, &result] { result = functor(); }); in Invoke() 337 void Invoke(const Location& posted_from, FunctionView<void()> functor) { in Invoke() argument 338 InvokeInternal(posted_from, functor); in Invoke() 388 void PostTask(const Location& posted_from, FunctorT&& functor) { in PostTask() argument 389 Post(posted_from, GetPostTaskMessageHandler(), /*id=*/0, in PostTask() [all …]
|
D | async_invoker.cc | 66 thread->Send(it->posted_from, it->phandler, it->message_id, it->pdata); in Flush() 74 void AsyncInvoker::DoInvoke(const Location& posted_from, in DoInvoke() argument 86 thread->Post(posted_from, this, id, in DoInvoke() 90 void AsyncInvoker::DoInvokeDelayed(const Location& posted_from, in DoInvokeDelayed() argument 100 thread->PostDelayed(posted_from, delay_ms, this, id, in DoInvokeDelayed()
|
D | thread.cc | 533 void Thread::Post(const Location& posted_from, in Post() argument 551 msg.posted_from = posted_from; in Post() 560 void Thread::PostDelayed(const Location& posted_from, in PostDelayed() argument 565 return DoDelayPost(posted_from, delay_ms, TimeAfter(delay_ms), phandler, id, in PostDelayed() 569 void Thread::PostAt(const Location& posted_from, in PostAt() argument 574 return DoDelayPost(posted_from, TimeUntil(run_at_ms), run_at_ms, phandler, id, in PostAt() 578 void Thread::DoDelayPost(const Location& posted_from, in DoDelayPost() argument 596 msg.posted_from = posted_from; in DoDelayPost() 677 pmsg->posted_from.file_name(), "src_func", in Dispatch() 678 pmsg->posted_from.function_name()); in Dispatch() [all …]
|
D | thread_message.h | 109 Location posted_from; member
|
/external/libchrome/base/ |
D | pending_task.cc | 10 PendingTask::PendingTask(const Location& posted_from, in PendingTask() argument 15 posted_from(posted_from), in PendingTask()
|
D | pending_task.h | 26 PendingTask(const Location& posted_from, 42 Location posted_from; member
|
D | deferred_sequenced_task_runner.cc | 102 deferred_task.posted_from = from_here; in QueueDeferredTask() 120 task.posted_from, std::move(task.task), task.delay); in StartImpl() 122 target_task_runner_->PostDelayedTask(task.posted_from, in StartImpl()
|
D | deferred_sequenced_task_runner.h | 65 Location posted_from; member
|
/external/libchrome/base/task/sequence_manager/ |
D | task_queue.cc | 34 : PendingTask(task.posted_from, in Task() 58 Location posted_from, in PostedTask() argument 63 posted_from(posted_from), in PostedTask() 70 posted_from(move_from.posted_from), in PostedTask()
|
D | task_queue.h | 58 Location posted_from, 67 Location posted_from; member
|
/external/webrtc/api/ |
D | proxy.cc | 21 void SynchronousMethodCall::Invoke(const rtc::Location& posted_from, in Invoke() argument 26 t->Post(posted_from, this, 0); in Invoke()
|
D | proxy.h | 107 void Invoke(const rtc::Location& posted_from, rtc::Thread* t); 127 R Marshal(const rtc::Location& posted_from, rtc::Thread* t) { in Marshal() argument 128 internal::SynchronousMethodCall(this).Invoke(posted_from, t); in Marshal() 155 R Marshal(const rtc::Location& posted_from, rtc::Thread* t) { in Marshal() argument 156 internal::SynchronousMethodCall(this).Invoke(posted_from, t); in Marshal()
|
/external/libchrome/base/task_scheduler/ |
D | task.cc | 21 Task::Task(const Location& posted_from, in Task() argument 26 posted_from, in Task()
|
D | task.h | 30 Task(const Location& posted_from,
|
/external/libchrome/base/debug/ |
D | task_annotator_unittest.cc | 64 last_posted_from_ = pending_task->posted_from; in BeforeRunTask() 73 const Location& posted_from, in VerifyTraceAndPost() argument 79 EXPECT_EQ(posted_from, last_posted_from_); in VerifyTraceAndPost() 96 const Location& posted_from, in VerifyTraceAndPostWithBlocker() argument 111 VerifyTraceAndPost(task_runner, posted_from, next_from_here, expected_trace, in VerifyTraceAndPostWithBlocker()
|
D | task_annotator.cc | 55 parent_task->posted_from.program_counter(); in WillQueueTask() 88 task_backtrace[1] = pending_task->posted_from.program_counter(); in RunTask()
|
/external/webrtc/pc/ |
D | dtmf_sender.cc | 158 void DtmfSender::QueueInsertDtmf(const rtc::Location& posted_from, in QueueInsertDtmf() argument 161 posted_from, signaling_thread_, [this] { DoInsertDtmf(); }, delay_ms); in QueueInsertDtmf()
|
D | dtmf_sender.h | 73 void QueueInsertDtmf(const rtc::Location& posted_from, uint32_t delay_ms);
|
/external/libchrome/base/trace_event/ |
D | trace_event.h | 494 (task).posted_from.file_name(), "src_func", \ 495 (task).posted_from.function_name()); \ 497 task_event)((task).posted_from.file_name()); \ 499 INTERNAL_TRACE_EVENT_UID(task_pc_event)((task).posted_from.program_counter()); 507 TRACE_EVENT1("toplevel", run_function, "src", (task).posted_from.ToString()) \ 509 task_event)((task).posted_from.file_name()); \ 511 INTERNAL_TRACE_EVENT_UID(task_pc_event)((task).posted_from.program_counter());
|
/external/libchrome/components/timers/ |
D | alarm_timer_chromeos.cc | 71 base::RetainingOneShotTimer::posted_from(), in Reset()
|