Searched defs:blockedTime (Results 1 - 3 of 3) sorted by relevance
/openjdk7/jdk/src/share/classes/java/lang/management/ |
H A D | ThreadInfo.java | 95 private long blockedTime; field in class:ThreadInfo 121 * @param blockedTime Approx time blocked to enter a lock 127 long blockedCount, long blockedTime, 131 blockedCount, blockedTime, 146 * @param blockedTime Approx time blocked to enter a lock 154 long blockedCount, long blockedTime, 196 blockedCount, blockedTime, 209 * @param blockedTime Approx time blocked to enter a lock 217 long blockedCount, long blockedTime, 228 this.blockedTime 126 ThreadInfo(Thread t, int state, Object lockObj, Thread lockOwner, long blockedCount, long blockedTime, long waitedCount, long waitedTime, StackTraceElement[] stackTrace) argument 153 ThreadInfo(Thread t, int state, Object lockObj, Thread lockOwner, long blockedCount, long blockedTime, long waitedCount, long waitedTime, StackTraceElement[] stackTrace, Object[] monitors, int[] stackDepths, Object[] synchronizers) argument 216 initialize(Thread t, int state, Object lockObj, Thread lockOwner, long blockedCount, long blockedTime, long waitedCount, long waitedTime, StackTraceElement[] stackTrace, MonitorInfo[] lockedMonitors, LockInfo[] lockedSynchronizers) argument [all...] |
/openjdk7/jdk/src/share/classes/sun/management/ |
H A D | ThreadInfoCompositeData.java | 137 private static final String BLOCKED_TIME = "blockedTime"; 263 public long blockedTime() { method in class:ThreadInfoCompositeData
|
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/ |
H A D | SynchronizationStatistics.java | 322 long blockedTime, 328 timeRangeCheck(blockedTime, expected, 5); 351 // throw an exception if blockedTime and expectedTime 419 long blockedTime = info.getBlockedTime(); 420 if (blockedTime < 0) { 422 "Blocked time returned is negative = " + blockedTime); 426 blockedTimeRangeCheck(t, blockedTime, now); 428 timeRangeCheck(blockedTime, t.totalBlockedTimeMs(), 5); 321 blockedTimeRangeCheck(StatThread t, long blockedTime, long nowNano) argument
|
Completed in 1932 milliseconds