Searched defs:from_here (Results 1 - 25 of 30) sorted by relevance

12

/external/libchrome/base/
H A 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, argument
127 this, from_here, object);
134 bool ReleaseSoon(const tracked_objects::Location& from_here, argument
138 this, from_here, object);
148 bool DeleteSoonInternal(const tracked_objects::Location& from_here,
152 bool ReleaseSoonInternal(const tracked_objects::Location& from_here,
H A Dsequenced_task_runner.cc12 const tracked_objects::Location& from_here,
14 return PostNonNestableDelayedTask(from_here, task, base::TimeDelta());
18 const tracked_objects::Location& from_here,
21 return PostNonNestableTask(from_here, Bind(deleter, object));
25 const tracked_objects::Location& from_here,
28 return PostNonNestableTask(from_here, Bind(releaser, object));
11 PostNonNestableTask( const tracked_objects::Location& from_here, const Closure& task) argument
17 DeleteSoonInternal( const tracked_objects::Location& from_here, void(*deleter)(const void*), const void* object) argument
24 ReleaseSoonInternal( const tracked_objects::Location& from_here, void(*releaser)(const void*), const void* object) argument
H A Dsequenced_task_runner_helpers.h83 const tracked_objects::Location& from_here,
86 from_here, &DeleteHelper<T>::DoDelete, object);
99 const tracked_objects::Location& from_here,
102 from_here, &ReleaseHelper<T>::DoRelease, object);
81 DeleteViaSequencedTaskRunner( SequencedTaskRunnerType* sequenced_task_runner, const tracked_objects::Location& from_here, const T* object) argument
97 ReleaseViaSequencedTaskRunner( SequencedTaskRunnerType* sequenced_task_runner, const tracked_objects::Location& from_here, const T* object) argument
H A Dtask_runner_util.h57 const tracked_objects::Location& from_here,
62 from_here,
55 PostTaskAndReplyWithResult( TaskRunner* task_runner, const tracked_objects::Location& from_here, const Callback<TaskReturnType(void)>& task, const Callback<void(ReplyArgType)>& reply) argument
H A Dtask_runner.cc23 bool PostTask(const tracked_objects::Location& from_here,
36 const tracked_objects::Location& from_here,
38 return destination_->PostTask(from_here, task);
43 bool TaskRunner::PostTask(const tracked_objects::Location& from_here, argument
45 return PostDelayedTask(from_here, task, base::TimeDelta());
49 const tracked_objects::Location& from_here,
53 from_here, task, reply);
35 PostTask( const tracked_objects::Location& from_here, const Closure& task) argument
48 PostTaskAndReply( const tracked_objects::Location& from_here, const Closure& task, const Closure& reply) argument
H A Dobserver_list_threadsafe.h177 void Notify(const tracked_objects::Location& from_here, argument
187 from_here,
/external/libbrillo/brillo/
H A Dprocess_reaper.cc39 bool ProcessReaper::WatchForChild(const tracked_objects::Location& from_here, argument
44 watched_processes_.emplace(pid, WatchedProcess{from_here, callback});
/external/libchrome/base/message_loop/
H A Dmessage_loop_task_runner.cc26 const tracked_objects::Location& from_here,
29 DCHECK(!task.is_null()) << from_here.ToString();
30 return incoming_queue_->AddToIncomingQueue(from_here, task, delay, true);
34 const tracked_objects::Location& from_here,
37 DCHECK(!task.is_null()) << from_here.ToString();
38 return incoming_queue_->AddToIncomingQueue(from_here, task, delay, false);
25 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
33 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
H A Dincoming_task_queue.cc54 const tracked_objects::Location& from_here,
61 << " seconds from here: " << from_here.ToString();
65 from_here, task, CalculateDelayedRuntime(delay), nestable);
53 AddToIncomingQueue( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay, bool nestable) argument
/external/libchrome/base/test/
H A Dtest_io_thread.cc52 void TestIOThread::PostTask(const tracked_objects::Location& from_here, argument
54 task_runner()->PostTask(from_here, task);
57 void TestIOThread::PostTaskAndWait(const tracked_objects::Location& from_here, argument
60 task_runner()->PostTask(from_here,
H A Dtest_simple_task_runner.cc18 const tracked_objects::Location& from_here,
23 TestPendingTask(from_here, task, TimeTicks(), delay,
29 const tracked_objects::Location& from_here,
34 TestPendingTask(from_here, task, TimeTicks(), delay,
17 PostDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
28 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
/external/libchrome/base/threading/
H A Dpost_task_and_reply_impl.cc27 PostTaskAndReplyRelay(const tracked_objects::Location& from_here, argument
30 : from_here_(from_here),
75 const tracked_objects::Location& from_here,
79 CHECK(!task.is_null()) << from_here.ToString();
80 CHECK(!reply.is_null()) << from_here.ToString();
82 new PostTaskAndReplyRelay(from_here, task, reply);
83 if (!PostTask(from_here, Bind(&PostTaskAndReplyRelay::Run,
74 PostTaskAndReply( const tracked_objects::Location& from_here, const Closure& task, const Closure& reply) argument
H A Dworker_pool.cc27 bool PostTask(const tracked_objects::Location& from_here,
29 return WorkerPool::PostTask(from_here, task, task_is_slow_);
45 bool PostDelayedTask(const tracked_objects::Location& from_here,
56 const tracked_objects::Location& from_here,
73 const tracked_objects::Location& from_here,
76 return PostDelayedTaskAssertZeroDelay(from_here, task, delay);
84 const tracked_objects::Location& from_here,
89 return WorkerPool::PostTask(from_here, task, tasks_are_slow_);
105 bool WorkerPool::PostTaskAndReply(const tracked_objects::Location& from_here, argument
114 from_here, tas
72 PostDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
83 PostDelayedTaskAssertZeroDelay( const tracked_objects::Location& from_here, const Closure& task, base::TimeDelta delay) argument
[all...]
H A Dworker_pool_posix.cc38 void PostTask(const tracked_objects::Location& from_here,
54 void WorkerPoolImpl::PostTask(const tracked_objects::Location& from_here, argument
57 pool_->PostTask(from_here, task);
109 bool WorkerPool::PostTask(const tracked_objects::Location& from_here, argument
112 g_lazy_worker_pool.Pointer()->PostTask(from_here, task, task_is_slow);
144 const tracked_objects::Location& from_here,
146 PendingTask pending_task(from_here, task);
143 PostTask( const tracked_objects::Location& from_here, const base::Closure& task) argument
/external/dbus-binding-generator/chromeos-dbus-bindings/
H A Dtest_utils.cc66 void ExpectTextContained(const tracked_objects::Location& from_here, argument
74 ADD_FAILURE_AT(from_here.file_name(), from_here.line_number())
/external/libbrillo/brillo/message_loops/
H A Dmessage_loop.h52 virtual TaskId PostDelayedTask(const tracked_objects::Location& from_here,
65 TaskId PostTask(const tracked_objects::Location& from_here, argument
67 return PostDelayedTask(from_here, task, base::TimeDelta());
83 virtual TaskId WatchFileDescriptor(const tracked_objects::Location& from_here,
H A Dfake_message_loop.cc17 const tracked_objects::Location& from_here,
28 tasks_.emplace(current_id, ScheduledTask{from_here, false, task});
30 VLOG_LOC(from_here, 1) << "Scheduling delayed task_id " << current_id
37 const tracked_objects::Location& from_here,
45 tasks_.emplace(current_id, ScheduledTask{from_here, persistent, task});
16 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
36 WatchFileDescriptor( const tracked_objects::Location& from_here, int fd, WatchMode mode, bool persistent, const base::Closure& task) argument
H A Dglib_message_loop.cc32 const tracked_objects::Location& from_here,
40 this, from_here, task_id, 0, false, std::move(task)};
41 DVLOG_LOC(from_here, 1) << "Scheduling delayed task_id " << task_id
54 const tracked_objects::Location& from_here,
96 this, from_here, task_id, 0, persistent, std::move(task)};
109 DVLOG_LOC(from_here, 1)
31 PostDelayedTask( const tracked_objects::Location& from_here, const Closure &task, base::TimeDelta delay) argument
53 WatchFileDescriptor( const tracked_objects::Location& from_here, int fd, WatchMode mode, bool persistent, const Closure &task) argument
H A Dbase_message_loop.cc73 const tracked_objects::Location& from_here,
78 from_here,
83 DVLOG_LOC(from_here, 1) << "Scheduling delayed task_id " << task_id
89 DelayedTask{from_here, task_id, std::move(task)});
94 const tracked_objects::Location& from_here,
120 from_here, this, task_id, fd, base_mode, persistent, task));
124 DVLOG_LOC(from_here, 1)
72 PostDelayedTask( const tracked_objects::Location& from_here, const Closure &task, base::TimeDelta delay) argument
93 WatchFileDescriptor( const tracked_objects::Location& from_here, int fd, WatchMode mode, bool persistent, const Closure &task) argument
/external/libchrome/base/task/
H A Dcancelable_task_tracker.h72 const tracked_objects::Location& from_here,
76 const tracked_objects::Location& from_here,
83 const tracked_objects::Location& from_here,
89 from_here,
81 PostTaskAndReplyWithResult( base::TaskRunner* task_runner, const tracked_objects::Location& from_here, const base::Callback<TaskReturnType(void)>& task, const base::Callback<void(ReplyArgType)>& reply) argument
H A Dcancelable_task_tracker.cc76 const tracked_objects::Location& from_here,
80 return PostTaskAndReply(task_runner, from_here, task, Bind(&base::DoNothing));
85 const tracked_objects::Location& from_here,
102 task_runner->PostTaskAndReply(from_here,
74 PostTask( TaskRunner* task_runner, const tracked_objects::Location& from_here, const Closure& task) argument
83 PostTaskAndReply( TaskRunner* task_runner, const tracked_objects::Location& from_here, const Closure& task, const Closure& reply) argument
/external/libweave/src/test/
H A Dfake_task_runner.cc49 void FakeTaskRunner::PostDelayedTask(const tracked_objects::Location& from_here, argument
/external/libchrome/base/mac/
H A Dlibdispatch_task_runner.cc22 const tracked_objects::Location& /* from_here */,
52 const tracked_objects::Location& from_here,
55 return PostDelayedTask(from_here, task, delay);
51 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const Closure& task, base::TimeDelta delay) argument
/external/libweave/examples/provider/
H A Devent_task_runner.cc17 const tracked_objects::Location& from_here,
16 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
/external/libbrillo/brillo/http/
H A Dhttp_transport_curl.cc204 void Transport::RunCallbackAsync(const tracked_objects::Location& from_here, argument
206 base::MessageLoopForIO::current()->PostTask(from_here, callback);

Completed in 3891 milliseconds

12