Searched defs:pair (Results 1 - 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/security/
H A DSigner.java114 * Sets the key pair (public key and private key) for this signer.
118 * as its argument to see if it's ok to set the key pair.
120 * @param pair an initialized key pair.
122 * @exception InvalidParameterException if the key pair is not
124 * @exception KeyException if the key pair cannot be set for any
128 * setting the key pair.
132 public final void setKeyPair(KeyPair pair) argument
135 final PublicKey pub = pair.getPublic();
136 PrivateKey priv = pair
[all...]
/libcore/luni/src/main/java/java/util/concurrent/atomic/
H A DAtomicMarkableReference.java35 private volatile Pair<V> pair; field in class:AtomicMarkableReference
45 pair = Pair.of(initialRef, initialMark);
54 return pair.reference;
63 return pair.mark;
75 Pair<V> pair = this.pair;
76 markHolder[0] = pair.mark;
77 return pair.reference;
120 Pair<V> current = pair;
136 Pair<V> current = pair;
[all...]
H A DAtomicStampedReference.java35 private volatile Pair<V> pair; field in class:AtomicStampedReference
45 pair = Pair.of(initialRef, initialStamp);
54 return pair.reference;
63 return pair.stamp;
75 Pair<V> pair = this.pair;
76 stampHolder[0] = pair.stamp;
77 return pair.reference;
120 Pair<V> current = pair;
136 Pair<V> current = pair;
[all...]
/libcore/ojluni/src/main/java/sun/net/www/
H A DMimeTable.java319 String pair = tokenizer.nextToken();
320 parse(pair, newEntry);
326 void parse(String pair, MimeEntry entry) { argument
332 StringTokenizer tokenizer = new StringTokenizer(pair, "=");

Completed in 311 milliseconds