Searched refs:activated (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCViewEmbeddedFrame.java77 public void synthesizeWindowActivation(boolean activated) { argument
78 if (isActive != activated) {
79 isActive = activated;
80 ((LWWindowPeer)getPeer()).notifyActivation(activated, null);
/openjdk7/hotspot/src/share/vm/memory/
H A DgcLocker.hpp240 No_Safepoint_Verifier(bool activated = true, bool verifygc = true ) :
242 _activated(activated) {
257 No_Safepoint_Verifier(bool activated = true, bool verifygc = true) : No_GC_Verifier(verifygc){}
341 // unless the constructor is called with argument false (not activated).
343 // The check will only be done in debug mode and if activated.
353 No_Alloc_Verifier(bool activated = true) {
354 _activated = activated;
362 No_Alloc_Verifier(bool activated = true) {}
/openjdk7/jdk/test/java/awt/KeyboardFocusmanager/TypeAhead/SubMenuShowTest/
H A DSubMenuShowTest.java48 AtomicBoolean activated = new AtomicBoolean(false); field in class:SubMenuShowTest
80 synchronized (activated) {
81 activated.set(true);
82 activated.notifyAll();
118 if (!Util.waitForCondition(activated, 2000)) {
119 throw new TestFailedException("a submenu wasn't activated by mnemonic key press");
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLEngineImpl.java702 if (!handshaker.activated()) {
987 if (!handshaker.activated()) {
1826 if ((handshaker != null) && !handshaker.activated()) {
1854 !handshaker.activated()) {
1877 !handshaker.activated()) {
1919 if (!handshaker.activated()) {
1984 if ((handshaker != null) && !handshaker.activated()) {
2024 if ((handshaker != null) && !handshaker.activated()) {
H A DSSLSocketImpl.java999 if (!handshaker.activated()) {
1412 if (!handshaker.activated()) {
2205 if ((handshaker != null) && !handshaker.activated()) {
2233 !handshaker.activated()) {
2256 !handshaker.activated()) {
2296 if (!handshaker.activated()) {
2355 if ((handshaker != null) && !handshaker.activated()) {
2395 if ((handshaker != null) && !handshaker.activated()) {
H A DHandshaker.java143 // activated.
255 state = -2; // initialized but not activated
498 // move state to activated
652 * As long as handshaking has not activated, we can
656 * has activated.
876 * Returns true iff the handshaker has been activated.
878 * In activated state, the handshaker may not send any messages out.
880 boolean activated() { method in class:Handshaker

Completed in 66 milliseconds