Searched defs:schedule (Results 1 - 18 of 18) sorted by relevance

/frameworks/base/services/core/java/com/android/server/
H A DPreloadsFileCacheExpirationJobService.java50 public static void schedule(Context context) { method in class:PreloadsFileCacheExpirationJobService
71 jobScheduler.schedule(expirationJob);
H A DPruneInstantAppsJobService.java37 public static void schedule(Context context) { method in class:PruneInstantAppsJobService
45 jobScheduler.schedule(pruneJob);
/frameworks/base/core/java/android/app/
H A DJobSchedulerImpl.java42 public int schedule(JobInfo job) { method in class:JobSchedulerImpl
44 return mBinder.schedule(job);
/frameworks/base/core/java/android/app/job/
H A DJobScheduler.java41 * JobScheduler with {@link #schedule(JobInfo)}. When the criteria declared are met, the
70 * Returned from {@link #schedule(JobInfo)} when an invalid parameter was supplied. This can occur
76 * Returned from {@link #schedule(JobInfo)} if this job has been successfully scheduled.
87 * you can schedule.
88 * @return the result of the schedule request.
90 public abstract @Result int schedule(@NonNull JobInfo job); method in class:JobScheduler
93 * Similar to {@link #schedule}, but allows you to enqueue work for a new <em>or existing</em>
105 * enqueue. This will allow the system to optimally schedule work along with any pending
123 * you can schedule.
/frameworks/base/services/backup/java/com/android/server/backup/
H A DFullBackupJob.java37 public static void schedule(Context ctx, long minDelay) { method in class:FullBackupJob
46 js.schedule(builder.build());
H A DKeyValueBackupJob.java56 public static void schedule(Context ctx) { method in class:KeyValueBackupJob
57 schedule(ctx, 0);
60 public static void schedule(Context ctx, long delay) { method in class:KeyValueBackupJob
76 js.schedule(builder.build());
/frameworks/base/core/java/com/android/internal/util/
H A DWakeupMessage.java79 * the device when it goes off. If schedule is called multiple times without the message being
82 public synchronized void schedule(long when) { method in class:WakeupMessage
/frameworks/base/tools/aapt/
H A DWorkQueue.cpp38 status_t WorkQueue::schedule(WorkUnit* workUnit, size_t backlog) { function in class:android::WorkQueue
/frameworks/base/services/core/java/com/android/server/notification/
H A DScheduleCalendar.java37 public void setSchedule(ScheduleInfo schedule) { argument
38 if (Objects.equals(mSchedule, schedule)) return;
39 mSchedule = schedule;
/frameworks/base/services/core/java/com/android/server/pm/
H A DBackgroundDexOptService.java95 public static void schedule(Context context) { method in class:BackgroundDexOptService
100 js.schedule(new JobInfo.Builder(JOB_POST_BOOT_UPDATE, sDexoptServiceName)
107 js.schedule(new JobInfo.Builder(JOB_IDLE_OPTIMIZE, sDexoptServiceName)
/frameworks/base/services/core/java/com/android/server/storage/
H A DDiskStatsLoggingService.java98 public static void schedule(Context context) { method in class:DiskStatsLoggingService
101 js.schedule(new JobInfo.Builder(JOB_DISKSTATS_LOGGING, sDiskStatsLoggingService)
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/scanner/
H A DBackgroundScanSchedulerTest.java85 WifiNative.ScanSettings schedule = mScheduler.getSchedule();
87 assertEquals(30000, schedule.base_period_ms);
88 assertBuckets(schedule, 0);
99 WifiNative.ScanSettings schedule = mScheduler.getSchedule();
101 assertEquals(30000, schedule.base_period_ms);
102 assertBuckets(schedule, 1);
104 assertSettingsSatisfied(schedule, request, false, true);
116 WifiNative.ScanSettings schedule = mScheduler.getSchedule();
118 assertEquals("base_period_ms", 10000, schedule.base_period_ms);
119 assertBuckets(schedule,
798 assertBuckets(WifiNative.ScanSettings schedule, int numBuckets) argument
821 assertSettingsSatisfied(WifiNative.ScanSettings schedule, ScanSettings settings, boolean bucketsLimited, boolean exactPeriod) argument
969 computeExpectedPeriod(int requestedPeriod, WifiNative.ScanSettings schedule) argument
[all...]
/frameworks/av/media/libstagefright/
H A DVideoFrameScheduler.cpp343 // TODO: schedule frames for the destination surface
397 nsecs_t VideoFrameScheduler::schedule(nsecs_t renderTime) { function in class:android::VideoFrameScheduler
/frameworks/base/core/java/android/service/notification/
H A DZenModeConfig.java802 // ==== Built-in system condition: schedule ====
804 public static final String SCHEDULE_PATH = "schedule";
806 public static Uri toScheduleConditionId(ScheduleInfo schedule) { argument
810 .appendQueryParameter("days", toDayList(schedule.days))
811 .appendQueryParameter("start", schedule.startHour + "." + schedule.startMinute)
812 .appendQueryParameter("end", schedule.endHour + "." + schedule.endMinute)
813 .appendQueryParameter("exitAtAlarm", String.valueOf(schedule.exitAtAlarm))
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawableContainer.java509 // Compute first frame and schedule next animation.
568 void animate(boolean schedule) { argument
606 if (schedule && animating) {
/frameworks/base/services/core/java/com/android/server/job/
H A DJobSchedulerService.java115 /** The maximum number of jobs that we allow an unprivileged app to schedule */
248 * Minimum # of idle jobs that must be ready in order to force the JMS to schedule things
253 * Minimum # of charging jobs that must be ready in order to force the JMS to schedule
259 * schedule things early.
264 * schedule things early.
268 * Minimum # of connectivity jobs that must be ready in order to force the JMS to schedule
274 * schedule things early.
683 throw new IllegalStateException("Apps may not schedule more than "
701 // put it in the pending list and try to schedule it. This is especially
707 // now just waiting for one of its controllers to change state and schedule
1844 public int schedule(JobInfo job) throws RemoteException { method in class:JobSchedulerService.JobSchedulerStub
[all...]
/frameworks/base/tests/net/java/com/android/server/
H A DConnectivityServiceTest.java623 public void schedule(long when) { method in class:ConnectivityServiceTest.FakeWakeupMessage
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 392 milliseconds