Searched defs:parameters (Results 1 - 10 of 10) sorted by relevance

/libcore/luni/src/main/java/javax/net/ssl/
H A DCertPathTrustManagerParameters.java23 * Certification path parameters to provide to certification path
34 * certification path parameters.
36 * @param parameters
37 * the certification path parameters.
39 public CertPathTrustManagerParameters(CertPathParameters parameters) { argument
40 param = (CertPathParameters) parameters.clone();
44 * Returns a copy of the certification path parameters.
46 * @return a copy of the certification path parameters.
H A DKeyStoreBuilderParameters.java26 * The parameters for {@code KeyManager}s. The parameters are a list of
54 * @param parameters
59 public KeyStoreBuilderParameters(List<KeyStore.Builder> parameters) { argument
60 if (parameters == null) {
61 throw new NullPointerException("parameters == null");
63 if (parameters.isEmpty()) {
64 throw new IllegalArgumentException("parameters.isEmpty()");
66 ksbuilders = Collections.unmodifiableList(new ArrayList<KeyStore.Builder>(parameters));
71 * with this parameters instanc
[all...]
/libcore/support/src/test/java/tests/security/
H A DAlgorithmParameterAsymmetricHelper.java42 public void test(AlgorithmParameters parameters) { argument
66 cipher.init(Cipher.ENCRYPT_MODE, keyPair.getPublic(), parameters);
83 cipher.init(Cipher.DECRYPT_MODE, keyPair.getPrivate(), parameters);
H A DAlgorithmParameterKeyAgreementHelper.java36 public void test(AlgorithmParameters parameters) { argument
H A DAlgorithmParameterSignatureHelper.java44 public void test(AlgorithmParameters parameters) { argument
56 parameterSpec = parameters.getParameterSpec(parameterSpecClass);
H A DAlgorithmParameterSymmetricHelper.java50 public void test(AlgorithmParameters parameters) { argument
79 cipher.init(Cipher.ENCRYPT_MODE, key, parameters);
96 cipher.init(Cipher.DECRYPT_MODE, key, parameters);
/libcore/luni/src/main/java/org/apache/harmony/security/x509/
H A DAlgorithmIdentifier.java46 * parameters ANY DEFINED BY algorithm OPTIONAL
55 /** the value of parameters field */
56 private byte[] parameters; field in class:AlgorithmIdentifier
64 public AlgorithmIdentifier(String algorithm, byte[] parameters) { argument
65 this(algorithm, parameters, null);
68 private AlgorithmIdentifier(String algorithm, byte[] parameters, byte[] encoding) { argument
70 this.parameters = parameters;
97 * Returns the value of parameters field of the structure.
100 return parameters;
[all...]
/libcore/luni/src/main/java/java/util/logging/
H A DLogRecord.java134 // The parameters.
135 private transient Object[] parameters; field in class:LogRecord
176 this.parameters = null;
266 * Gets the parameters.
268 * @return the array of parameters or {@code null} if there are no
269 * parameters.
272 return parameters;
276 * Sets the parameters.
278 * @param parameters
279 * the array of parameters t
281 setParameters(Object[] parameters) argument
[all...]
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DHandshakeProtocol.java81 protected SSLParametersImpl parameters; field in class:HandshakeProtocol
164 this.parameters = engineOwner.sslParameters;
169 this.parameters = socketOwner.sslParameters;
/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...

Completed in 381 milliseconds