HomeSort by relevance Sort by last modified time
    Searched full:scheduler (Results 26 - 50 of 649) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/sync/engine/
sync_scheduler_unittest.cc 154 SyncSchedulerImpl* scheduler() { return scheduler_.get(); } function in class:syncer::SyncSchedulerTest
186 scheduler()->Start(mode);
189 // This stops the scheduler synchronously.
202 scheduler()->ScheduleLocalNudge(zero(), nudge_types, FROM_HERE);
205 return scheduler()->IsBackingOff();
259 ACTION_P(StopScheduler, scheduler) {
260 scheduler->Stop();
286 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE);
298 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE);
322 scheduler()->ScheduleConfiguration(params)
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Scheduler.java 26 public abstract class Scheduler {
27 // All methods are core internal methods as Scheduler internals are only used by the GraphRunner.
31 Scheduler(FilterGraph graph) {
SyncRunner.java 33 private Scheduler mScheduler = null;
52 // Create the scheduler
53 if (Scheduler.class.isAssignableFrom(schedulerClass)) {
56 mScheduler = (Scheduler)schedulerConstructor.newInstance(graph);
58 throw new RuntimeException("Scheduler does not have constructor <init>(FilterGraph)!", e);
60 throw new RuntimeException("Could not instantiate the Scheduler instance!", e);
62 throw new RuntimeException("Cannot access Scheduler constructor!", e);
64 throw new RuntimeException("Scheduler constructor threw an exception", e);
66 throw new RuntimeException("Could not instantiate Scheduler", e);
69 throw new IllegalArgumentException("Class provided is not a Scheduler subclass!")
    [all...]
RandomScheduler.java 24 import android.filterfw.core.Scheduler;
29 public class RandomScheduler extends Scheduler {
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractScheduledServiceTest.java 19 import com.google.common.util.concurrent.AbstractScheduledService.Scheduler;
44 volatile Scheduler configuration = Scheduler.newFixedDelaySchedule(0, 10, TimeUnit.MILLISECONDS);
71 @Override protected Scheduler scheduler() { return configuration; } method in class:AbstractScheduledServiceTest.NullService
225 protected Scheduler scheduler() { method in class:AbstractScheduledServiceTest.TestService
253 Scheduler schedule = Scheduler.newFixedRateSchedule(initialDelay, delay, unit);
266 Scheduler schedule = Scheduler.newFixedDelaySchedule(initialDelay, delay, unit)
303 TestCustomScheduler scheduler = new TestCustomScheduler(); local
376 @Override protected Scheduler scheduler() { method in class:AbstractScheduledServiceTest.SchedulerTest.TestAbstractScheduledCustomService
422 @Override protected Scheduler scheduler() { method in class:TestFailingCustomScheduledService
    [all...]
  /external/chromium_org/tools/gn/
setup.h 17 #include "tools/gn/scheduler.h"
34 // Returns the scheduler. This is virtual since only the main setup has a
35 // scheduler and the derived ones just store pointers.
36 virtual Scheduler* GetScheduler() = 0;
81 Scheduler& scheduler() { return scheduler_; } function in class:Setup
83 virtual Scheduler* GetScheduler() OVERRIDE;
101 Scheduler scheduler_;
148 virtual Scheduler* GetScheduler() OVERRIDE;
151 Scheduler* scheduler_
    [all...]
config.cc 9 #include "tools/gn/scheduler.h"
  /external/llvm/include/llvm/CodeGen/
SchedulerRegistry.h 10 // This file contains the implementation for instruction scheduler function
67 /// reduction list scheduler.
71 /// createBURRListDAGScheduler - This creates a bottom up list scheduler that
77 /// aware list scheduler that make use of latency information to avoid stalls
84 /// aware list scheduler that tries to increase instruction level parallelism
90 /// createFastDAGScheduler - This creates a "fast" scheduler.
95 /// createVLIWDAGScheduler - Scheduler for VLIW targets. This creates top down
96 /// DFA driven list scheduler with clustering heuristic to control
100 /// createDefaultScheduler - This creates an instruction scheduler appropriate
105 /// createDAGLinearizer - This creates a "no-scheduling" scheduler whic
    [all...]
  /external/chromium_org/cc/
cc.gyp 400 'scheduler/delay_based_time_source.cc',
401 'scheduler/delay_based_time_source.h',
402 'scheduler/frame_rate_controller.cc',
403 'scheduler/frame_rate_controller.h',
404 'scheduler/rolling_time_delta_history.cc',
405 'scheduler/rolling_time_delta_history.h',
406 'scheduler/scheduler.cc',
407 'scheduler/scheduler.h'
    [all...]
  /external/llvm/test/CodeGen/X86/
pr7882.ll 3 ; make sure scheduler honors the flags clobber. PR 7882.
2012-05-17-TwoAddressBug.ll 5 ; because of poor pre-RA schedule. That will be fixed by MI scheduler.
tailcallstack64.ll 1 ; RUN: llc < %s -tailcallopt -mcpu=generic -mtriple=x86_64-linux -post-RA-scheduler=true | FileCheck %s
2 ; RUN: llc < %s -tailcallopt -mcpu=generic -mtriple=x86_64-win32 -post-RA-scheduler=true | FileCheck %s
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractScheduledService.java 42 * {@link Scheduler}. When this service is asked to stop via {@link #stop} or {@link #stopAndWait},
77 * protected Scheduler scheduler() {
78 * return Scheduler.newFixedRateSchedule(0, 1, TimeUnit.SECONDS);
94 * A scheduler defines the policy for how the {@link AbstractScheduledService} should run its
98 * methods, these provide {@link Scheduler} instances for the common use case of running the
100 * {@link CustomScheduler} abstract class in preference to creating your own {@link Scheduler}
106 public abstract static class Scheduler {
108 * Returns a {@link Scheduler} that schedules the task using the
116 public static Scheduler newFixedDelaySchedule(final long initialDelay, final long delay,
    [all...]
  /external/chromium_org/cc/test/
scheduler_test_common.h 11 #include "cc/scheduler/delay_based_time_source.h"
12 #include "cc/scheduler/frame_rate_controller.h"
  /external/chromium_org/chrome/browser/metrics/variations/
variations_request_scheduler.h 25 // Resets the scheduler if it is currently on a timer.
37 // |task| is the closure to call when the scheduler deems ready.
variations_request_scheduler_mobile.h 19 // |task} is the closure to call when the scheduler deems ready. |local_state|
  /external/chromium_org/gpu/command_buffer/service/
gpu_scheduler.h 67 // Sets whether commands should be processed by this scheduler. Setting to
69 // scheduler is currently scheduled is "reference counted". Every call with
73 // Returns whether the scheduler is currently able to process more commands.
76 // Returns whether the scheduler needs to be polled again in the future.
81 // Sets a callback that is invoked just before scheduler is rescheduled
110 // Artificially reschedule if the scheduler is still unscheduled after a
135 // The number of times this scheduler has been artificially rescheduled on
140 // the scheduler is rescheduled.
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
SchedulerService.java 32 status.setLatestEventInfo(this, "Scheduler Test running",
33 "Scheduler Test running", PendingIntent.getActivity(this, 0,
  /external/iproute2/man/man8/
tc-drr.8 3 drr \- deficit round robin scheduler
12 The Deficit Round Robin Scheduler is a classful queuing discipline as
30 and the scheduler moves on to the next class in the active list.
36 Amount of bytes a flow is allowed to dequeue before the scheduler moves to
55 Like SFQ, DRR is only useful when it owns the queue \-\- it is a pure scheduler and does
  /external/chromium_org/content/common/gpu/
image_transport_surface.cc 140 gpu::GpuScheduler* scheduler = Scheduler(); local
141 if (!scheduler)
144 scheduler->SetScheduled(is_scheduled);
148 gpu::GpuScheduler* scheduler = Scheduler(); local
149 DCHECK(scheduler);
151 scheduler->DeferToFence(task);
177 gpu::GpuScheduler* ImageTransportHelper::Scheduler() {
180 return stub_->scheduler();
    [all...]
  /external/chromium_org/chrome/browser/metrics/
metrics_reporting_scheduler.h 14 // Scheduler task to drive a MetricsService object's uploading.
20 // Starts scheduling uploads. This in a no-op if the scheduler is already
61 // Indicates that the scheduler is running (i.e., that Start has been called
  /external/chromium_org/components/policy/core/common/cloud/
cloud_policy_core.h 47 // Called after the refresh scheduler is started.
86 // Starts a refresh scheduler in case none is running yet.
101 // Updates the refresh scheduler on refresh delay changes.
  /developers/samples/android/background/alarms/Scheduler/src/com/example/android/scheduler/
SampleBootReceiver.java 1 package com.example.android.scheduler;
  /external/llvm/test/CodeGen/R600/
vtx-schedule.ll 3 ; This test is for a scheduler bug where VTX_READ instructions that used
  /developers/samples/android/background/alarms/Scheduler/res/values/
strings.xml 18 <string name="app_name">Scheduler</string>
19 <string name="intro_message">Welcome to <b>Scheduler</b>!

Completed in 500 milliseconds

12 3 4 5 6 7 8 91011>>