Searched refs:safe (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanInfo.java558 Boolean safe = arrayGettersSafeMap.get(subclass);
559 if (safe == null) {
563 safe = AccessController.doPrivileged(action);
566 safe = false;
568 arrayGettersSafeMap.put(subclass, safe);
570 return safe;
H A DStandardMBean.java1165 Boolean safe = mbeanInfoSafeMap.get(subclass);
1166 if (safe == null) {
1170 safe = AccessController.doPrivileged(action);
1173 safe = false;
1175 mbeanInfoSafeMap.put(subclass, safe);
1177 return safe;
/openjdk7/hotspot/src/share/vm/code/
H A DcompiledIC.cpp45 // either the CompiledIC_lock must be set or we must be at a safe point.
49 // MT-safe to use.
136 // High-level access to an inline cache. Guaranteed to be MT-safe.
260 // A zombie transition will always be safe, since the oop has already been set to NULL, so
349 // This is MT safe if we come from a clean-cache and go through a
351 bool safe = SafepointSynchronize::is_at_safepoint() || local
354 if (!safe) {
367 (safe) ? "" : "via stub");
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddebug.cpp467 // note: this may not be safe if we're not at a safepoint; for debugging,
470 bool safe = SafepointSynchronize::is_at_safepoint(); local
471 if (!safe) {
478 if (!safe) SafepointSynchronize::set_is_not_at_safepoint();
/openjdk7/hotspot/make/windows/
H A Dcreate.bat149 REM This is now safe to do.
209 echo NOTE that it is now NOT safe to modify any of the files in the build

Completed in 40 milliseconds