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

1 2 3 4 5 67 8 91011>>

  /frameworks/base/core/java/com/android/internal/util/
WakeupMessage.java 77 * Schedule the message to be delivered at the time in milliseconds of the
79 * 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/packages/CarrierDefaultApp/src/com/android/carrierdefaultapp/
ProvisionObserver.java 85 * Static utility function to schedule a job to execute upon the change of content URI
111 jobScheduler.schedule(job);
  /frameworks/base/services/core/java/com/android/server/
MountServiceIdler.java 92 * Schedule the idle job that will ping the mount service
104 tm.schedule(builder.build());
  /frameworks/base/services/core/java/com/android/server/timezone/
IntentHelperImpl.java 92 TimeZoneUpdateIdler.schedule(mContext, minimumDelayMillis);
  /libcore/ojluni/src/main/java/java/util/concurrent/
Executors.java 245 * Creates a single-threaded executor that can schedule commands
263 * Creates a single-threaded executor that can schedule commands
284 * Creates a thread pool that can schedule commands to run after a
296 * Creates a thread pool that can schedule commands to run after a
680 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) {
681 return e.schedule(command, delay, unit);
683 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) {
684 return e.schedule(callable, delay, unit);
ScheduledThreadPoolExecutor.java 56 * A {@link ThreadPoolExecutor} that can additionally schedule
104 * {@code submit}, {@code schedule}, {@code scheduleAtFixedRate},
553 public ScheduledFuture<?> schedule(Runnable command, method in class:ScheduledThreadPoolExecutor
570 public <V> ScheduledFuture<V> schedule(Callable<V> callable, method in class:ScheduledThreadPoolExecutor
636 * {@link #schedule(Runnable,long,TimeUnit) schedule(command, 0, anyUnit)}.
654 schedule(command, 0, NANOSECONDS); method
664 return schedule(task, 0, NANOSECONDS);
672 return schedule(Executors.callable(task, result), 0, NANOSECONDS);
680 return schedule(task, 0, NANOSECONDS)
    [all...]
  /packages/apps/StorageManager/robotests/src/com/android/storagemanager/automatic/
AutomaticStorageBroadcastReceiverTest.java 63 verify(mJobScheduler, times(1)).schedule(jobCaptor.capture());
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
layout.go 34 // add block to schedule
51 // Pick the next block to schedule
schedule.go 60 // Schedule the Values in each Block. After this phase returns, the
63 // reasonable valid schedule using a priority queue. TODO(khr):
64 // schedule smarter.
65 func schedule(f *Func) { func
113 // Schedule stores as early as possible. This tends to
118 // Schedule the pseudo-op of reading part of a tuple
125 // Schedule flag register generation as late as possible.
183 // Schedule values dependent on the control value at the end.
211 // Schedule highest priority value, update use counts, repeat.
216 // Note that schedule is assembled backwards
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
layout.go 34 // add block to schedule
51 // Pick the next block to schedule
schedule.go 60 // Schedule the Values in each Block. After this phase returns, the
63 // reasonable valid schedule using a priority queue. TODO(khr):
64 // schedule smarter.
65 func schedule(f *Func) { func
113 // Schedule stores as early as possible. This tends to
118 // Schedule the pseudo-op of reading part of a tuple
125 // Schedule flag register generation as late as possible.
183 // Schedule values dependent on the control value at the end.
211 // Schedule highest priority value, update use counts, repeat.
216 // Note that schedule is assembled backwards
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
MonitorStartup.java 52 pingJob.schedule();
  /external/ImageMagick/MagickCore/
colormap.c 203 #pragma omp parallel for schedule(static,4) \
329 #pragma omp parallel for schedule(static,4) shared(status) \
343 #pragma omp parallel for schedule(static,4) shared(status)
  /external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
SameThreadScheduledExecutorService.java 138 public ListenableScheduledFuture<?> schedule(Runnable command, long delay, method in class:SameThreadScheduledExecutorService
142 return schedule(java.util.concurrent.Executors.callable(command),
176 public <V> ListenableScheduledFuture<V> schedule(final Callable<V> callable, method in class:SameThreadScheduledExecutorService
  /external/linux-kselftest/tools/testing/selftests/x86/
fsgsbase.c 148 static void mov_0_gs(unsigned long initial_base, bool schedule)
152 printf("[RUN]\tARCH_SET_GS to 0x%lx then mov 0 to %%gs%s\n", initial_base, schedule ? " and schedule " : "");
156 if (schedule)
298 printf("[RUN]\tARCH_SET_GS(0x%lx)%s, then schedule to 0x%lx\n",
  /external/llvm/lib/CodeGen/
DFAPacketizer.cpp 13 // the target's Schedule.td file.
157 // This class extends ScheduleDAGInstrs and overrides the schedule method
168 void schedule() override;
195 void DefaultVLIWScheduler::schedule() { function in class:DefaultVLIWScheduler
239 VLIWScheduler->schedule();
  /packages/apps/TV/src/com/android/tv/dvr/recorder/
ConflictChecker.java 67 * To show watch conflict dialog, the start time of the earliest conflicting schedule should be
72 * To show watch conflict dialog, the start time of the earliest conflicting schedule should be
216 for (ScheduledRecording schedule : conflicts) {
217 long startTimeMs = schedule.getStartTimeMs();
232 mUpcomingConflicts.add(schedule);
233 // The schedule will be removed from the "upcoming conflict" when the
  /external/v8/src/compiler/
verifier.cc 23 #include "src/compiler/schedule.h"
    [all...]
pipeline.cc 59 #include "src/compiler/schedule.h"
143 Schedule* schedule, SourcePositionTable* source_positions)
151 schedule_(schedule),
221 Schedule* schedule() const { return schedule_; } function in class:v8::internal::compiler::PipelineData
222 void set_schedule(Schedule* schedule) {
224 schedule_ = schedule;
288 schedule());
437 schedule_stream << *schedule; local
448 os << "-- Schedule --------------------------------------\\n" << *schedule; local
1077 Schedule* schedule = Scheduler::ComputeSchedule(temp_zone, data->graph(), local
1221 Schedule* schedule = Scheduler::ComputeSchedule( local
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
ScheduleConditionProvider.java 234 final ScheduleInfo schedule = ZenModeConfig.tryParseScheduleConditionId(conditionId); local
235 if (schedule == null || schedule.days == null || schedule.days.length == 0) return null;
237 sc.setSchedule(schedule);
  /hardware/interfaces/broadcastradio/1.1/default/
Tuner.cpp 95 mThread.schedule(task, gDefaultDelay.config);
169 mThread.schedule(task, gDefaultDelay.scan);
201 mThread.schedule(task, gDefaultDelay.scan);
242 mThread.schedule(task, gDefaultDelay.step);
289 mThread.schedule(task, gDefaultDelay.tune);
  /packages/apps/TV/src/com/android/tv/dvr/ui/browse/
DvrBrowseFragment.java 148 for (ScheduledRecording schedule : schedules) {
149 onScheduledRecordingConflictStatusChanged(schedule);
289 for (ScheduledRecording schedule : schedules) {
290 if (needToShowScheduledRecording(schedule)) {
291 if (mScheduleAdapter.contains(schedule)) {
292 mScheduleAdapter.change(schedule);
295 mScheduleAdapter.removeWithId(schedule);
370 // Schedule Recordings.
557 int visibleRowsCount = 1; // Schedule's Row will never be empty
  /cts/tests/JobScheduler/src/android/jobscheduler/cts/
TriggerContentTest.java 248 mJobScheduler.schedule(triggerJob);
295 mJobScheduler.schedule(triggerJob);
336 mJobScheduler.schedule(triggerJob);
373 // Schedule a new job to look at what we see when deleting the files.
377 mJobScheduler.schedule(triggerJob);
402 mJobScheduler.schedule(triggerJob);
439 // Schedule a new job to look at what we see when deleting the files.
443 mJobScheduler.schedule(triggerJob);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
WifiScanningServiceImpl.java 1222 WifiNative.ScanSettings schedule = mBackgroundScheduler.getSchedule(); local
2107 WifiNative.ScanSettings schedule = mBackgroundScheduler.getSchedule(); local
    [all...]
  /external/boringssl/src/crypto/fipsmodule/des/
des.c 296 void DES_set_key(const DES_cblock *key, DES_key_schedule *schedule) {
345 schedule->subkeys[i][0] = ROTATE(t2, 30) & 0xffffffffL;
348 schedule->subkeys[i][1] = ROTATE(t2, 26) & 0xffffffffL;
541 const DES_key_schedule *schedule, int is_encrypt) {
551 DES_encrypt1(ll, schedule, is_encrypt);
560 const DES_key_schedule *schedule, DES_cblock *ivec,
579 DES_encrypt1((uint32_t *)tin, schedule, DES_ENCRYPT);
591 DES_encrypt1((uint32_t *)tin, schedule, DES_ENCRYPT);
608 DES_encrypt1((uint32_t *)tin, schedule, DES_DECRYPT);
621 DES_encrypt1((uint32_t *)tin, schedule, DES_DECRYPT)
    [all...]

Completed in 1005 milliseconds

1 2 3 4 5 67 8 91011>>