HomeSort by relevance Sort by last modified time
    Searched refs:schedule (Results 76 - 100 of 661) sorted by null

1 2 34 5 6 7 8 91011>>

  /packages/apps/StorageManager/src/com/android/storagemanager/automatic/
AutomaticStorageBroadcastReceiver.java 29 * schedule an automatic storage management job. Automatic storage management jobs are only
50 jobScheduler.schedule(job);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
schedule_test.go 28 schedule(c.f)
30 t.Error("single-live-mem restriction not enforced by schedule for func:")
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
schedule_test.go 28 schedule(c.f)
30 t.Error("single-live-mem restriction not enforced by schedule for func:")
  /external/v8/src/compiler/
graph-visualizer.h 24 class Schedule;
53 AsC1V(const char* phase, const Schedule* schedule,
56 : schedule_(schedule),
60 const Schedule* schedule_;
scheduler.h 11 #include "src/compiler/schedule.h"
27 // Computes a schedule from a graph, placing nodes into basic blocks and
35 // The complete scheduling algorithm. Creates a new schedule and places all
37 static Schedule* ComputeSchedule(Zone* zone, Graph* graph, Flags flags);
39 // Compute the RPO of blocks in an existing schedule.
40 static BasicBlockVector* ComputeSpecialRPO(Zone* zone, Schedule* schedule);
66 Schedule* schedule_;
76 Scheduler(Zone* zone, Graph* graph, Schedule* schedule, Flags flags)
    [all...]
  /frameworks/base/services/core/java/com/android/server/
PreloadsFileCacheExpirationJobService.java 50 public static void schedule(Context context) { method in class:PreloadsFileCacheExpirationJobService
71 jobScheduler.schedule(expirationJob);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseClasspathContainerInitializer.java 78 markerJob.schedule();
100 markerJob.schedule();
  /cts/tests/JobScheduler/src/android/jobscheduler/cts/
ConnectivityConstraintTest.java 102 // Positives - schedule jobs under conditions that require them to pass.
106 * Schedule a job that requires a WiFi connection, and assert that it executes when the device
117 mJobScheduler.schedule(
128 * Schedule a job with a connectivity constraint, and ensure that it executes on WiFi.
138 mJobScheduler.schedule(
149 * Schedule a job with a generic connectivity constraint, and ensure that it executes
159 mJobScheduler.schedule(
170 * Schedule a job with a metered connectivity constraint, and ensure that it executes
180 mJobScheduler.schedule(
190 // Negatives - schedule jobs under conditions that require that they fail
    [all...]
BatteryConstraintTest.java 128 // Positives - schedule jobs under conditions that require them to pass.
132 * Schedule a job that requires the device is charging, when the battery reports it is
141 mJobScheduler.schedule(mBuilder.setRequiresCharging(true).build());
150 * Schedule a job that requires the device is not critical, when the battery reports it is
160 mJobScheduler.schedule(mBuilder.setRequiresBatteryNotLow(true).build());
169 * Schedule a job that requires the device is not critical, when the battery reports it is
179 mJobScheduler.schedule(mBuilder.setRequiresBatteryNotLow(true).build());
188 // Negatives - schedule jobs under conditions that require that they fail.
192 * Schedule a job that requires the device is charging, and assert if failed when
201 mJobScheduler.schedule(mBuilder.setRequiresCharging(true).build())
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/des/
const.go 54 // Used in the key schedule to select 56 bits
66 // Used in the key schedule to produce each subkey by selecting 48 bits from
138 // Size of left rotation per round in each half of the key schedule
  /prebuilts/go/linux-x86/src/crypto/des/
const.go 54 // Used in the key schedule to select 56 bits
66 // Used in the key schedule to produce each subkey by selecting 48 bits from
138 // Size of left rotation per round in each half of the key schedule
  /packages/apps/TV/src/com/android/tv/dvr/ui/
DvrConflictFragment.java 108 for (ScheduledRecording schedule : getConflicts()) {
109 String scheduleTitle = getScheduleTitle(schedule);
140 private String getScheduleTitle(ScheduledRecording schedule) {
141 if (schedule.getType() == ScheduledRecording.TYPE_TIMED) {
143 .getChannel(schedule.getChannelId());
150 return schedule.getProgramTitle();
329 for (ScheduledRecording schedule : mConflicts) {
330 if (schedule.getState() == ScheduledRecording.STATE_RECORDING_IN_PROGRESS) {
331 getDvrManager().stopRecording(schedule);
333 getDvrManager().removeScheduledRecording(schedule);
    [all...]
  /external/boringssl/ios-arm/crypto/fipsmodule/
bsaes-armv7.S 45 @ results keep in mind key schedule conversion overhead (see
1113 @ allocate the key schedule on the stack
1115 add r12, #96 @ sifze of bit-slices key schedule
1117 @ populate the key schedule
1131 @ populate the key schedule
1135 add r12, r3, #248 @ pass key schedule
1340 Lcbc_dec_bzero:@ wipe key schedule [if any]
1372 @ allocate the key schedule on the stack
1374 add r12, #96 @ size of bit-sliced key schedule
1376 @ populate the key schedule
    [all...]
  /external/boringssl/linux-arm/crypto/fipsmodule/
bsaes-armv7.S 46 @ results keep in mind key schedule conversion overhead (see
1106 @ allocate the key schedule on the stack
1108 add r12, #96 @ sifze of bit-slices key schedule
1110 @ populate the key schedule
1124 @ populate the key schedule
1128 add r12, r3, #248 @ pass key schedule
1333 .Lcbc_dec_bzero:@ wipe key schedule [if any]
1363 @ allocate the key schedule on the stack
1365 add r12, #96 @ size of bit-sliced key schedule
1367 @ populate the key schedule
    [all...]
  /external/vogar/src/vogar/commands/
Command.java 215 }.schedule(); method
217 }.schedule(); method
324 public final void schedule() { method in class:Command.TimeoutTask
325 timer.schedule(this, System.nanoTime() - timeoutNanoTime, TimeUnit.NANOSECONDS);
341 timer.schedule(this, System.nanoTime() - timeoutNanoTime, TimeUnit.NANOSECONDS);
  /packages/apps/Settings/src/com/android/settings/notification/
ZenRuleSelectionDialog.java 131 final ZenModeConfig.ScheduleInfo schedule = new ZenModeConfig.ScheduleInfo(); local
132 schedule.days = ZenModeConfig.ALL_DAYS;
133 schedule.startHour = 22;
134 schedule.endHour = 7;
139 rt.defaultConditionId = ZenModeConfig.toScheduleConditionId(schedule);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/jobscheduler/
ConnectivityConstraintTestActivity.java 106 mJobScheduler.schedule(testJob1);
107 mJobScheduler.schedule(testJob2);
128 mJobScheduler.schedule(testJob);
  /frameworks/base/services/core/java/com/android/server/notification/
ScheduleCalendar.java 37 public void setSchedule(ScheduleInfo schedule) {
38 if (Objects.equals(mSchedule, schedule)) return;
39 mSchedule = schedule;
  /external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
TestingExecutors.java 58 * that invokes {@code execute/submit/schedule}, as in
61 * {@code invokeAny}, {@code schedule}, {@code scheduleAtFixedRate}, and
130 @Override public <V> ListenableScheduledFuture<V> schedule( method in class:TestingExecutors.NoOpScheduledExecutorService
135 @Override public ListenableScheduledFuture<?> schedule( method in class:TestingExecutors.NoOpScheduledExecutorService
  /external/guava/guava-testlib/test/com/google/common/util/concurrent/testing/
TestingExecutorsTest.java 48 ScheduledFuture<?> future = TestingExecutors.noOpScheduledExecutor().schedule(
94 Future<Integer> future = TestingExecutors.sameThreadScheduledExecutor().schedule(
  /external/v8/tools/turbolizer/
constants.js 16 var SCHEDULE_PANE_ID = 'schedule';
  /packages/apps/TV/src/com/android/tv/dvr/recorder/
RecordingTask.java 103 * Message to update schedule.
355 private void handleUpdateSchedule(ScheduledRecording schedule) {
356 mScheduledRecording = schedule;
358 if (schedule.getEndTimeMs() != mScheduledRecording.getEndTimeMs()) {
360 mRecordingSession.setEndTimeMs(schedule.getEndTimeMs());
364 if (!sendEmptyMessageAtAbsoluteTime(MSG_STOP_RECORDING, schedule.getEndTimeMs())) {
426 ScheduledRecording schedule = mDataManager.getScheduledRecording(
428 if (schedule == null) {
429 // Schedule has been deleted. Delete the recorded program.
435 mDataManager.updateScheduledRecording(ScheduledRecording.buildFrom(schedule)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
ToolTip.py 20 self.schedule()
26 def schedule(self): member in class:ToolTipBase
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
ToolTip.py 20 self.schedule()
26 def schedule(self): member in class:ToolTipBase
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ToolTip.py 20 self.schedule()
26 def schedule(self): member in class:ToolTipBase

Completed in 956 milliseconds

1 2 34 5 6 7 8 91011>>