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

/libcore/ojluni/src/main/java/java/security/
H A DAlgorithmParameters.java41 * initialized via a call to {@code init}, using an appropriate parameter
175 // Has this object been initialized?
176 private boolean initialized = false; field in class:AlgorithmParameters
214 * <p> The returned parameter object must be initialized via a call to
256 * <p>The returned parameter object must be initialized via a call to
303 * <p>The returned parameter object must be initialized via a call to
357 * object, or if this parameter object has already been initialized.
362 if (this.initialized)
363 throw new InvalidParameterSpecException("already initialized");
365 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.java241 // Has this keystore been initialized (loaded)?
242 private boolean initialized = false; field in class:KeyStore
1048 * @exception KeyStoreException if the keystore has not been initialized
1059 if (!initialized) {
1078 * @exception KeyStoreException if the keystore has not been initialized
1084 if (!initialized) {
1111 * @exception KeyStoreException if the keystore has not been initialized
1117 if (!initialized) {
1131 * @exception KeyStoreException if the keystore has not been initialized
1137 if (!initialized) {
[all...]
H A DProvider.java129 private transient boolean initialized; field in class:Provider
146 initialized = true;
656 if (!initialized) {
678 // used for services added via putService(), initialized on demand
710 initialized = true;
1429 // if null, the values have not been initialized
1779 * 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.java175 // Has this object been initialized?
176 private boolean initialized = false; field in class:Mac
473 initialized = true;
502 initialized = true;
518 * initialized.
522 if (initialized == false) {
523 throw new IllegalStateException("MAC not initialized");
534 * initialized.
538 if (initialized == false) {
539 throw new IllegalStateException("MAC not initialized");
[all...]
H A DCipher.java290 // Flag which indicates whether or not this cipher has been initialized
291 private boolean initialized = false; field in class:Cipher
294 // cipher has been initialized.
637 * (e.g., has not yet been initialized)
641 if (!initialized && !(this instanceof NullCipher)) {
642 throw new IllegalStateException("Cipher not initialized");
674 * cipher requires algorithm parameters but was not initialized with any.
721 * <p>The cipher is initialized for one of the following four operations:
729 * initialized for encryption or key wrapping, and raise an
731 * initialized fo
[all...]
/libcore/dalvik/src/main/java/dalvik/system/
H A DDexPathList.java569 private boolean initialized; field in class:DexPathList.Element
645 if (initialized) {
650 initialized = true;
667 // Mark this element as initialized only after we've successfully created
672 initialized = true;
720 private boolean initialized; field in class:DexPathList.NativeLibraryElement
751 if (initialized) {
756 initialized = true;
773 // Mark this element as initialized only after we've successfully created
778 initialized
[all...]
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DThreadLocalRandom.java54 * java.lang.Math} class, a {@code ThreadLocalRandom} is initialized
110 * "initialized" field for the sake of rejecting user calls to
114 * containing "rnd" and "initialized" fields to ensure
143 boolean initialized; field in class:ThreadLocalRandom
147 initialized = true; // false during super() call
185 if (initialized)
944 * Returns the pseudo-randomly initialized or updated secondary seed.
967 * @serialField initialized boolean
972 new ObjectStreamField("initialized", boolean.class),
985 fields.put("initialized", tru
[all...]

Completed in 2659 milliseconds