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

1 2 3

  /external/chromium_org/third_party/leveldatabase/src/util/
env_test.cc 30 env_->Schedule(&SetBool, &called);
52 // Schedule in different order than start time
57 env_->Schedule(&CB::Run, &cb1);
58 env_->Schedule(&CB::Run, &cb2);
59 env_->Schedule(&CB::Run, &cb3);
60 env_->Schedule(&CB::Run, &cb4);
  /external/chromium_org/chrome/browser/history/android/
android_history_provider_service.cc 34 hs->Schedule(HistoryService::PRIORITY_NORMAL,
55 hs->Schedule(HistoryService::PRIORITY_NORMAL,
75 hs->Schedule(HistoryService::PRIORITY_NORMAL,
94 hs->Schedule(HistoryService::PRIORITY_NORMAL,
113 hs->Schedule(HistoryService::PRIORITY_NORMAL,
134 hs->Schedule(HistoryService::PRIORITY_NORMAL,
165 hs->Schedule(HistoryService::PRIORITY_NORMAL,
185 hs->Schedule(HistoryService::PRIORITY_NORMAL,
205 hs->Schedule(HistoryService::PRIORITY_NORMAL,
227 hs->Schedule(HistoryService::PRIORITY_NORMAL
    [all...]
  /external/chromium_org/sync/notifier/
sync_system_resources_unittest.cc 64 sync_system_resources_.internal_scheduler()->Schedule(
72 sync_system_resources_.listener_scheduler()->Schedule(
80 sync_system_resources_.internal_scheduler()->Schedule(
134 sync_system_resources_.internal_scheduler()->Schedule(
143 sync_system_resources_.listener_scheduler()->Schedule(
154 sync_system_resources_.internal_scheduler()->Schedule(
sync_system_resources.h 57 virtual void Schedule(invalidation::TimeDelta delay,
sync_system_resources.cc 93 void SyncInvalidationScheduler::Schedule(invalidation::TimeDelta delay,
153 scheduler_->Schedule(
  /external/chromium/chrome/browser/net/
sdch_dictionary_fetcher.h 35 virtual void Schedule(const GURL& dictionary_url);
38 // Delay in ms between Schedule and actual download.
sdch_dictionary_fetcher.cc 24 void SdchDictionaryFetcher::Schedule(const GURL& dictionary_url) {
  /external/chromium/chrome/browser/password_manager/
password_store.cc 69 return Schedule(&PasswordStore::GetLoginsImpl, consumer, form);
74 return Schedule(&PasswordStore::GetAutofillableLoginsImpl, consumer);
79 return Schedule(&PasswordStore::GetBlacklistLoginsImpl, consumer);
111 CancelableRequestProvider::Handle PasswordStore::Schedule(
122 CancelableRequestProvider::Handle PasswordStore::Schedule(
password_store.h 132 // Schedule the given |task| to be run in the PasswordStore's own thread.
169 // Schedule the given |func| to be run in the PasswordStore's own thread with
172 Handle Schedule(BackendFunc func, PasswordStoreConsumer* consumer);
174 // Schedule the given |func| to be run in the PasswordStore's own thread with
177 Handle Schedule(BackendFunc func, PasswordStoreConsumer* consumer,
  /external/chromium/chrome/browser/history/
history.cc 186 // a reference to the backend. Then we release our reference, then we schedule
264 return Schedule(PRIORITY_UI, &HistoryBackend::GetMostRecentKeywordSearchTerms,
281 return Schedule(PRIORITY_UI, &HistoryBackend::ProcessDBTask, consumer,
290 return Schedule(PRIORITY_UI, &HistoryBackend::QuerySegmentUsage,
447 return Schedule(PRIORITY_NORMAL, &HistoryBackend::GetPageThumbnail, consumer,
454 Schedule(PRIORITY_NORMAL, &HistoryBackend::GetFavicon, NULL, request,
463 Schedule(PRIORITY_NORMAL, &HistoryBackend::UpdateFaviconMappingAndFetch, NULL,
471 Schedule(PRIORITY_NORMAL, &HistoryBackend::GetFaviconForURL, NULL, request,
508 return Schedule(PRIORITY_UI, &HistoryBackend::QueryURL, consumer,
520 return Schedule(PRIORITY_NORMAL, &HistoryBackend::CreateDownload, consumer
    [all...]
history.h 615 // Called by the HistoryURLProvider class to schedule an autocomplete, it
686 // Call to schedule a given task for running on the history thread with the
690 // Schedule ------------------------------------------------------------------
697 Handle Schedule(SchedulePriority priority,
712 Handle Schedule(SchedulePriority priority,
    [all...]
  /external/chromium_org/chrome/browser/net/
sdch_dictionary_fetcher.h 42 virtual void Schedule(const GURL& dictionary_url) OVERRIDE;
45 // Delay in ms between Schedule and actual download.
sdch_dictionary_fetcher.cc 33 void SdchDictionaryFetcher::Schedule(const GURL& dictionary_url) {
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractScheduledServiceTest.java 253 Scheduler schedule = Scheduler.newFixedRateSchedule(initialDelay, delay, unit); local
254 schedule.schedule(null, new ScheduledThreadPoolExecutor(1) {
266 Scheduler schedule = Scheduler.newFixedDelaySchedule(initialDelay, delay, unit); local
267 schedule.schedule(null, new ScheduledThreadPoolExecutor(10) {
281 protected Schedule getNextSchedule() throws Exception {
283 return new Schedule(0, TimeUnit.SECONDS);
304 Future<?> future = scheduler.schedule(null, Executors.newScheduledThreadPool(10), task);
333 protected Schedule getNextSchedule() throws Exception
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
password_store.cc 158 return Schedule(&PasswordStore::GetAutofillableLoginsImpl, consumer);
163 return Schedule(&PasswordStore::GetBlacklistLoginsImpl, consumer);
195 CancelableRequestProvider::Handle PasswordStore::Schedule(
208 CancelableRequestProvider::Handle PasswordStore::Schedule(
password_store.h 154 // Schedule the given |task| to be run in the PasswordStore's task thread. By
199 // Schedule the given |func| to be run in the PasswordStore's own thread with
202 Handle Schedule(BackendFunc func, PasswordStoreConsumer* consumer);
204 // Schedule the given |func| to be run in the PasswordStore's own thread with
208 Handle Schedule(BackendFunc func,
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractScheduledService.java 40 * the {@link #startUp} and {@link #shutDown} methods and also uses that service to schedule the
48 * #runOneIteration} takes longer than its schedule defines, then subsequent executions may start
99 * service with a fixed schedule. If more flexibility is needed then consider subclassing the
120 public Future<?> schedule(AbstractService service, ScheduledExecutorService executor,
139 public Future<?> schedule(AbstractService service, ScheduledExecutorService executor,
147 abstract Future<?> schedule(AbstractService service, ScheduledExecutorService executor,
192 runningTask = scheduler().schedule(delegate, executorService, task);
296 * use a dynamically changing schedule. After every execution of the task, assuming it hasn't
358 final Schedule schedule = CustomScheduler.this.getNextSchedule()
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGVLIW.cpp 11 // The basic approach uses a priority queue of available nodes to schedule.
13 // order), checked for legality to schedule, and emitted if legal.
15 // Nodes may not be legal to schedule either due to structural hazards (e.g.
83 void Schedule();
93 /// Schedule - Schedule the DAG using list scheduling.
94 void ScheduleDAGVLIW::Schedule() {
150 /// scheduleNodeTopDown - Add the node to the schedule. Decrement the pending
184 // priority. If it is not ready put it back. Schedule the node.
237 // If we found a node to schedule, do it now
    [all...]
ScheduleDAGSDNodes.h 42 /// The schedule. Null SUnit*'s represent noop instructions.
105 /// Schedule - Order nodes according to selected style, filling
108 virtual void Schedule() = 0;
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
env.h 124 virtual void Schedule(
309 void Schedule(void (*f)(void*), void* a) {
310 return target_->Schedule(f, a);
  /external/chromium_org/webkit/browser/appcache/
appcache_storage_impl.cc 147 void Schedule();
181 void AppCacheStorageImpl::DatabaseTask::Schedule() {
627 Schedule();
646 Schedule();
    [all...]
  /external/chromium_org/chrome/browser/history/
history_service.cc 277 // schedule the task to run. After the task runs, it will delete its reference
404 return Schedule(PRIORITY_UI, &HistoryBackend::GetMostRecentKeywordSearchTerms,
422 Schedule(PRIORITY_UI, &HistoryBackend::ProcessDBTask, consumer, request);
431 return Schedule(PRIORITY_UI, &HistoryBackend::QuerySegmentUsage,
450 return Schedule(PRIORITY_UI, &HistoryBackend::QuerySegmentDuration,
601 return Schedule(PRIORITY_NORMAL, &HistoryBackend::GetPageThumbnail, consumer,
767 return Schedule(PRIORITY_UI, &HistoryBackend::QueryURL, consumer,
844 return Schedule(PRIORITY_UI, &HistoryBackend::QueryHistory, consumer,
    [all...]
history_service.h 671 // Called by the HistoryURLProvider class to schedule an autocomplete, it
    [all...]
  /external/chromium/net/base/
sdch_manager.h 47 // The Schedule() method is called when there is a need to get a dictionary
50 virtual void Schedule(const GURL& dictionary_url) = 0;
287 // Schedule the URL fetching to load a dictionary. This will always return
  /external/chromium_org/net/base/
sdch_manager.h 48 // The Schedule() method is called when there is a need to get a dictionary
51 virtual void Schedule(const GURL& dictionary_url) = 0;
286 // Schedule the URL fetching to load a dictionary. This will always return

Completed in 613 milliseconds

1 2 3