Searched defs:initialized (Results 1 - 25 of 57) sorted by relevance

123

/openjdk7/hotspot/src/os/solaris/vm/
H A DthreadCritical_solaris.cpp44 static bool initialized = false; variable
47 if (initialized) {
64 if (initialized) {
82 initialized = true;
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DExtendedCharsets.java1112 private boolean initialized = false; field in class:ExtendedCharsets
1116 // has been initialized. We therefore delay the effect of this property
1154 if (initialized)
1291 initialized = true;
/openjdk7/hotspot/src/os/windows/vm/
H A DthreadCritical_windows.cpp37 static bool initialized = false; variable
69 if (initialized) {
76 if (!initialized) {
79 initialized = true;
/openjdk7/jdk/src/share/native/java/lang/
H A DSecurityManager.c34 * Make sure a security manager instance is initialized.
41 jboolean initialized = JNI_FALSE; local
49 initField = (*env)->GetFieldID(env, clazz, "initialized", "Z");
55 initialized = (*env)->GetBooleanField(env, this, initField);
57 if (initialized == JNI_TRUE) {
64 "security manager not initialized.");
83 /* Make sure the security manager instance is initialized */
94 /* Make sure the security manager instance is initialized */
106 /* Make sure the security manager instance is initialized */
122 /* Make sure the security manager instance is initialized */
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DAlgorithmParameters.java41 * initialized via a call to <code>init</code>, using an appropriate parameter
86 // Has this object been initialized?
87 private boolean initialized = false; field in class:AlgorithmParameters
125 * <p> The returned parameter object must be initialized via a call to
167 * <p>The returned parameter object must be initialized via a call to
214 * <p>The returned parameter object must be initialized via a call to
268 * object, or if this parameter object has already been initialized.
273 if (this.initialized)
274 throw new InvalidParameterSpecException("already initialized");
276 this.initialized
[all...]
H A DSecureClassLoader.java45 * succeed. Otherwise the object is not initialized and the object is
48 private final boolean initialized; field in class:SecureClassLoader
82 initialized = true;
105 initialized = true;
219 * Check to make sure the class loader has been initialized.
222 if (!initialized) {
223 throw new SecurityException("ClassLoader object not initialized");
H A DPolicy.java111 // a flag indicating if the system-wide policy has been initialized
112 final boolean initialized; field in class:Policy.PolicyInfo
114 PolicyInfo(Policy policy, boolean initialized) { argument
116 this.initialized = initialized;
133 return pi.policy != null && pi.initialized == true;
179 // already initialized
180 if (pi.initialized == false || pi.policy == null) {
/openjdk7/hotspot/src/share/vm/compiler/
H A DabstractCompiler.hpp34 bool _is_initialized; // Mark whether compiler object is initialized
38 enum { uninitialized, initializing, initialized }; enumerator in enum:AbstractCompiler::__anon218
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DHttpCapture.java60 private static boolean initialized = false; field in class:HttpCapture
65 initialized = true;
109 return initialized;
/openjdk7/corba/src/share/classes/com/sun/corba/se/pept/transport/
H A DAcceptor.java60 * Used to determine if an <code>Acceptor</code> has been initialized.
63 * initialized.
65 public boolean initialized(); method in interface:Acceptor
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DBasicTypeSize.java31 private static boolean initialized = false; field in class:BasicTypeSize
H A DPerfMemory.java75 public static boolean initialized() { method in class:PerfMemory
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DExemptionMechanism.java67 private boolean initialized = false; field in class:ExemptionMechanism
283 * wrong state (e.g., has not yet been initialized)
286 if (!initialized) {
288 "ExemptionMechanism not initialized");
317 initialized = false;
321 initialized = true;
349 initialized = false;
353 initialized = true;
381 initialized = false;
385 initialized
[all...]
H A DMac.java89 // Has this object been initialized?
90 private boolean initialized = false; field in class:Mac
415 initialized = true;
437 initialized = true;
446 * initialized.
450 if (initialized == false) {
451 throw new IllegalStateException("MAC not initialized");
462 * initialized.
466 if (initialized == false) {
467 throw new IllegalStateException("MAC not initialized");
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsRadioButtonUI.java58 private boolean initialized = false; field in class:WindowsRadioButtonUI
79 if(!initialized) {
85 initialized = true;
94 initialized = false;
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dvis_FuncArray.c804 static int initialized; variable
827 if (!initialized) {
860 initialized = 1;
/openjdk7/jdk/src/windows/native/common/
H A Djni_util_md.c46 static BOOL initialized; local
48 if (!initialized) {
76 initialized = TRUE;
/openjdk7/langtools/src/share/classes/javax/annotation/processing/
H A DAbstractProcessor.java47 * initialized}.
64 private boolean initialized = false; field in class:AbstractProcessor
147 if (initialized)
153 initialized = true;
179 * initialized}, {@code false} otherwise.
181 * @return {@code true} if this object has been initialized,
185 return initialized;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/events/
H A DEventImpl.java42 public boolean initialized=false, bubbles=true, cancelable=false; field in class:EventImpl
63 initialized=true;
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DThreadLocalRandom.java43 * java.lang.Math} class, a {@code ThreadLocalRandom} is initialized
81 boolean initialized; field in class:ThreadLocalRandom
104 initialized = true;
123 if (initialized)
/openjdk7/jdk/src/solaris/native/com/sun/management/
H A DSolarisOperatingSystem.c90 static int initialized = 0; local
94 if(!initialized) {
97 initialized = 1;
100 return initialized ? 0 : -1;
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DCalendarSystem.java79 private volatile static boolean initialized = false; field in class:CalendarSystem
113 if (!initialized) {
116 initialized = true;
148 if (!initialized) {
/openjdk7/jdk/src/solaris/classes/sun/print/
H A DCUPSPrinter.java51 private boolean initialized; field in class:CUPSPrinter
97 initialized = false;
160 if (initialized) {
163 initialized = true;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/transport/
H A DSocketOrChannelAcceptorImpl.java96 protected boolean initialized; field in class:SocketOrChannelAcceptorImpl
114 initialized = false;
146 if (initialized) {
166 initialized = true;
201 public boolean initialized() method in class:SocketOrChannelAcceptorImpl
203 return initialized;
562 sock = "(not initialized)";
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DPolicyFile.java265 private boolean initialized = false; field in class:PolicyFile
292 if (initialized)
299 initialized = true;
330 initialized = false;
851 if (initialized)
872 if (initialized)
893 if (!initialized) {

Completed in 67 milliseconds

123