Searched defs:from_here (Results 26 - 50 of 121) sorted by relevance

12345

/external/chromium_org/base/
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
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
/external/chromium_org/base/task/
H A Dcancelable_task_tracker.h70 const tracked_objects::Location& from_here,
74 const tracked_objects::Location& from_here,
81 const tracked_objects::Location& from_here,
87 from_here,
79 PostTaskAndReplyWithResult( base::TaskRunner* task_runner, const tracked_objects::Location& from_here, const base::Callback<TaskReturnType(void)>& task, const base::Callback<void(ReplyArgType)>& reply) argument
/external/chromium_org/base/test/
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/chromium_org/cc/trees/
H A Dblocking_task_runner.cc34 bool BlockingTaskRunner::PostTask(const tracked_objects::Location& from_here, argument
39 return task_runner_->PostTask(from_here, task);
/external/chromium_org/chrome/browser/sync/glue/
H A Dautofill_data_type_controller.cc54 const tracked_objects::Location& from_here,
57 return BrowserThread::PostTask(BrowserThread::DB, from_here, task);
53 PostTaskOnBackendThread( const tracked_objects::Location& from_here, const base::Closure& task) argument
H A Dautofill_profile_data_type_controller.cc74 const tracked_objects::Location& from_here,
77 return BrowserThread::PostTask(BrowserThread::DB, from_here, task);
73 PostTaskOnBackendThread( const tracked_objects::Location& from_here, const base::Closure& task) argument
/external/chromium_org/media/cast/
H A Dcast_environment.cc46 const tracked_objects::Location& from_here,
48 return GetTaskRunner(identifier)->PostTask(from_here, task);
53 const tracked_objects::Location& from_here,
56 return GetTaskRunner(identifier)->PostDelayedTask(from_here, task, delay);
45 PostTask(ThreadId identifier, const tracked_objects::Location& from_here, const base::Closure& task) argument
51 PostDelayedTask( ThreadId identifier, const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
/external/chromium_org/media/cast/test/
H A Dfake_single_thread_task_runner.cc23 const tracked_objects::Location& from_here,
31 PostedTask posed_task(from_here,
94 const tracked_objects::Location& from_here,
22 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
93 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
/external/chromium_org/net/quic/test_tools/
H A Dtest_task_runner.cc22 bool TestTaskRunner::PostDelayedTask(const tracked_objects::Location& from_here, argument
27 PostedTask(from_here, task, clock_->NowInTicks(), delay,
/external/chromium_org/sync/api/
H A Dfake_syncable_service.cc59 const tracked_objects::Location& from_here,
58 ProcessSyncChanges( const tracked_objects::Location& from_here, const SyncChangeList& change_list) argument
/external/chromium_org/sync/internal_api/
H A Dwrite_transaction.cc15 WriteTransaction::WriteTransaction(const tracked_objects::Location& from_here, argument
19 transaction_ = new syncable::WriteTransaction(from_here, syncable::SYNCAPI,
23 WriteTransaction::WriteTransaction(const tracked_objects::Location& from_here, argument
28 transaction_ = new syncable::WriteTransaction(from_here,
H A Djs_mutation_event_observer.cc100 const tracked_objects::Location& from_here,
106 event_handler_.Call(from_here,
99 HandleJsEvent( const tracked_objects::Location& from_here, const std::string& name, const JsEventDetails& details) argument
H A Djs_sync_encryption_handler_observer.cc117 const tracked_objects::Location& from_here,
123 event_handler_.Call(from_here,
116 HandleJsEvent( const tracked_objects::Location& from_here, const std::string& name, const JsEventDetails& details) argument
H A Djs_sync_manager_observer.cc86 const tracked_objects::Location& from_here,
92 event_handler_.Call(from_here,
85 HandleJsEvent( const tracked_objects::Location& from_here, const std::string& name, const JsEventDetails& details) argument
/external/chromium_org/sync/syncable/
H A Dsyncable_base_transaction.cc60 BaseTransaction::BaseTransaction(const tracked_objects::Location& from_here, argument
64 : from_here_(from_here), name_(name), writer_(writer),
/external/chromium_org/base/mac/
H A Dlibdispatch_task_runner.cc20 const tracked_objects::Location& from_here,
50 const tracked_objects::Location& from_here,
53 return PostDelayedTask(from_here, task, delay);
19 PostDelayedTask( const tracked_objects::Location& from_here, const Closure& task, base::TimeDelta delay) argument
49 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const Closure& task, base::TimeDelta delay) argument
/external/chromium_org/base/message_loop/
H A Dincoming_task_queue.cc22 const tracked_objects::Location& from_here,
28 from_here, task, CalculateDelayedRuntime(delay), nestable);
21 AddToIncomingQueue( const tracked_objects::Location& from_here, const Closure& task, TimeDelta delay, bool nestable) argument
/external/chromium_org/base/threading/
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_file_system/drive_backend/
H A Dcallback_helper.h46 const tracked_objects::Location& from_here,
49 from_here_(from_here),
61 const tracked_objects::Location& from_here() const { return from_here_; } function in class:sync_file_system::drive_backend::internal::CallbackHolder
79 holder->from_here(), base::Bind(holder->callback()));
87 holder->from_here(), base::Bind(holder->callback(), RebindForward(a1)));
95 holder->from_here(), base::Bind(holder->callback(), RebindForward(a1),
105 holder->from_here(), base::Bind(holder->callback(), RebindForward(a1),
115 holder->from_here(), base::Bind(holder->callback(), RebindForward(a1),
125 holder->from_here(), base::Bind(holder->callback(), RebindForward(a1),
137 holder->from_here(), bas
45 CallbackHolder(const scoped_refptr<base::SequencedTaskRunner>& task_runner, const tracked_objects::Location& from_here, const base::Callback<T>& callback) argument
158 RelayCallbackToTaskRunner( const scoped_refptr<base::SequencedTaskRunner>& task_runner, const tracked_objects::Location& from_here, const base::Callback<T>& callback) argument
173 RelayCallbackToCurrentThread( const tracked_objects::Location& from_here, const base::Callback<T>& callback) argument
[all...]
/external/chromium_org/chrome/browser/sync_file_system/
H A Dsyncable_file_system_util.cc110 void RunSoon(const tracked_objects::Location& from_here, argument
112 base::MessageLoop::current()->PostTask(from_here, callback);
/external/chromium_org/chromecast/media/cma/filters/
H A Ddemuxer_stream_adapter.cc31 const tracked_objects::Location& from_here,
52 const tracked_objects::Location& from_here,
55 return task_runner_->PostTask(from_here, task);
51 PostMediaTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta timestamp) argument
/external/chromium_org/components/sync_driver/
H A Dfake_generic_change_processor.cc40 const tracked_objects::Location& from_here,
39 ProcessSyncChanges( const tracked_objects::Location& from_here, const syncer::SyncChangeList& change_list) 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/ppapi/proxy/
H A Dppb_message_loop_proxy.h57 tracked_objects::Location from_here; member in struct:ppapi::proxy::MessageLoopResource::TaskInfo
72 virtual void PostClosure(const tracked_objects::Location& from_here,

Completed in 1645 milliseconds

12345