Home
last modified time | relevance | path

Searched refs:posted_from (Results 1 – 25 of 31) sorted by relevance

12

/external/libchrome/base/timer/
Dtimer.h96 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 …]
Dtimer.cc80 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/
Dsimulated_thread.cc70 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()
Dsimulated_thread.h39 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/
Dasync_invoker.h98 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,
Dthread.h243 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 …]
Dasync_invoker.cc66 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()
Dthread.cc533 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 …]
Dthread_message.h109 Location posted_from; member
/external/libchrome/base/
Dpending_task.cc10 PendingTask::PendingTask(const Location& posted_from, in PendingTask() argument
15 posted_from(posted_from), in PendingTask()
Dpending_task.h26 PendingTask(const Location& posted_from,
42 Location posted_from; member
Ddeferred_sequenced_task_runner.cc102 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()
Ddeferred_sequenced_task_runner.h65 Location posted_from; member
/external/libchrome/base/task/sequence_manager/
Dtask_queue.cc34 : 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()
Dtask_queue.h58 Location posted_from,
67 Location posted_from; member
/external/webrtc/api/
Dproxy.cc21 void SynchronousMethodCall::Invoke(const rtc::Location& posted_from, in Invoke() argument
26 t->Post(posted_from, this, 0); in Invoke()
Dproxy.h107 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/
Dtask.cc21 Task::Task(const Location& posted_from, in Task() argument
26 posted_from, in Task()
Dtask.h30 Task(const Location& posted_from,
/external/libchrome/base/debug/
Dtask_annotator_unittest.cc64 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()
Dtask_annotator.cc55 parent_task->posted_from.program_counter(); in WillQueueTask()
88 task_backtrace[1] = pending_task->posted_from.program_counter(); in RunTask()
/external/webrtc/pc/
Ddtmf_sender.cc158 void DtmfSender::QueueInsertDtmf(const rtc::Location& posted_from, in QueueInsertDtmf() argument
161 posted_from, signaling_thread_, [this] { DoInsertDtmf(); }, delay_ms); in QueueInsertDtmf()
Ddtmf_sender.h73 void QueueInsertDtmf(const rtc::Location& posted_from, uint32_t delay_ms);
/external/libchrome/base/trace_event/
Dtrace_event.h494 (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/
Dalarm_timer_chromeos.cc71 base::RetainingOneShotTimer::posted_from(), in Reset()

12