HomeSort by relevance Sort by last modified time
    Searched refs:from_here (Results 1 - 25 of 254) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/sync/util/
logging.cc 11 bool VlogIsOnForLocation(const tracked_objects::Location& from_here,
15 from_here.file_name(), ::strlen(from_here.file_name())));
logging.h 18 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))) \
test_unrecoverable_error_handler.cc 16 const tracked_objects::Location& from_here,
18 ADD_FAILURE_AT(from_here.file_name(), from_here.line_number())
19 << from_here.function_name() << ": " << message;
  /external/chromium_org/base/
sequenced_task_runner.cc 12 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));
sequenced_task_runner.h 111 bool PostNonNestableTask(const tracked_objects::Location& from_here,
115 const tracked_objects::Location& from_here,
123 bool DeleteSoon(const tracked_objects::Location& from_here,
127 this, from_here, object);
134 bool ReleaseSoon(const tracked_objects::Location& from_here,
138 this, from_here, object);
148 bool DeleteSoonInternal(const tracked_objects::Location& from_here,
152 bool ReleaseSoonInternal(const tracked_objects::Location& from_here,
task_runner.cc 23 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,
45 return PostDelayedTask(from_here, task, base::TimeDelta());
49 const tracked_objects::Location& from_here,
53 from_here, task, reply);
  /external/chromium/base/
message_loop_proxy.h 34 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,
51 return PostNonNestableTask(from_here, new DeleteTask<T>(object));
54 bool ReleaseSoon(const tracked_objects::Location& from_here,
56 return PostNonNestableTask(from_here, new ReleaseTask<T>(object));
message_loop_proxy_impl.cc 21 bool MessageLoopProxyImpl::PostTask(const tracked_objects::Location& from_here,
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);
71 target_message_loop_->DeleteSoon(FROM_HERE, this);
85 const tracked_objects::Location& from_here, Task* task, int64 delay_ms
    [all...]
message_loop_proxy_impl.h 25 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/threading/
post_task_and_reply_impl.h 30 bool PostTaskAndReply(const tracked_objects::Location& from_here,
35 virtual bool PostTask(const tracked_objects::Location& from_here,
worker_pool.h 36 static bool PostTask(const tracked_objects::Location& from_here,
42 static bool PostTaskAndReply(const tracked_objects::Location& from_here,
post_task_and_reply_impl.cc 26 PostTaskAndReplyRelay(const tracked_objects::Location& from_here,
28 : from_here_(from_here),
74 const tracked_objects::Location& from_here,
78 new PostTaskAndReplyRelay(from_here, task, reply);
79 if (!PostTask(from_here, Bind(&PostTaskAndReplyRelay::Run,
worker_pool.cc 25 virtual bool PostTask(const tracked_objects::Location& from_here,
27 return WorkerPool::PostTask(from_here, task, task_is_slow_);
43 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
54 const tracked_objects::Location& from_here,
71 const tracked_objects::Location& from_here,
74 return PostDelayedTaskAssertZeroDelay(from_here, task, delay);
82 const tracked_objects::Location& from_here,
87 return WorkerPool::PostTask(from_here, task, tasks_are_slow_);
103 bool WorkerPool::PostTaskAndReply(const tracked_objects::Location& from_here,
108 from_here, task, reply)
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
shared_change_processor_ref.cc 18 const tracked_objects::Location& from_here,
20 return change_processor_->ProcessSyncChanges(from_here, change_list);
24 const tracked_objects::Location& from_here,
26 return change_processor_->CreateAndUploadError(from_here, message);
  /external/chromium_org/sync/internal_api/public/util/
weak_handle.cc 27 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();
unrecoverable_error_handler.h 20 virtual void OnUnrecoverableError(const tracked_objects::Location& from_here,
  /external/chromium_org/extensions/common/
one_shot_event.cc 18 TaskInfo(const tracked_objects::Location& from_here,
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,
38 Post(from_here, task, base::MessageLoopProxy::current());
41 void OneShotEvent::Post(const tracked_objects::Location& from_here,
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_[i].task)
    [all...]
  /external/chromium_org/base/message_loop/
message_loop_proxy_impl.cc 22 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);
  /external/chromium/base/threading/
worker_pool.h 30 static bool PostTask(const tracked_objects::Location& from_here,
  /external/chromium/chrome/browser/sync/
unrecoverable_error_handler.h 21 virtual void OnUnrecoverableError(const tracked_objects::Location& from_here,
  /external/chromium_org/sync/internal_api/
write_transaction.cc 13 WriteTransaction::WriteTransaction(const tracked_objects::Location& from_here,
17 transaction_ = new syncable::WriteTransaction(from_here, syncable::SYNCAPI,
21 WriteTransaction::WriteTransaction(const tracked_objects::Location& from_here,
26 transaction_ = new syncable::WriteTransaction(from_here,
  /external/chromium_org/base/test/
null_task_runner.cc 14 const tracked_objects::Location& from_here,
21 const tracked_objects::Location& from_here,
null_task_runner.h 18 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
22 const tracked_objects::Location& from_here,
  /external/chromium_org/chrome/browser/sync/
backend_unrecoverable_error_handler.cc 22 const tracked_objects::Location& from_here,
24 service_.Call(FROM_HERE,
26 from_here,
  /external/chromium_org/content/browser/dom_storage/
dom_storage_task_runner.cc 37 const tracked_objects::Location& from_here,
45 primary_sequence_token_, from_here, task,
50 FROM_HERE,
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)
    [all...]

Completed in 1627 milliseconds

1 2 3 4 5 6 7 8 91011