Searched refs:initialized (Results 1 - 11 of 11) sorted by relevance

/libcore/ojluni/src/main/java/java/security/
H A DAlgorithmParameters.java41 * initialized via a call to <code>init</code>, using an appropriate parameter
131 // Has this object been initialized?
132 private boolean initialized = false; field in class:AlgorithmParameters
170 * <p> The returned parameter object must be initialized via a call to
212 * <p>The returned parameter object must be initialized via a call to
259 * <p>The returned parameter object must be initialized via a call to
313 * object, or if this parameter object has already been initialized.
318 if (this.initialized)
319 throw new InvalidParameterSpecException("already initialized");
321 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 DKeyStore.java242 // Has this keystore been initialized (loaded)?
243 private boolean initialized = false; field in class:KeyStore
811 * @exception KeyStoreException if the keystore has not been initialized
822 if (!initialized) {
841 * @exception KeyStoreException if the keystore has not been initialized
847 if (!initialized) {
874 * @exception KeyStoreException if the keystore has not been initialized
880 if (!initialized) {
894 * @exception KeyStoreException if the keystore has not been initialized
900 if (!initialized) {
[all...]
H A DProvider.java127 private transient boolean initialized; field in class:Provider
144 initialized = true;
409 if (!initialized) {
431 // used for services added via putService(), initialized on demand
463 initialized = true;
1070 // if null, the values have not been initialized
1409 * keys defined. Parses the attributes if not yet initialized.
/libcore/ojluni/src/main/java/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.java153 // Has this object been initialized?
154 private boolean initialized = false; field in class:Mac
449 initialized = true;
471 initialized = true;
480 * initialized.
484 if (initialized == false) {
485 throw new IllegalStateException("MAC not initialized");
496 * initialized.
500 if (initialized == false) {
501 throw new IllegalStateException("MAC not initialized");
[all...]
H A DCipher.java680 // Flag which indicates whether or not this cipher has been initialized
681 private boolean initialized = false; field in class:Cipher
684 // cipher has been initialized.
1027 * (e.g., has not yet been initialized)
1031 if (!initialized && !(this instanceof NullCipher)) {
1032 throw new IllegalStateException("Cipher not initialized");
1064 * cipher requires algorithm parameters but was not initialized with any.
1096 * <p>The cipher is initialized for one of the following four operations:
1104 * initialized for encryption or key wrapping, and raise an
1106 * initialized fo
[all...]
/libcore/ojluni/src/main/java/sun/net/www/http/
H A DHttpCapture.java60 private static boolean initialized = false; field in class:HttpCapture
65 initialized = true;
109 return initialized;
/libcore/dalvik/src/main/java/dalvik/system/
H A DDexPathList.java500 private boolean initialized; field in class:DexPathList.Element
521 if (initialized) {
525 initialized = true;
/libcore/luni/src/main/java/java/util/concurrent/
H A DThreadLocalRandom.java25 * java.lang.Math} class, a {@code ThreadLocalRandom} is initialized
81 * "initialized" field for the sake of rejecting user calls to
85 * containing "rnd" and "initialized" fields to ensure
114 boolean initialized; field in class:ThreadLocalRandom
118 initialized = true; // false during super() call
156 if (initialized)
915 * Returns the pseudo-randomly initialized or updated secondary seed.
938 * @serialField initialized boolean
943 new ObjectStreamField("initialized", boolean.class),
956 fields.put("initialized", tru
[all...]
/libcore/ojluni/src/main/native/
H A DInet6AddressImpl.c69 static int initialized = 0; variable

Completed in 2099 milliseconds