/openjdk7/jdk/src/share/classes/java/security/ |
H A D | GuardedObject.java | 54 private Guard guard; // the guard field in class:GuardedObject 57 * Constructs a GuardedObject using the specified object and guard. 63 * @param guard the Guard object that guards access to the object. 66 public GuardedObject(Object object, Guard guard) argument 68 this.guard = guard; 74 * to the guarded object is denied by the guard. 84 if (guard != null) 85 guard [all...] |
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/fsm/ |
H A D | GuardedAction.java | 43 private Guard guard ; field in class:GuardedAction 49 this.guard = trueGuard ; 54 public GuardedAction( Guard guard, Action action, State nextState ) argument 56 this.guard = guard ; 63 return "GuardedAction[action=" + action + " guard=" + guard + 68 public Guard getGuard() { return guard ; }
|
H A D | StateEngineImpl.java | 81 public StateEngine add( State oldState, Input input, Guard guard, Action action, argument 88 GuardedAction ga = new GuardedAction( guard, action, newState ) ; 199 // Do until no guard has deferred. 218 // Search for a guard that is not DISABLED.
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orbutil/fsm/ |
H A D | Guard.java | 35 private Guard guard ; field in class:Guard.Complement 37 public Complement( GuardBase guard ) 39 super( "not(" + guard.getName() + ")" ) ; 40 this.guard = guard ; 45 return guard.evaluate( fsm, in ).complement() ;
|
H A D | StateEngine.java | 47 /** Add a new transition (old,in,guard,act,new) to the state engine. 49 * in which case only a transition in which the guard evaluates to 56 public StateEngine add( State oldState, Input input, Guard guard, argument 59 /** Add a transition with a guard that always evaluates to true.
|
H A D | FSMTest.java | 126 Guard guard ; field in class:NegateGuard 128 public NegateGuard( Guard guard ) 130 this.guard = guard ; 135 return guard.evaluate( fsm, in ).complement() ;
|
/openjdk7/jdk/src/share/native/sun/awt/debug/ |
H A D | debug_mem.c | 42 MAX_GUARD_BYTES = 8, /* size of guard areas on either side of a block */ 53 byte_t guard[MAX_GUARD_BYTES]; /* guard area for underrun check */ member in struct:MemoryBlockHeader 58 byte_t guard[MAX_GUARD_BYTES]; /* guard area overrun check */ member in struct:MemoryBlockTail 136 DASSERTMSG( DMem_VerifyGuardArea(header->guard), "Header corruption, possible underwrite" ); 144 DASSERTMSG( DMem_VerifyGuardArea(tail->guard), "Tail corruption, possible overwrite" ); 196 * 'guard' areas to catch overwrite/underwrite bugs 238 /* put guard area before block */ 239 memset(header->guard, ByteGuar [all...] |
/openjdk7/hotspot/src/share/vm/utilities/ |
H A D | ostream.hpp | 98 void stamp(bool guard, const char* prefix, const char* suffix); 99 void stamp(bool guard) { argument 100 stamp(guard, "", ": "); 103 void date_stamp(bool guard, const char* prefix, const char* suffix); 105 void date_stamp(bool guard) { argument 106 date_stamp(guard, "", ": ");
|
H A D | ostream.cpp | 209 void outputStream::stamp(bool guard, argument 212 if (!guard) { 220 void outputStream::date_stamp(bool guard, argument 223 if (!guard) {
|
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/ |
H A D | g1CollectedHeap.cpp | 1254 double G1CollectedHeap::verify(bool guard, const char* msg) { argument 1257 if (guard && total_collections() >= VerifyGCStartAt) {
|