Searched defs:when (Results 1 - 5 of 5) sorted by relevance

/libcore/luni/src/main/java/java/util/
H A DTimerTask.java35 long when; field in class:TimerTask
42 * The time when task will be executed, or the time when task was launched
48 * Method called from the Timer for synchronized getting of when field.
52 return when;
57 * Method called from the Timer object when scheduling an event @param time
73 return when > 0 || scheduledTime > 0;
93 boolean willRun = !cancelled && when > 0;
H A DTimer.java38 * successive run of a task is scheduled without regard for when the
96 while (timers[current].when < timers[parent].when) {
115 && timers[child + 1].when < timers[child].when) {
120 if (timers[current].when < timers[child].when) {
179 * {@code when} field of TaskScheduled object.
232 timeToSleep = task.when - currentTime;
248 if (tasks.minimum().when !
434 schedule(TimerTask task, Date when) argument
500 schedule(TimerTask task, Date when, long period) argument
547 scheduleAtFixedRate(TimerTask task, Date when, long period) argument
[all...]
/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
H A DDdmVmInternal.java39 * @param when when to send the next HPIF chunk
40 * @return true on success. false if 'when' is bad or if there was
43 native public static boolean heapInfoNotify(int when); argument
51 native public static boolean heapSegmentNotify(int when, int what, argument
/libcore/luni/src/main/native/
H A Djava_lang_System.cpp91 jlong when = now.tv_sec * 1000LL + now.tv_usec / 1000; local
92 return when;
/libcore/luni/src/main/java/libcore/util/
H A DZoneInfo.java205 public int getOffset(long when) { argument
206 int unix = (int) (when / 1000);
221 long when = time.getTime();
222 int unix = (int) (when / 1000);

Completed in 148 milliseconds