Home
last modified time | relevance | path

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

12

/external/libchrome/base/threading/
Dworker_pool.cc27 bool PostTask(const tracked_objects::Location& from_here, in PostTask() argument
29 return WorkerPool::PostTask(from_here, task, task_is_slow_); in PostTask()
45 bool PostDelayedTask(const tracked_objects::Location& from_here,
56 const tracked_objects::Location& from_here,
73 const tracked_objects::Location& from_here, in PostDelayedTask() argument
76 return PostDelayedTaskAssertZeroDelay(from_here, task, delay); in PostDelayedTask()
84 const tracked_objects::Location& from_here, in PostDelayedTaskAssertZeroDelay() argument
89 return WorkerPool::PostTask(from_here, task, tasks_are_slow_); in PostDelayedTaskAssertZeroDelay()
105 bool WorkerPool::PostTaskAndReply(const tracked_objects::Location& from_here, in PostTaskAndReply() argument
114 from_here, task, reply); in PostTaskAndReply()
Dpost_task_and_reply_impl.cc27 PostTaskAndReplyRelay(const tracked_objects::Location& from_here, in PostTaskAndReplyRelay() argument
30 : from_here_(from_here), in PostTaskAndReplyRelay()
75 const tracked_objects::Location& from_here, in PostTaskAndReply() argument
79 CHECK(!task.is_null()) << from_here.ToString(); in PostTaskAndReply()
80 CHECK(!reply.is_null()) << from_here.ToString(); in PostTaskAndReply()
82 new PostTaskAndReplyRelay(from_here, task, reply); in PostTaskAndReply()
83 if (!PostTask(from_here, Bind(&PostTaskAndReplyRelay::Run, in PostTaskAndReply()
Dsequenced_worker_pool.cc60 explicit SequencedTask(const tracked_objects::Location& from_here) in SequencedTask()
61 : base::TrackingInfo(from_here, TimeTicks()), in SequencedTask()
107 bool PostDelayedTask(const tracked_objects::Location& from_here,
131 const tracked_objects::Location& from_here, in PostDelayedTask() argument
136 from_here, task, shutdown_behavior_); in PostDelayedTask()
138 return pool_->PostDelayedWorkerTask(from_here, task, delay); in PostDelayedTask()
158 bool PostDelayedTask(const tracked_objects::Location& from_here,
164 bool PostNonNestableDelayedTask(const tracked_objects::Location& from_here,
193 const tracked_objects::Location& from_here, in PostDelayedTask() argument
198 token_, from_here, task, shutdown_behavior_); in PostDelayedTask()
[all …]
Dsequenced_worker_pool.h247 bool PostWorkerTask(const tracked_objects::Location& from_here,
259 bool PostDelayedWorkerTask(const tracked_objects::Location& from_here,
265 const tracked_objects::Location& from_here,
281 const tracked_objects::Location& from_here,
287 const tracked_objects::Location& from_here,
301 const tracked_objects::Location& from_here,
309 const tracked_objects::Location& from_here,
314 bool PostDelayedTask(const tracked_objects::Location& from_here,
Dworker_pool_posix.cc38 void PostTask(const tracked_objects::Location& from_here,
54 void WorkerPoolImpl::PostTask(const tracked_objects::Location& from_here, in PostTask() argument
57 pool_->PostTask(from_here, task); in PostTask()
107 bool WorkerPool::PostTask(const tracked_objects::Location& from_here, in PostTask() argument
110 g_lazy_worker_pool.Pointer()->PostTask(from_here, task, task_is_slow); in PostTask()
142 const tracked_objects::Location& from_here, in PostTask() argument
144 PendingTask pending_task(from_here, task); in PostTask()
Dpost_task_and_reply_impl.h32 bool PostTaskAndReply(const tracked_objects::Location& from_here,
37 virtual bool PostTask(const tracked_objects::Location& from_here,
Dworker_pool.h36 static bool PostTask(const tracked_objects::Location& from_here,
42 static bool PostTaskAndReply(const tracked_objects::Location& from_here,
/external/libbrillo/brillo/
Dlocation_logging.h12 #define VLOG_LOC_STREAM(from_here, verbose_level) \ argument
13 logging::LogMessage((from_here).file_name(), (from_here).line_number(), \
16 #define VLOG_LOC(from_here, verbose_level) \ argument
17 LAZY_STREAM(VLOG_LOC_STREAM(from_here, verbose_level), \
20 #define DVLOG_LOC(from_here, verbose_level) \ argument
21 LAZY_STREAM(VLOG_LOC_STREAM(from_here, verbose_level), \
/external/libchrome/base/
Dsequenced_task_runner.h111 bool PostNonNestableTask(const tracked_objects::Location& from_here,
115 const tracked_objects::Location& from_here,
123 bool DeleteSoon(const tracked_objects::Location& from_here, in DeleteSoon() argument
127 this, from_here, object); in DeleteSoon()
134 bool ReleaseSoon(const tracked_objects::Location& from_here, in ReleaseSoon() argument
138 this, from_here, object); in ReleaseSoon()
148 bool DeleteSoonInternal(const tracked_objects::Location& from_here,
152 bool ReleaseSoonInternal(const tracked_objects::Location& from_here,
Dtask_runner.cc23 bool PostTask(const tracked_objects::Location& from_here,
36 const tracked_objects::Location& from_here, in PostTask() argument
38 return destination_->PostTask(from_here, task); in PostTask()
43 bool TaskRunner::PostTask(const tracked_objects::Location& from_here, in PostTask() argument
45 return PostDelayedTask(from_here, task, base::TimeDelta()); in PostTask()
49 const tracked_objects::Location& from_here, in PostTaskAndReply() argument
53 from_here, task, reply); in PostTaskAndReply()
Dsequenced_task_runner.cc12 const tracked_objects::Location& from_here, in PostNonNestableTask() argument
14 return PostNonNestableDelayedTask(from_here, task, base::TimeDelta()); in PostNonNestableTask()
18 const tracked_objects::Location& from_here, in DeleteSoonInternal() argument
21 return PostNonNestableTask(from_here, Bind(deleter, object)); in DeleteSoonInternal()
25 const tracked_objects::Location& from_here, in ReleaseSoonInternal() argument
28 return PostNonNestableTask(from_here, Bind(releaser, object)); in ReleaseSoonInternal()
Dsequenced_task_runner_helpers.h83 const tracked_objects::Location& from_here, in DeleteViaSequencedTaskRunner() argument
86 from_here, &DeleteHelper<T>::DoDelete, object); in DeleteViaSequencedTaskRunner()
99 const tracked_objects::Location& from_here, in ReleaseViaSequencedTaskRunner() argument
102 from_here, &ReleaseHelper<T>::DoRelease, object); in ReleaseViaSequencedTaskRunner()
Dtask_runner.h64 bool PostTask(const tracked_objects::Location& from_here,
72 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
125 bool PostTaskAndReply(const tracked_objects::Location& from_here,
/external/libchrome/base/message_loop/
Dmessage_loop_task_runner.cc26 const tracked_objects::Location& from_here, in PostDelayedTask() argument
29 DCHECK(!task.is_null()) << from_here.ToString(); in PostDelayedTask()
30 return incoming_queue_->AddToIncomingQueue(from_here, task, delay, true); in PostDelayedTask()
34 const tracked_objects::Location& from_here, in PostNonNestableDelayedTask() argument
37 DCHECK(!task.is_null()) << from_here.ToString(); in PostNonNestableDelayedTask()
38 return incoming_queue_->AddToIncomingQueue(from_here, task, delay, false); in PostNonNestableDelayedTask()
Dmessage_loop.h196 void PostTask(const tracked_objects::Location& from_here,
199 void PostDelayedTask(const tracked_objects::Location& from_here,
211 void DeleteSoon(const tracked_objects::Location& from_here, const T* object) { in DeleteSoon() argument
213 this, from_here, object); in DeleteSoon()
239 void ReleaseSoon(const tracked_objects::Location& from_here, in ReleaseSoon() argument
242 this, from_here, object); in ReleaseSoon()
551 void DeleteSoonInternal(const tracked_objects::Location& from_here,
554 void ReleaseSoonInternal(const tracked_objects::Location& from_here,
Dmessage_loop.cc280 const tracked_objects::Location& from_here, in PostTask() argument
282 task_runner_->PostTask(from_here, task); in PostTask()
286 const tracked_objects::Location& from_here, in PostDelayedTask() argument
289 task_runner_->PostDelayedTask(from_here, task, delay); in PostDelayedTask()
691 void MessageLoop::DeleteSoonInternal(const tracked_objects::Location& from_here, in DeleteSoonInternal() argument
694 task_runner()->PostNonNestableTask(from_here, Bind(deleter, object)); in DeleteSoonInternal()
698 const tracked_objects::Location& from_here, in ReleaseSoonInternal() argument
701 task_runner()->PostNonNestableTask(from_here, Bind(releaser, object)); in ReleaseSoonInternal()
Dincoming_task_queue.cc62 const tracked_objects::Location& from_here, in AddToIncomingQueue() argument
69 << " seconds from here: " << from_here.ToString(); in AddToIncomingQueue()
72 from_here, task, CalculateDelayedRuntime(delay), nestable); in AddToIncomingQueue()
/external/libchrome/base/test/
Dtest_io_thread.cc52 void TestIOThread::PostTask(const tracked_objects::Location& from_here, in PostTask() argument
54 task_runner()->PostTask(from_here, task); in PostTask()
57 void TestIOThread::PostTaskAndWait(const tracked_objects::Location& from_here, in PostTaskAndWait() argument
61 task_runner()->PostTask(from_here, in PostTaskAndWait()
Dtest_simple_task_runner.cc18 const tracked_objects::Location& from_here, in PostDelayedTask() argument
23 TestPendingTask(from_here, task, TimeTicks(), delay, in PostDelayedTask()
29 const tracked_objects::Location& from_here, in PostNonNestableDelayedTask() argument
34 TestPendingTask(from_here, task, TimeTicks(), delay, in PostNonNestableDelayedTask()
/external/libbrillo/brillo/message_loops/
Dglib_message_loop.cc32 const tracked_objects::Location& from_here, in PostDelayedTask() argument
40 this, from_here, task_id, 0, false, std::move(task)}; in PostDelayedTask()
41 DVLOG_LOC(from_here, 1) << "Scheduling delayed task_id " << task_id in PostDelayedTask()
54 const tracked_objects::Location& from_here, in WatchFileDescriptor() argument
96 this, from_here, task_id, 0, persistent, std::move(task)}; in WatchFileDescriptor()
109 DVLOG_LOC(from_here, 1) in WatchFileDescriptor()
Dmessage_loop.h52 virtual TaskId PostDelayedTask(const tracked_objects::Location& from_here,
65 TaskId PostTask(const tracked_objects::Location& from_here, in PostTask() argument
67 return PostDelayedTask(from_here, task, base::TimeDelta()); in PostTask()
83 virtual TaskId WatchFileDescriptor(const tracked_objects::Location& from_here,
Dfake_message_loop.cc17 const tracked_objects::Location& from_here, in PostDelayedTask() argument
28 tasks_.emplace(current_id, ScheduledTask{from_here, false, task}); in PostDelayedTask()
30 VLOG_LOC(from_here, 1) << "Scheduling delayed task_id " << current_id in PostDelayedTask()
37 const tracked_objects::Location& from_here, in WatchFileDescriptor() argument
45 tasks_.emplace(current_id, ScheduledTask{from_here, persistent, task}); in WatchFileDescriptor()
Dbase_message_loop.cc84 const tracked_objects::Location& from_here, in PostDelayedTask() argument
89 from_here, in PostDelayedTask()
94 DVLOG_LOC(from_here, 1) << "Scheduling delayed task_id " << task_id in PostDelayedTask()
100 DelayedTask{from_here, task_id, std::move(task)}); in PostDelayedTask()
105 const tracked_objects::Location& from_here, in WatchFileDescriptor() argument
131 from_here, this, task_id, fd, base_mode, persistent, task)); in WatchFileDescriptor()
135 DVLOG_LOC(from_here, 1) in WatchFileDescriptor()
/external/libchrome/base/task/
Dcancelable_task_tracker.h72 const tracked_objects::Location& from_here,
76 const tracked_objects::Location& from_here,
83 const tracked_objects::Location& from_here, in PostTaskAndReplyWithResult() argument
89 from_here, in PostTaskAndReplyWithResult()
Dcancelable_task_tracker.cc76 const tracked_objects::Location& from_here, in PostTask() argument
80 return PostTaskAndReply(task_runner, from_here, task, Bind(&base::DoNothing)); in PostTask()
85 const tracked_objects::Location& from_here, in PostTaskAndReply() argument
102 task_runner->PostTaskAndReply(from_here, in PostTaskAndReply()

12