Searched defs:time (Results 1 - 25 of 146) sorted by relevance

123456

/openjdk7/jdk/test/java/lang/management/CompilationMXBean/
H A DBasic.java45 // If compilation time monitoring isn't supported then we are done
47 System.out.println("Compilation time monitoring not supported.");
52 long time;
55 time = mb.getTotalCompilationTime();
56 if (time > 0) {
57 printCompilationTime(time);
72 time = mb.getTotalCompilationTime();
73 if (time > 0) {
74 printCompilationTime(time);
80 static void printCompilationTime(long time) { argument
[all...]
/openjdk7/hotspot/src/share/vm/trace/
H A DnoTraceBackend.hpp34 static TracingTime time() { function in class:NoTraceBackend
H A DtraceBackend.hpp43 static TracingTime time() { function in class:TraceBackend
47 static TracingTime time_adjustment(jlong time) { argument
48 return time;
/openjdk7/jdk/src/share/classes/sun/awt/
H A DTimedWindowEvent.java33 private long time; field in class:TimedWindowEvent
36 return time;
39 public TimedWindowEvent(Window source, int id, Window opposite, long time) { argument
41 this.time = time;
45 int oldState, int newState, long time)
48 this.time = time;
44 TimedWindowEvent(Window source, int id, Window opposite, int oldState, int newState, long time) argument
H A DKeyboardFocusManagerPeerImpl.java111 long time,
151 long time,
155 heavyweight, descendant, temporary, focusedWindowChangeAllowed, time, cause);
167 long time)
170 heavyweight, descendant, temporary, focusedWindowChangeAllowed, time);
107 deliverFocus(Component lightweightChild, Component target, boolean temporary, boolean focusedWindowChangeAllowed, long time, CausedFocusEvent.Cause cause, Component currentFocusOwner) argument
147 shouldNativelyFocusHeavyweight(Component heavyweight, Component descendant, boolean temporary, boolean focusedWindowChangeAllowed, long time, CausedFocusEvent.Cause cause) argument
163 processSynchronousLightweightTransfer(Component heavyweight, Component descendant, boolean temporary, boolean focusedWindowChangeAllowed, long time) argument
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest6963811.java35 private final long time; field in class:Test6963811
38 public Test6963811(long time, boolean sync) { argument
39 this.time = time;
45 Thread.sleep(this.time); // increase the chance of the deadlock
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DTest6963811.java37 private final long time; field in class:Test6963811
40 public Test6963811(long time, boolean sync) { argument
41 this.time = time;
47 Thread.sleep(this.time); // increase the chance of the deadlock
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest6963811.java36 private final long time; field in class:Test6963811
39 public Test6963811(long time, boolean sync) { argument
40 this.time = time;
46 Thread.sleep(this.time); // increase the chance of the deadlock
/openjdk7/jdk/test/sun/security/smartcardio/
H A DTestPresent.java41 private long time = System.currentTimeMillis(); field in class:TestPresent.Timer
44 long diff = t - time;
45 time = t;
50 System.out.println("Elapsed time: " + t + " ms.");
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXPlotter.java40 public void addValues(long time, long... values) { argument
41 super.addValues(time, values);
/openjdk7/jdk/src/share/classes/java/util/concurrent/locks/
H A DCondition.java71 * only notifying a single thread at a time when items or spaces become
271 * or the specified waiting time elapses.
284 * <li>The specified waiting time elapses; or
344 * of the specified waiting time. In either case the implementation
348 * @param nanosTimeout the maximum time to wait, in nanoseconds
350 * the time spent waiting upon return from this method.
353 * the desired time. A value less than or equal to zero
354 * indicates that no time remains.
362 * or the specified waiting time elapses. This method is behaviorally
365 * awaitNanos(unit.toNanos(time))
374 await(long time, TimeUnit unit) argument
[all...]
H A DLock.java48 * shared resource: only one thread at a time can acquire the lock and
234 * Acquires the lock only if it is free at the time of invocation.
263 * Acquires the lock if it is free within the given waiting time and the
275 * <li>The specified waiting time elapses
289 * <p>If the specified waiting time elapses then the value {@code false}
291 * If the time is
311 * @param time the maximum time to wait for the lock
312 * @param unit the time unit of the {@code time} argumen
320 tryLock(long time, TimeUnit unit) argument
[all...]
/openjdk7/jdk/test/java/lang/Class/
H A DTypeCheckMicroBenchmark.java60 * have had plenty of time to warm up, i.e. get around to
79 private static void time(Job ... jobs) throws Throwable { method in class:TypeCheckMicroBenchmark
197 time(filter(filter, jobs));
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DLastReqEntry.java44 public LastReqEntry(int Type, KerberosTime time){ argument
46 lrValue = time;
47 // XXX check the type and time.
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/rcache/
H A DAuthTime.java46 * @param time time from the <code>Authenticator</code>.
49 public AuthTime(long time, int c) { argument
50 kerberosTime = time;
H A DCacheTable.java53 * @params time authenticator timestamp.
55 public synchronized void put(String principal, AuthTime time, long currTime) { argument
62 rc.put(time, currTime);
66 rc.put(time, currTime);
77 * This method tests if replay cache keeps a record of the authenticator's time stamp.
80 * @params time authenticator timestamp.
83 public Object get(AuthTime time, String principal) { argument
85 if ((rc != null) && (rc.contains(time))) {
86 return time;
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/
H A DBenchInfo.java38 long time; field in class:BenchInfo
50 this.time = -1;
57 time = benchmark.run(args);
75 * Return the execution time for benchmark, or -1 if benchmark hasn't been
79 return time;
/openjdk7/jdk/src/share/classes/sun/management/
H A DCompilerThreadStat.java36 CompilerThreadStat(String name, long taskCount, long time, MethodInfo lastMethod) { argument
39 this.compileTime = time;
64 * Returns the accumulated elapsed time spent by the compiler thread
67 * @return the accumulated elapsed time spent by the compiler thread.
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDragSourceProtocolListener.java101 * @param time the time stamp of the event that triggered drag termination
104 void cleanup(long time); argument
/openjdk7/jdk/test/sun/nio/cs/
H A DStrCodingBenchmark.java58 * have had plenty of time to warm up, i.e. get around to
78 public static void time(Job ... jobs) throws Throwable { method in class:StrCodingBenchmark
196 time(filter(filter, jobs));
/openjdk7/jdk/src/share/classes/java/sql/
H A DTime.java32 * parsing operations to support the JDBC escape syntax for time
62 * Constructs a <code>Time</code> object using a milliseconds time value.
64 * @param time milliseconds since January 1, 1970, 00:00:00 GMT;
68 public Time(long time) { argument
69 super(time);
73 * Sets a <code>Time</code> object using a milliseconds time value.
75 * @param time milliseconds since January 1, 1970, 00:00:00 GMT;
79 public void setTime(long time) { argument
80 super.setTime(time);
84 * Converts a string in JDBC time escap
[all...]
/openjdk7/jdk/test/com/sun/jmx/snmp/
H A DTimeTicksWrapping.java114 private static Object newSnmpTimeticks(long time) argument
117 return SNMP_long_CTOR.newInstance(time);
126 private static Object newSnmpTimeticks(Long time) argument
129 return SNMP_LONG_CTOR.newInstance(time);
/openjdk7/jdk/test/java/nio/Buffer/
H A DSwapMicroBenchmark.java64 * have had plenty of time to warm up, i.e. get around to
83 private static void time(Job ... jobs) throws Throwable { method in class:SwapMicroBenchmark
245 time(filter(filter, jobs));
/openjdk7/jdk/test/java/util/ArrayList/
H A DRangeCheckMicroBenchmark.java61 * have had plenty of time to warm up, i.e. get around to
80 private static void time(Job ... jobs) throws Throwable { method in class:RangeCheckMicroBenchmark
232 time(filter(filter, jobs));
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DUID.java34 * A <code>UID</code> represents an identifier that is unique over time
39 * identifier that is unique over time with respect to the host it is
47 * host and at the time represented by the <code>time</code> value (an
51 * <li><code>time</code>, a <code>long</code> equal to a time (as returned
57 * <code>time</code> value
61 * over time with respect to the host it is generated on as long as
85 * was generated in with respect to its host and at the given time
91 * a time (a
95 private final long time; field in class:UID
165 UID(int unique, long time, short count) argument
[all...]

Completed in 324 milliseconds

123456