Searched refs:from_here (Results 1 - 25 of 237) sorted by relevance

12345678910

/external/chromium_org/sync/util/
H A Dlogging.cc11 bool VlogIsOnForLocation(const tracked_objects::Location& from_here, argument
15 from_here.file_name(), ::strlen(from_here.file_name())));
H A Dlogging.h18 bool VlogIsOnForLocation(const tracked_objects::Location& from_here,
23 #define VLOG_LOC_STREAM(from_here, verbose_level) \
24 logging::LogMessage(from_here.file_name(), from_here.line_number(), \
27 #define DVLOG_LOC(from_here, verbose_level) \
29 VLOG_LOC_STREAM(from_here, verbose_level), \
32 ::syncer::VlogIsOnForLocation(from_here, verbose_level))) \
H A Dtest_unrecoverable_error_handler.cc16 const tracked_objects::Location& from_here,
18 ADD_FAILURE_AT(from_here.file_name(), from_here.line_number())
19 << from_here.function_name() << ": " << message;
15 OnUnrecoverableError( const tracked_objects::Location& from_here, const std::string& message) argument
/external/chromium_org/base/
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 Dtask_runner.cc23 virtual 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 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 Ddeferred_sequenced_task_runner.cc29 const tracked_objects::Location& from_here,
35 return target_task_runner_->PostDelayedTask(from_here, task, delay);
38 QueueDeferredTask(from_here, task, delay, false /* is_non_nestable */);
47 const tracked_objects::Location& from_here,
53 return target_task_runner_->PostNonNestableDelayedTask(from_here,
57 QueueDeferredTask(from_here, task, delay, true /* is_non_nestable */);
62 const tracked_objects::Location& from_here,
67 deferred_task.posted_from = from_here;
28 PostDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
46 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
61 QueueDeferredTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay, bool is_non_nestable) argument
/external/chromium_org/sync/internal_api/public/util/
H A Dweak_handle.cc27 const tracked_objects::Location& from_here,
29 if (!owner_loop_proxy_->PostTask(from_here, fn)) {
30 DVLOG(1) << "Could not post task from " << from_here.ToString();
26 PostToOwnerThread( const tracked_objects::Location& from_here, const base::Closure& fn) const argument
H A Dunrecoverable_error_handler.h20 virtual void OnUnrecoverableError(const tracked_objects::Location& from_here,
/external/chromium_org/base/message_loop/
H A Dmessage_loop_proxy_impl.cc22 const tracked_objects::Location& from_here,
25 DCHECK(!task.is_null()) << from_here.ToString();
26 return incoming_queue_->AddToIncomingQueue(from_here, task, delay, true);
30 const tracked_objects::Location& from_here,
33 DCHECK(!task.is_null()) << from_here.ToString();
34 return incoming_queue_->AddToIncomingQueue(from_here, task, delay, false);
21 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
29 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
/external/chromium_org/extensions/common/
H A Done_shot_event.cc20 TaskInfo(const tracked_objects::Location& from_here, argument
24 : from_here(from_here), runner(runner), task(task), delay(delay) {
27 tracked_objects::Location from_here; member in struct:extensions::OneShotEvent::TaskInfo
43 void OneShotEvent::Post(const tracked_objects::Location& from_here, argument
46 from_here, task, base::MessageLoopProxy::current(), base::TimeDelta());
49 void OneShotEvent::Post(const tracked_objects::Location& from_here, argument
52 PostImpl(from_here, task, runner, base::TimeDelta());
55 void OneShotEvent::PostDelayed(const tracked_objects::Location& from_here, argument
58 PostImpl(from_here, tas
82 PostImpl(const tracked_objects::Location& from_here, const base::Closure& task, const scoped_refptr<TaskRunner>& runner, const base::TimeDelta& delay) const argument
[all...]
/external/chromium_org/base/test/
H A Dnull_task_runner.cc14 const tracked_objects::Location& from_here,
21 const tracked_objects::Location& from_here,
13 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
20 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
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 Dnull_task_runner.h18 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
22 const tracked_objects::Location& from_here,
/external/chromium_org/base/threading/
H A Dpost_task_and_reply_impl.h30 bool PostTaskAndReply(const tracked_objects::Location& from_here,
35 virtual bool PostTask(const tracked_objects::Location& from_here,
H A Dpost_task_and_reply_impl.cc27 PostTaskAndReplyRelay(const tracked_objects::Location& from_here, argument
29 : from_here_(from_here),
75 const tracked_objects::Location& from_here,
79 new PostTaskAndReplyRelay(from_here, task, reply);
80 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.cc26 virtual bool PostTask(const tracked_objects::Location& from_here,
28 return WorkerPool::PostTask(from_here, task, task_is_slow_);
44 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
55 const tracked_objects::Location& from_here,
72 const tracked_objects::Location& from_here,
75 return PostDelayedTaskAssertZeroDelay(from_here, task, delay);
83 const tracked_objects::Location& from_here,
88 return WorkerPool::PostTask(from_here, task, tasks_are_slow_);
104 bool WorkerPool::PostTaskAndReply(const tracked_objects::Location& from_here, argument
115 from_here, tas
71 PostDelayedTask( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay) argument
82 PostDelayedTaskAssertZeroDelay( const tracked_objects::Location& from_here, const Closure& task, base::TimeDelta delay) argument
[all...]
H A Dworker_pool.h36 static bool PostTask(const tracked_objects::Location& from_here,
42 static bool PostTaskAndReply(const tracked_objects::Location& from_here,
/external/chromium_org/chrome/browser/printing/
H A Dprint_job_worker_owner.cc22 bool PrintJobWorkerOwner::PostTask(const tracked_objects::Location& from_here, argument
24 return task_runner_->PostTask(from_here, task);
/external/chromium_org/chrome/browser/sync/
H A Dbackend_unrecoverable_error_handler.cc23 const tracked_objects::Location& from_here,
27 from_here,
22 OnUnrecoverableError( const tracked_objects::Location& from_here, const std::string& message) argument
/external/chromium_org/content/browser/dom_storage/
H A Ddom_storage_task_runner.cc37 const tracked_objects::Location& from_here,
45 primary_sequence_token_, from_here, task,
52 this, from_here, task),
57 const tracked_objects::Location& from_here,
61 IDtoToken(sequence_id), from_here, task,
90 const tracked_objects::Location& from_here,
93 return message_loop_->PostTask(from_here, task);
97 const tracked_objects::Location& from_here,
100 return message_loop_->PostTask(from_here, task);
36 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
56 PostShutdownBlockingTask( const tracked_objects::Location& from_here, SequenceID sequence_id, const base::Closure& task) argument
89 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
96 PostShutdownBlockingTask( const tracked_objects::Location& from_here, SequenceID sequence_id, const base::Closure& task) argument
/external/chromium_org/components/sync_driver/
H A Dshared_change_processor_ref.cc18 const tracked_objects::Location& from_here,
20 return change_processor_->ProcessSyncChanges(from_here, change_list);
37 const tracked_objects::Location& from_here,
39 return change_processor_->CreateAndUploadError(from_here, message);
17 ProcessSyncChanges( const tracked_objects::Location& from_here, const syncer::SyncChangeList& change_list) argument
36 CreateAndUploadError( const tracked_objects::Location& from_here, const std::string& message) argument
/external/chromium_org/media/cast/test/
H A Dskewed_single_thread_task_runner.cc28 const tracked_objects::Location& from_here,
32 from_here,
42 const tracked_objects::Location& from_here,
46 from_here,
27 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
41 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
/external/chromium_org/remoting/base/
H A Dauto_thread_task_runner.cc20 const tracked_objects::Location& from_here,
23 CHECK(task_runner_->PostDelayedTask(from_here, task, delay));
28 const tracked_objects::Location& from_here,
31 CHECK(task_runner_->PostNonNestableDelayedTask(from_here, task, delay));
19 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
27 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
/external/chromium_org/sync/api/
H A Dsync_change_processor_wrapper_for_test.cc18 const tracked_objects::Location& from_here,
20 return wrapped_->ProcessSyncChanges(from_here, change_list);
17 ProcessSyncChanges( const tracked_objects::Location& from_here, const syncer::SyncChangeList& change_list) argument

Completed in 601 milliseconds

12345678910