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

/external/chromium/base/
H A Dmessage_loop_proxy.h34 virtual bool PostTask(const tracked_objects::Location& from_here,
36 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
38 virtual bool PostNonNestableTask(const tracked_objects::Location& from_here,
41 const tracked_objects::Location& from_here,
49 bool DeleteSoon(const tracked_objects::Location& from_here, argument
51 return PostNonNestableTask(from_here, new DeleteTask<T>(object));
54 bool ReleaseSoon(const tracked_objects::Location& from_here, argument
56 return PostNonNestableTask(from_here, new ReleaseTask<T>(object));
H A Dtracked.cc67 void Tracked::SetBirthPlace(const Location& from_here) {} argument
92 void Tracked::SetBirthPlace(const Location& from_here) { argument
100 tracked_births_ = current_thread_data->TallyABirth(from_here);
H A Dmessage_loop_proxy_impl.cc21 bool MessageLoopProxyImpl::PostTask(const tracked_objects::Location& from_here, argument
23 return PostTaskHelper(from_here, task, 0, true);
27 const tracked_objects::Location& from_here, Task* task, int64 delay_ms) {
28 return PostTaskHelper(from_here, task, delay_ms, true);
32 const tracked_objects::Location& from_here, Task* task) {
33 return PostTaskHelper(from_here, task, 0, false);
37 const tracked_objects::Location& from_here,
40 return PostTaskHelper(from_here, task, delay_ms, false);
85 const tracked_objects::Location& from_here, Task* task, int64 delay_ms,
92 target_message_loop_->PostDelayedTask(from_here, tas
26 PostDelayedTask( const tracked_objects::Location& from_here, Task* task, int64 delay_ms) argument
31 PostNonNestableTask( const tracked_objects::Location& from_here, Task* task) argument
36 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, Task* task, int64 delay_ms) argument
84 PostTaskHelper( const tracked_objects::Location& from_here, Task* task, int64 delay_ms, bool nestable) argument
[all...]
H A Dmessage_loop.h155 const tracked_objects::Location& from_here, Task* task);
158 const tracked_objects::Location& from_here, Task* task, int64 delay_ms);
161 const tracked_objects::Location& from_here, Task* task);
164 const tracked_objects::Location& from_here, Task* task, int64 delay_ms);
176 void DeleteSoon(const tracked_objects::Location& from_here, const T* object) { argument
177 PostNonNestableTask(from_here, new DeleteTask<T>(object));
191 void ReleaseSoon(const tracked_objects::Location& from_here, argument
193 PostNonNestableTask(from_here, new ReleaseTask<T>(object));
430 void PostTask_Helper(const tracked_objects::Location& from_here, Task* task,
H A Dmessage_pump_glib_unittest.cc148 void PostMessageLoopTask(const tracked_objects::Location& from_here, argument
150 MessageLoop::current()->PostTask(from_here, task);
H A Dfile_util_proxy.cc81 const tracked_objects::Location& from_here) {
83 from_here,
723 bool Start(const tracked_objects::Location& from_here, argument
726 return relay->Start(message_loop_proxy, from_here);
80 Start(scoped_refptr<base::MessageLoopProxy> message_loop_proxy, const tracked_objects::Location& from_here) argument
H A Dmessage_loop.cc225 const tracked_objects::Location& from_here, Task* task) {
226 PostTask_Helper(from_here, task, 0, true);
230 const tracked_objects::Location& from_here, Task* task, int64 delay_ms) {
231 PostTask_Helper(from_here, task, delay_ms, true);
235 const tracked_objects::Location& from_here, Task* task) {
236 PostTask_Helper(from_here, task, 0, false);
240 const tracked_objects::Location& from_here, Task* task, int64 delay_ms) {
241 PostTask_Helper(from_here, task, delay_ms, false);
473 const tracked_objects::Location& from_here, Task* task, int64 delay_ms,
475 task->SetBirthPlace(from_here);
224 PostTask( const tracked_objects::Location& from_here, Task* task) argument
229 PostDelayedTask( const tracked_objects::Location& from_here, Task* task, int64 delay_ms) argument
234 PostNonNestableTask( const tracked_objects::Location& from_here, Task* task) argument
239 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, Task* task, int64 delay_ms) argument
472 PostTask_Helper( const tracked_objects::Location& from_here, Task* task, int64 delay_ms, bool nestable) argument
[all...]
/external/chromium/base/threading/
H A Dworker_pool_win.cc23 bool WorkerPool::PostTask(const tracked_objects::Location& from_here, argument
25 task->SetBirthPlace(from_here);
H A Dworker_pool_posix.cc29 void PostTask(const tracked_objects::Location& from_here, Task* task,
45 void WorkerPoolImpl::PostTask(const tracked_objects::Location& from_here, argument
47 task->SetBirthPlace(from_here);
90 bool WorkerPool::PostTask(const tracked_objects::Location& from_here, argument
92 g_lazy_worker_pool.Pointer()->PostTask(from_here, task, task_is_slow);
/external/chromium/chrome/browser/sync/glue/
H A Dapp_data_type_controller.cc43 const tracked_objects::Location& from_here,
42 RecordUnrecoverableError( const tracked_objects::Location& from_here, const std::string& message) argument
H A Dextension_data_type_controller.cc43 const tracked_objects::Location& from_here,
42 RecordUnrecoverableError( const tracked_objects::Location& from_here, const std::string& message) argument
H A Dpreference_data_type_controller.cc35 const tracked_objects::Location& from_here,
34 RecordUnrecoverableError( const tracked_objects::Location& from_here, const std::string& message) argument
H A Dsession_data_type_controller.cc39 const tracked_objects::Location& from_here,
38 RecordUnrecoverableError( const tracked_objects::Location& from_here, const std::string& message) argument
H A Dtheme_data_type_controller.cc43 const tracked_objects::Location& from_here,
42 RecordUnrecoverableError( const tracked_objects::Location& from_here, const std::string& message) argument
H A Dbookmark_data_type_controller.cc73 const tracked_objects::Location& from_here,
72 RecordUnrecoverableError( const tracked_objects::Location& from_here, const std::string& message) argument
H A Dfrontend_data_type_controller.cc147 const tracked_objects::Location& from_here, const std::string& message) {
149 RecordUnrecoverableError(from_here, message);
150 sync_service_->OnUnrecoverableError(from_here, message);
146 OnUnrecoverableError( const tracked_objects::Location& from_here, const std::string& message) argument
H A Dfrontend_data_type_controller_unittest.cc36 const tracked_objects::Location& from_here));
70 const tracked_objects::Location& from_here,
72 mock_->RecordUnrecoverableError(from_here, message);
69 RecordUnrecoverableError( const tracked_objects::Location& from_here, const std::string& message) argument
H A Dpassword_data_type_controller.cc211 const tracked_objects::Location& from_here, const std::string& message) {
216 from_here, message));
220 const tracked_objects::Location& from_here,
223 sync_service_->OnUnrecoverableError(from_here, message);
210 OnUnrecoverableError( const tracked_objects::Location& from_here, const std::string& message) argument
219 OnUnrecoverableErrorImpl( const tracked_objects::Location& from_here, const std::string& message) argument
H A Dautofill_data_type_controller.cc305 const tracked_objects::Location& from_here,
312 from_here, message));
317 const tracked_objects::Location& from_here,
320 sync_service_->OnUnrecoverableError(from_here, message);
304 OnUnrecoverableError( const tracked_objects::Location& from_here, const std::string& message) argument
316 OnUnrecoverableErrorImpl( const tracked_objects::Location& from_here, const std::string& message) argument
H A Dtyped_url_data_type_controller.cc264 const tracked_objects::Location& from_here,
270 from_here, message));
274 const tracked_objects::Location& from_here,
278 sync_service_->OnUnrecoverableError(from_here, message);
263 OnUnrecoverableError( const tracked_objects::Location& from_here, const std::string& message) argument
273 OnUnrecoverableErrorImpl( const tracked_objects::Location& from_here, const std::string& message) argument
/external/chromium/chrome/browser/metrics/
H A Dthread_watcher.cc372 bool WatchDogThread::PostTask(const tracked_objects::Location& from_here, argument
374 return PostTaskHelper(from_here, task, 0);
378 bool WatchDogThread::PostDelayedTask(const tracked_objects::Location& from_here, argument
381 return PostTaskHelper(from_here, task, delay_ms);
386 const tracked_objects::Location& from_here,
395 message_loop->PostDelayedTask(from_here, task, delay_ms);
385 PostTaskHelper( const tracked_objects::Location& from_here, Task* task, int64 delay_ms) argument
/external/chromium/chrome/browser/chromeos/login/
H A Dcamera.cc580 void Camera::PostCameraTask(const tracked_objects::Location& from_here, argument
586 thread_->message_loop()->PostTask(from_here, task);
/external/chromium/chrome/browser/sync/
H A Dprofile_sync_service.cc473 const tracked_objects::Location& from_here,
478 new tracked_objects::Location(from_here.function_name(),
479 from_here.file_name(),
480 from_here.line_number()));
489 from_here.Write(true, true, &location);
472 OnUnrecoverableError( const tracked_objects::Location& from_here, const std::string& message) argument
/external/chromium/net/ocsp/
H A Dnss_ocsp.cc62 void PostTaskToIOLoop(const tracked_objects::Location& from_here, Task* task);
496 const tracked_objects::Location& from_here, Task* task) {
499 io_loop_->PostTask(from_here, task);
495 PostTaskToIOLoop( const tracked_objects::Location& from_here, Task* task) argument

Completed in 198 milliseconds