Searched refs:milliseconds (Results 1 - 25 of 31) sorted by relevance

12

/openjdk10/hotspot/src/share/vm/runtime/
H A Dtimer.hpp46 jlong milliseconds() const;
68 jlong milliseconds() const;
H A Dtimer.cpp78 jlong elapsedTimer::milliseconds() const { function in class:elapsedTimer
106 jlong TimeStamp::milliseconds() const { function in class:TimeStamp
H A Dtask.cpp56 int ms = (int)_timer.milliseconds();
/openjdk10/hotspot/src/share/vm/utilities/
H A Dticks.hpp108 static jlong milliseconds(const Tickspan& span);
H A Dticks.cpp66 jlong TicksToTimeHelper::milliseconds(const Tickspan& span) { function in class:TicksToTimeHelper
/openjdk10/jdk/test/javax/sound/midi/Devices/
H A DReopen.java121 private static void sleep(int milliseconds) { argument
123 Thread.sleep(milliseconds);
H A DIOLoop.java278 private static void sleep(int milliseconds) { argument
281 lock.wait(milliseconds);
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/datatype/
H A DDatatypeFactory.java248 * specifying the {@code Duration} as milliseconds.
258 * <p>All six values are set by computing their values from the specified milliseconds
277 * @param durationInMilliSeconds Duration in milliseconds to create.
434 * using the specified milliseconds as defined in
442 * <p>All four values are set by computing their values from the specified milliseconds
461 * <p>Any remaining milliseconds after determining the day, hour, minute and second are discarded.
616 * using the specified milliseconds as defined in
624 * <p>Both values are set by computing their values from the specified milliseconds
643 * <p>Any remaining milliseconds after determining the year and month are discarded.
1059 * @param milliseconds numbe
1071 newXMLGregorianCalendarTime( final int hours, final int minutes, final int seconds, final int milliseconds, final int timezone) argument
[all...]
/openjdk10/jaxp/test/javax/xml/jaxp/functional/javax/xml/datatype/ptests/
H A DXMLGregorianCalendarTest.java66 @DataProvider(name = "valid-milliseconds")
72 * Test DatatypeFactory.newXMLGregorianCalendar(..) with milliseconds > 1.
77 @Test(dataProvider = "valid-milliseconds")
79 // valid milliseconds
86 ms, // milliseconds
99 @Test(dataProvider = "valid-milliseconds")
101 // valid milliseconds
105 ms, // milliseconds
113 @DataProvider(name = "invalid-milliseconds")
121 * Bug # 5049592 IllegalArgumentException is thrown if milliseconds <
126 checkNewCalendarNeg(int milliseconds) argument
147 checkNewTimeNeg(int milliseconds) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/util/calendar/
H A DZoneInfo.java77 * The raw GMT offset in milliseconds between this zone and GMT.
85 * Difference in milliseconds from the original GMT offset in case
93 * A CRC32 value of all pairs of transition time (in milliseconds
103 * The amount of time in milliseconds saved during daylight saving
116 * time in milliseconds from Gregorian January 1 1970, 00:00:00
135 * milliseconds. Index values to this array are stored in the
185 * @param rawOffset GMT offset in milliseconds
186 * @param dstSavings daylight saving value in milliseconds or 0
215 * Returns the difference in milliseconds between local time and UTC
219 * @param date the milliseconds i
361 getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DToolTipManager.java41 * visible after <code>initialDelay</code> milliseconds. After
42 * <code>dismissDelay</code> milliseconds the tooltip will be hidden. If
47 * milliseconds, the tooltip will immediately be shown, otherwise the
48 * tooltip will be shown again after <code>initialDelay</code> milliseconds.
158 * @param milliseconds the number of milliseconds to delay
163 public void setInitialDelay(int milliseconds) { argument
164 enterTimer.setInitialDelay(milliseconds);
171 * in milliseconds
181 * @param milliseconds th
185 setDismissDelay(int milliseconds) argument
214 setReshowDelay(int milliseconds) argument
[all...]
/openjdk10/hotspot/src/share/vm/services/
H A Dmanagement.hpp133 { Management::record_vm_startup_time(_begin_time, _timer.milliseconds()); }
H A DmemoryManager.hpp169 jlong gc_time_ms() { return _accumulated_timer.milliseconds(); }
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/java/swing/plaf/windows/
H A DAnimationController.java347 final long milliseconds,
349 assert startState != null && milliseconds > 0;
353 this.duration = milliseconds * 1000000;
346 AnimationState(final State startState, final long milliseconds, boolean isForwardAndReverse) argument
/openjdk10/jdk/src/java.sql/share/classes/java/sql/
H A DConnection.java1444 * @param milliseconds The time in milliseconds to wait for the database
1446 * to complete. If the JDBC driver does not support milliseconds, the
1467 void setNetworkTimeout(Executor executor, int milliseconds) throws SQLException; argument
1471 * Retrieves the number of milliseconds the driver will
1476 * @return the current timeout limit in milliseconds; zero means there is
/openjdk10/jdk/test/sun/util/calendar/zi/
H A DZoneInfoOld.java105 * The raw GMT offset in milliseconds between this zone and GMT.
113 * Difference in milliseconds from the original GMT offset in case
121 * A CRC32 value of all pairs of transition time (in milliseconds
131 * The amount of time in milliseconds saved during daylight saving
144 * time in milliseconds from Gregorian January 1 1970, 00:00:00
163 * milliseconds. Index values to this array are stored in the
213 * @param rawOffset GMT offset in milliseconds
214 * @param dstSavings daylight saving value in milliseconds or 0
243 * Returns the difference in milliseconds between local time and UTC
247 * @param date the milliseconds i
389 getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) argument
[all...]
/openjdk10/hotspot/src/share/vm/compiler/
H A DcompileBroker.hpp380 static long get_total_compilation_time() { return _t_total_compilation.milliseconds(); }
H A DcompileBroker.cpp1357 // The number of milliseconds to wait before checking if
1368 * progress for N consecutive milliseconds where N is
1968 tty->print("%7d ", (int) tty->time_stamp().milliseconds()); // print timestamp
1974 tty->print_cr("time: %d inlined: %d bytes", (int)time.milliseconds(), task->num_inlined_bytecodes());
2195 _peak_compilation_time = time.milliseconds() > _peak_compilation_time ? time.milliseconds() : _peak_compilation_time;
/openjdk10/jdk/test/java/sql/modules/mystubdriver/com/luckydogtennis/
H A DStubConnection.java297 public void setNetworkTimeout(Executor executor, int milliseconds) throws SQLException { argument
/openjdk10/jdk/test/java/sql/modules/luckydogdriver/luckydogtennis/
H A DStubConnection.java297 public void setNetworkTimeout(Executor executor, int milliseconds) throws SQLException { argument
/openjdk10/jdk/test/java/sql/testng/util/
H A DStubConnection.java297 public void setNetworkTimeout(Executor executor, int milliseconds) throws SQLException { argument
/openjdk10/jdk/test/java/util/Calendar/
H A DZoneOffsets.java55 int dayOfWeek, int milliseconds) {
54 getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) argument
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/datatype/
H A DDurationTest.java419 int seconds, long milliseconds, String lexical) {
474 System.out.println("milliseconds:");
475 System.out.println(" expected: \"" + milliseconds + "\"");
418 durationAssertEquals(Duration duration, QName xmlSchemaType, boolean isPositive, int years, int months, int days, int hours, int minutes, int seconds, long milliseconds, String lexical) argument
/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DTimeZone.java158 // Constants used internally; unit is milliseconds
181 * @param milliseconds the milliseconds in day in <em>standard</em>
184 * @return the offset in milliseconds to add to GMT to get local time.
190 int dayOfWeek, int milliseconds);
202 * @param date the date represented in milliseconds since January 1, 1970 00:00:00 GMT
203 * @return the amount of time in milliseconds to add to UTC to get local time.
219 * @param date the milliseconds (since January 1, 1970,
260 * Returns the amount of time in milliseconds to add to UTC to get
269 * this method always returns -36000000 milliseconds (
189 getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) argument
[all...]
/openjdk10/hotspot/src/share/vm/prims/
H A DjvmtiRedefineClasses.cpp246 julong doit_time = _timer_rsc_phase1.milliseconds() +
247 _timer_rsc_phase2.milliseconds();
248 julong all_time = _timer_vm_op_prologue.milliseconds() + doit_time;
252 all_time, (julong)_timer_vm_op_prologue.milliseconds(), doit_time);
255 (julong)_timer_rsc_phase1.milliseconds(), (julong)_timer_rsc_phase2.milliseconds());

Completed in 188 milliseconds

12