Searched refs:when (Results 1 - 16 of 16) sorted by relevance

/dalvik/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;
94 boolean willRun = !cancelled && when > 0;
H A DTimer.java45 * successive run of the task is scheduled in absolute terms without regard for when the previous
101 while (timers[current].when < timers[parent].when) {
120 && timers[child + 1].when < timers[child].when) {
125 if (timers[current].when < timers[child].when) {
184 * {@code when} field of TaskScheduled object.
237 timeToSleep = task.when - currentTime;
253 if (tasks.minimum().when !
438 schedule(TimerTask task, Date when) argument
504 schedule(TimerTask task, Date when, long period) argument
551 scheduleAtFixedRate(TimerTask task, Date when, long period) argument
[all...]
/dalvik/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
/dalvik/vm/
H A DDdm.h43 * If thread start/stop notification is enabled, call this when threads
49 * If thread start/stop notification is enabled, call this when the
60 * Let the heap know that the HPIF when value has changed.
62 * @return true iff the when value is supported by the VM.
64 bool dvmDdmHandleHpifChunk(int when);
67 * Let the heap know that the HPSG or NHSG what/when values have changed.
71 * @return true iff the what/when values are supported by the VM.
73 bool dvmDdmHandleHpsgNhsgChunk(int when, int what, bool native);
H A DDvm.mk46 # Make a debugging version when building the simulator (if not told
47 # otherwise) and when explicitly asked.
96 # bug hunting: checksum and verify interpreted stack when making JNI calls
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
H A DElemChoose.java33 * <!ELEMENT xsl:choose (xsl:when+, xsl:otherwise?)>
92 ElemWhen when = (ElemWhen) childElem;
94 // must be xsl:when
98 // System.err.println("\""+when.getTest().getPatternString()+"\"");
100 // if(when.getTest().getPatternString().equals("COLLECTION/icuser/ictimezone/LITERAL='GMT +13:00 Pacific/Tongatapu'"))
103 if (when.getTest().bool(xctxt, sourceNode, when)) {
104 transformer.executeChildTemplates(when, true);
/dalvik/vm/native/
H A Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.c62 int when = args[0]; local
65 ret = dvmDdmHandleHpifChunk(when);
70 * public static boolean heapSegmentNotify(int when, int what, bool native)
78 int when = args[0]; // 0=never (off), 1=during GC local
83 ret = dvmDdmHandleHpsgNhsgChunk(when, what, native);
H A Djava_lang_System.c217 long long when = tv.tv_sec * 1000LL + tv.tv_usec / 1000; local
219 RETURN_LONG(when);
233 u8 when = dvmGetRelativeTimeNsec(); local
234 RETURN_LONG(when);
/dalvik/vm/alloc/
H A DDdmHeap.c48 * [u1]: capture reason (same as 'when' value from server)
69 /* If there's a one-shot 'when', reset it.
73 LOGW("%s(): can't lock heap to clear when\n", __func__);
106 /* 'when' value */
127 dvmDdmHandleHpifChunk(int when) argument
129 switch (when) {
131 dvmDdmSendHeapInfo(when, true);
137 gDvm.gcHeap->ddmHpifWhen = when;
140 LOGI("%s(): can't lock heap to set when\n", __func__);
145 LOGI("%s(): bad when valu
407 int when, what; local
462 dvmDdmHandleHpsgNhsgChunk(int when, int what, bool native) argument
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/util/
H A DZoneInfo.java170 public int getOffset(long when) { argument
171 int unix = (int) (when / 1000);
195 public boolean inDaylightTime(Date when) { argument
196 int unix = (int) (when.getTime() / 1000);
H A DZoneInfoDB.java426 public boolean inDaylightTime(Date when) { argument
/dalvik/libcore/sql/src/main/java/SQLite/
H A DStringEncoder.java100 * @throws IllegalArgumentException when the string given is not
/dalvik/vm/compiler/template/out/
H A DCompilerTemplateAsm-armv5te.S480 * on what value we'd like to return when one of the operands is NaN.
523 * on what value we'd like to return when one of the operands is NaN.
566 * on what value we'd like to return when one of the operands is NaN.
628 * on what value we'd like to return when one of the operands is NaN.
/dalvik/vm/arch/arm/
H A DCallOldABI.S166 @ we pushed on evaporates when we restore "sp".
H A DCallEABI.S134 @ (both here and when exiting). Easier to just push an even number
164 * inserting pad words when appropriate.
335 @ the signature again, "copying" pad words when appropriate, storing
/dalvik/libcore/icu/src/main/native/
H A DResources.cpp256 static jstring formatDate(JNIEnv* env, const SimpleDateFormat& fmt, const UDate& when) { argument
258 fmt.format(when, str);

Completed in 505 milliseconds