Searched refs:guard (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/
H A DGuardedObject.java54 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/spi/orbutil/fsm/
H A DGuard.java35 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 DStateEngine.java47 /** 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 DFSMTest.java126 Guard guard ; field in class:NegateGuard
128 public NegateGuard( Guard guard )
130 this.guard = guard ;
135 return guard.evaluate( fsm, in ).complement() ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/fsm/
H A DGuardedAction.java43 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 DStateEngineImpl.java81 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/hotspot/src/share/vm/utilities/
H A Dostream.hpp98 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 Dostream.cpp209 void outputStream::stamp(bool guard, argument
212 if (!guard) {
220 void outputStream::date_stamp(bool guard, argument
223 if (!guard) {
/openjdk7/jdk/src/share/native/sun/awt/debug/
H A Ddebug_mem.c42 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/opto/
H A Dblock.cpp241 Block* guard = bbs[pred(i)->_idx];
242 // Check to see if this block follows its guard 1 time out of 10000
254 // The next check is (guard->_freq < 1.e-5 * 9500.).
255 if(guard->_freq*BLOCK_FREQUENCY(guard_factor) < BLOCK_FREQUENCY(0.00001f)) {
259 if( _freq < guard->_freq * guard_factor ) {
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java3406 int guard = matcher.to - minLength;
3407 for (; i <= guard; i++) {
3438 int guard = matcher.to - minLength;
3439 while (i <= guard) {
3440 //if ((ret = next.match(matcher, i, seq)) || i == guard)
3447 if (i == guard)
5338 // Set the guard value because of unicode compression
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.hpp418 double verify(bool guard, const char* msg);
H A Dg1CollectedHeap.cpp1254 double G1CollectedHeap::verify(bool guard, const char* msg) { argument
1257 if (guard && total_collections() >= VerifyGCStartAt) {

Completed in 84 milliseconds