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

12345

/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 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 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 Dsequenced_task_runner_helpers.h83 const tracked_objects::Location& from_here,
86 from_here, &DeleteHelper<T>::DoDelete, object);
99 const tracked_objects::Location& from_here,
102 from_here, &ReleaseHelper<T>::DoRelease, object);
81 DeleteViaSequencedTaskRunner( SequencedTaskRunnerType* sequenced_task_runner, const tracked_objects::Location& from_here, const T* object) argument
97 ReleaseViaSequencedTaskRunner( SequencedTaskRunnerType* sequenced_task_runner, const tracked_objects::Location& from_here, const T* object) argument
H A Dtask_runner_util.h57 const tracked_objects::Location& from_here,
62 from_here,
55 PostTaskAndReplyWithResult( TaskRunner* task_runner, const tracked_objects::Location& from_here, const Callback<TaskReturnType(void)>& task, const Callback<void(ReplyArgType)>& reply) argument
/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/mojo/system/
H A Dtest_utils.cc28 const tracked_objects::Location& from_here,
31 task_runner->PostTask(from_here,
27 PostTaskAndWait(scoped_refptr<base::TaskRunner> task_runner, const tracked_objects::Location& from_here, const base::Closure& task) 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
H A Dfake_sync_change_processor.cc16 const tracked_objects::Location& from_here,
15 ProcessSyncChanges( const tracked_objects::Location& from_here, const syncer::SyncChangeList& change_list) argument
H A Dsync_change.cc15 const tracked_objects::Location& from_here,
18 : location_(from_here),
14 SyncChange( const tracked_objects::Location& from_here, SyncChangeType change_type, const SyncData& sync_data) 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
/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/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,
/external/chromium_org/base/threading/
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_win.cc65 bool WorkerPool::PostTask(const tracked_objects::Location& from_here, argument
67 PendingTask* pending_task = new PendingTask(from_here, task);
/external/chromium_org/chrome/browser/sync/glue/
H A Dextension_setting_data_type_controller.cc48 const tracked_objects::Location& from_here,
51 return BrowserThread::PostTask(BrowserThread::FILE, from_here, task);
47 PostTaskOnBackendThread( const tracked_objects::Location& from_here, const base::Closure& task) argument
H A Dpassword_data_type_controller.cc42 const tracked_objects::Location& from_here,
41 PostTaskOnBackendThread( const tracked_objects::Location& from_here, 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/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/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/internal_api/
H A Dread_transaction.cc14 ReadTransaction::ReadTransaction(const tracked_objects::Location& from_here, argument
19 transaction_ = new syncable::ReadTransaction(from_here,

Completed in 1237 milliseconds

12345