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

1 2 3 4 5

  /libcore/ojluni/src/main/java/java/util/concurrent/
ScheduledExecutorService.java 44 * execution. The {@code scheduleAtFixedRate} and
84 * scheduler.scheduleAtFixedRate(beeper, 10, 10, SECONDS);
168 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command,
Executors.java 690 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) {
691 return e.scheduleAtFixedRate(command, initialDelay, period, unit);
  /external/guava/guava/src/com/google/common/util/concurrent/
WrappingScheduledExecutorService.java 51 public final ScheduledFuture<?> scheduleAtFixedRate(
53 return delegate.scheduleAtFixedRate(wrapTask(command), initialDelay, period, unit);
ListeningScheduledExecutorService.java 50 ListenableScheduledFuture<?> scheduleAtFixedRate(
AbstractScheduledService.java 134 * {@link ScheduledExecutorService#scheduleAtFixedRate} method.
146 return executor.scheduleAtFixedRate(task, initialDelay, period, unit);
  /packages/services/Car/service/src/com/android/car/systeminterface/
TimeInterface.java 49 mExecutor.scheduleAtFixedRate(r, delayMs, delayMs, TimeUnit.MILLISECONDS);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
TimerTest.java 738 * java.util.Timer#scheduleAtFixedRate(java.util.TimerTask, long,
749 t.scheduleAtFixedRate(testTask, 100, 100);
750 fail("scheduleAtFixedRate after Timer.cancel() should throw exception");
759 t.scheduleAtFixedRate(testTask, -100, 100);
760 fail("scheduleAtFixedRate with negative delay should throw IllegalArgumentException");
770 t.scheduleAtFixedRate(testTask, 100, -100);
771 fail("scheduleAtFixedRate with negative period should throw IllegalArgumentException");
779 t.scheduleAtFixedRate(testTask, 100, 100);
821 t.scheduleAtFixedRate(slowThenFastTask, 100, 100);
834 * java.util.Timer#scheduleAtFixedRate(java.util.TimerTask
    [all...]
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestTimer.java 110 public void scheduleAtFixedRate(TimerTask task, Date firstTime, long period) {
115 public void scheduleAtFixedRate(TimerTask task, long delay, long period) {
  /external/jmdns/src/javax/jmdns/impl/
DNSTaskStarter.java 243 * @see java.util.Timer#scheduleAtFixedRate(java.util.TimerTask, long, long)
246 public synchronized void scheduleAtFixedRate(TimerTask task, long delay, long period) {
248 super.scheduleAtFixedRate(task, delay, period);
253 * @see java.util.Timer#scheduleAtFixedRate(java.util.TimerTask, java.util.Date, long)
256 public synchronized void scheduleAtFixedRate(TimerTask task, Date firstTime, long period) {
258 super.scheduleAtFixedRate(task, firstTime, period);
  /developers/build/prebuilts/gradle/JumpingJack/Wearable/src/main/java/com/example/android/wearable/jumpingjack/fragments/
CounterFragment.java 77 mAnimationTimer.scheduleAtFixedRate(mAnimationTask, ANIMATION_INTERVAL_MS,
  /developers/samples/android/wearable/wear/JumpingJack/Wearable/src/main/java/com/example/android/wearable/jumpingjack/fragments/
CounterFragment.java 77 mAnimationTimer.scheduleAtFixedRate(mAnimationTask, ANIMATION_INTERVAL_MS,
  /development/samples/browseable/JumpingJack/src/com.example.android.wearable.jumpingjack/fragments/
CounterFragment.java 77 mAnimationTimer.scheduleAtFixedRate(mAnimationTask, ANIMATION_INTERVAL_MS,
  /platform_testing/libraries/device-collectors/src/main/java/android/device/collectors/
ScheduledRunMetricListener.java 68 mTimer.scheduleAtFixedRate(timerTask, 0, getIntervalFromArgs());
  /tools/tradefederation/core/prod-tests/src/com/android/monkey/
MonkeyPairedBase.java 77 mScheduler.scheduleAtFixedRate(new Runnable() {
  /external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
TestingExecutors.java 61 * {@code invokeAny}, {@code schedule}, {@code scheduleAtFixedRate}, and
77 * {@code scheduleAtFixedRate} and {@code scheduleWithFixedDelay} are not
140 @Override public ListenableScheduledFuture<?> scheduleAtFixedRate(
  /packages/services/Car/tests/obd2_app/src/com/google/android/car/obd2app/
MainActivity.java 109 mTimer.scheduleAtFixedRate(mCollectionTask, delay, delay);
  /tools/tradefederation/core/src/com/android/tradefed/device/metric/
ScheduledDeviceMetricCollector.java 78 timer.scheduleAtFixedRate(timerTask, 0, mIntervalMs);
ScheduleMultipleDeviceMetricCollector.java 135 mTimer.scheduleAtFixedRate(timerTask, 0, mScheduleRate);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
WrappingScheduledExecutorServiceTest.java 61 testExecutor.scheduleAtFixedRate(DO_NOTHING, 3, 7, TimeUnit.SECONDS);
62 mock.assertLastMethodCalled("scheduleAtFixedRate", 3, 7, TimeUnit.SECONDS);
142 @Override public ScheduledFuture<?> scheduleAtFixedRate(
145 lastMethodCalled = "scheduleAtFixedRate";
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
ScriptProcessMonitor.java 72 mTimer.scheduleAtFixedRate(mUpdater, 0, UPDATE_INTERVAL_SECS * 1000);
110 mTimer.scheduleAtFixedRate(mUpdater, 0, UPDATE_INTERVAL_SECS * 1000);
  /libcore/ojluni/src/main/java/java/util/
Timer.java 330 public void scheduleAtFixedRate(TimerTask task, long delay, long period) {
373 public void scheduleAtFixedRate(TimerTask task, Date firstTime,
  /frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/perf/
TimedStatement.java 147 executorService.scheduleAtFixedRate(() -> {
  /frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
MainActivity.java 66 mTimer.scheduleAtFixedRate(new TimerTask() {
  /frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
MainActivity.java 79 mTimer.scheduleAtFixedRate(new TimerTask() {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/Path/
RobustnessPath.java 85 timer.scheduleAtFixedRate(new TimerTask() {

Completed in 477 milliseconds

1 2 3 4 5