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

1234567891011

/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,
/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/extensions/common/
H A Done_shot_event.cc18 TaskInfo(const tracked_objects::Location& from_here, argument
21 : from_here(from_here), runner(runner), task(task) {
24 tracked_objects::Location from_here; member in struct:extensions::OneShotEvent::TaskInfo
36 void OneShotEvent::Post(const tracked_objects::Location& from_here, argument
38 Post(from_here, task, base::MessageLoopProxy::current());
41 void OneShotEvent::Post(const tracked_objects::Location& from_here, argument
47 runner->PostTask(from_here, task);
49 tasks_.push_back(TaskInfo(from_here, runner, task));
66 tasks_[i].runner->PostTask(tasks_[i].from_here, tasks
[all...]
/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/chrome/browser/sync/glue/
H A Dshared_change_processor_ref.cc18 const tracked_objects::Location& from_here,
20 return change_processor_->ProcessSyncChanges(from_here, change_list);
29 const tracked_objects::Location& from_here,
31 return change_processor_->CreateAndUploadError(from_here, message);
17 ProcessSyncChanges( const tracked_objects::Location& from_here, const syncer::SyncChangeList& change_list) argument
28 CreateAndUploadError( const tracked_objects::Location& from_here, const std::string& message) argument
/external/chromium_org/sync/internal_api/
H A Dwrite_transaction.cc13 WriteTransaction::WriteTransaction(const tracked_objects::Location& from_here, argument
17 transaction_ = new syncable::WriteTransaction(from_here, syncable::SYNCAPI,
21 WriteTransaction::WriteTransaction(const tracked_objects::Location& from_here, argument
26 transaction_ = new syncable::WriteTransaction(from_here,
/external/chromium/base/
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_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 Dmessage_loop_proxy_impl.h25 virtual bool PostTask(const tracked_objects::Location& from_here,
27 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
29 virtual bool PostNonNestableTask(const tracked_objects::Location& from_here,
32 const tracked_objects::Location& from_here,
47 bool PostTaskHelper(const tracked_objects::Location& from_here,
/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
/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...]
/external/chromium_org/chrome/browser/sync/
H A Dbackend_unrecoverable_error_handler.cc22 const tracked_objects::Location& from_here,
26 from_here,
21 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/base/threading/
H A Dworker_pool.h30 static bool PostTask(const tracked_objects::Location& from_here,
H A Dworker_pool_win.cc23 bool WorkerPool::PostTask(const tracked_objects::Location& from_here, argument
25 task->SetBirthPlace(from_here);
/external/chromium/chrome/browser/sync/
H A Dunrecoverable_error_handler.h21 virtual void OnUnrecoverableError(const tracked_objects::Location& from_here,
/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

Completed in 2709 milliseconds

1234567891011