Searched refs:param (Results 1 - 25 of 43) sorted by relevance

12

/libcore/ojluni/src/main/java/java/sql/
H A DParameterMetaData.java59 * @param param the first parameter is 1, the second is 2, ...
67 int isNullable(int param) throws SQLException; argument
90 * @param param the first parameter is 1, the second is 2, ...
95 boolean isSigned(int param) throws SQLException; argument
107 * @param param the first parameter is 1, the second is 2, ...
112 int getPrecision(int param) throws SQLException; argument
118 * @param para
123 getScale(int param) argument
134 getParameterType(int param) argument
145 getParameterTypeName(int param) argument
161 getParameterClassName(int param) argument
195 getParameterMode(int param) argument
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
H A DMethodTest.java110 public void publicVoidVarargs(Object... param){} argument
111 public void publicVoidArray(Object[] param){} argument
124 public void invokeCastTest1(byte param) { argument
127 public void invokeCastTest1(short param) { argument
130 public void invokeCastTest1(int param) { argument
133 public void invokeCastTest1(long param) { argument
136 public void invokeCastTest1(float param) { argument
139 public void invokeCastTest1(double param) { argument
142 public void invokeCastTest1(char param) { argument
145 public void invokeCastTest1(boolean param) { argument
[all...]
H A DGenericMethodsTests.java34 public <T> void paramNoReturn(T param) {} argument
39 public <T> T paramReturn(T param) {return param;} argument
53 * @param method the method
64 * @param method the method
77 * @param method the declaring method
H A DWildcardTypeTest.java33 public <T extends BoundedWildcardsGenericMethods> void lowerBoundedParamNoReturn( BoundedWildcardsGenericMethods<? super T> param) {} argument
35 public <T extends BoundedWildcardsGenericMethods> void upperBoundedParamNoReturn( BoundedWildcardsGenericMethods<? extends T> param) {} argument
37 public <T extends BoundedWildcardsGenericMethods> T lowerBoundedParamReturn(BoundedWildcardsGenericMethods<? super T> param) { return (T) new Object(); } argument
39 public <T extends BoundedWildcardsGenericMethods> T upperBoundedParamReturn(BoundedWildcardsGenericMethods<? extends T> param) { return (T) new Object();} argument
55 * @param method the declaring method
/libcore/luni/src/test/java/tests/security/interfaces/
H A DDSAKeyTest.java36 DSAParams param = new DSAParameterSpec(Util.P, Util.Q, Util.G);
39 gen.initialize((DSAParameterSpec) param);
44 assertDSAParamsEquals(param, key.getParams());
48 assertDSAParamsEquals(param, key.getParams());
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
H A DKeyStoreBuilderParametersTest.java78 String[] param = {"Parameter1", "Parameter2", "Parameter3"};
80 for (int i = 0; i < param.length; i++) {
81 ls.add(param[i]);
91 assertEquals(res.length, param.length);
93 assertEquals(param[i], res[i]);
/libcore/luni/src/test/java/tests/java/security/
H A DAlgorithmParameterGeneratorSpiTest.java48 AlgorithmParameters param = algParGen.engineGenerateParameters();
49 assertNull("Not null parameters", param);
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DMySignature2.java75 protected void engineSetParameter(String param, Object value) argument
80 protected Object engineGetParameter(String param) argument
H A DMyKeyPairGenerator1.java82 public void initialize(AlgorithmParameterSpec param, SecureRandom random) argument
87 if (param == null) {
88 throw new InvalidAlgorithmParameterException("Incorrect param");
90 paramSpec = param;
H A DMySignature1.java60 * @param algorithm
103 protected void engineSetParameter(String param, Object value) argument
108 protected Object engineGetParameter(String param) argument
H A DTestKeyStoreSpi.java162 public void engineLoad(LoadStoreParameter param) throws IOException, argument
164 if (param == null) {
169 ProtectionParameter pParam = param.getProtectionParameter();
241 public void engineStore(LoadStoreParameter param) throws IOException, argument
243 if (param == null) {
247 ProtectionParameter pParam = param.getProtectionParameter();
H A DMyKeyStore.java225 public void engineStore(KeyStore.LoadStoreParameter param) argument
227 if (param == null) {
228 throw new IOException("param is null");
232 public void engineLoad(KeyStore.LoadStoreParameter param) argument
234 if (!(param instanceof MyLoadStoreParams)) {
235 throw new IllegalArgumentException("param is not MyLoadStoreParams: " + param);
/libcore/luni/src/test/java/libcore/java/security/
H A DMockSignatureSpi.java99 protected void engineSetParameter(String param, Object value) throws InvalidParameterException { argument
107 protected Object engineGetParameter(String param) throws InvalidParameterException { argument
/libcore/luni/src/test/java/libcore/java/security/cert/
H A DFakeOidProvider.java60 protected void engineSetParameter(String param, Object value) argument
65 protected Object engineGetParameter(String param) throws InvalidParameterException { argument
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DSignatureSpiTest.java95 protected Object engineGetParameter(String param)
113 protected void engineSetParameter(String param, Object value)
148 public Object engineGetParameter(String param) { argument
162 public void engineSetParameter(String param, Object value) { argument
182 public Object engineGetParameter(String param) { argument
196 public void engineSetParameter(String param, Object value) { argument
223 protected Object engineGetParameter(String param) argument
243 protected void engineSetParameter(String param, Object value) argument
/libcore/ojluni/src/main/java/sun/security/jca/
H A DGetInstance.java140 * @param type the type of engine (e.g. MessageDigest)
141 * @param clazz the Spi class that the implementation must subclass
144 * @param algorithm the name of the algorithm (or alias), e.g. MD5
145 * @param provider the provider (String or Provider object)
146 * @param param the parameter to pass to the Spi constructor
185 String algorithm, Object param) throws NoSuchAlgorithmException {
190 return getInstance(s, clazz, param);
210 String algorithm, Object param, String provider)
212 return getInstance(getService(type, algorithm, provider), clazz, param);
184 getInstance(String type, Class<?> clazz, String algorithm, Object param) argument
209 getInstance(String type, Class<?> clazz, String algorithm, Object param, String provider) argument
221 getInstance(String type, Class<?> clazz, String algorithm, Object param, Provider provider) argument
241 getInstance(Service s, Class<?> clazz, Object param) argument
[all...]
/libcore/ojluni/src/main/native/
H A Djvm_md.h35 #include <sys/param.h> /* For MAXPATHLEN */
/libcore/ojluni/src/main/java/java/security/
H A DKeyStoreSpi.java64 * @param alias the alias name
65 * @param password the password for recovering the key
85 * @param alias the alias name
109 * @param alias the alias name
119 * @param alias the alias name
138 * @param alias the alias name
139 * @param key the key to be associated with the alias
140 * @param password the password to protect the key
141 * @param chain the certificate chain for the corresponding public
166 * @param alia
318 engineStore(KeyStore.LoadStoreParameter param) argument
380 engineLoad(KeyStore.LoadStoreParameter param) argument
[all...]
H A DSignatureSpi.java64 * @param publicKey the public key of the identity whose signature is
77 * @param privateKey the private key of the identity whose signature
93 * @param privateKey the private key of the identity whose signature
95 * @param random the source of randomness
111 * @param b the byte to use for the update.
122 * @param b the array of bytes
123 * @param off the offset to start from in the array of bytes
124 * @param len the number of bytes to use, starting at offset
139 * @param input the ByteBuffer
202 * @param outbu
307 engineSetParameter(String param, Object value) argument
374 engineGetParameter(String param) argument
[all...]
H A DSignature.java299 * @param algorithm the standard string name of the algorithm.
339 * @param algorithm the standard name of the algorithm requested.
465 * @param algorithm the name of the algorithm requested.
471 * @param provider the name of the provider.
517 * @param algorithm the name of the algorithm requested.
523 * @param provider the provider.
594 * @param publicKey the public key of the identity whose signature is
624 * @param certificate the certificate of the identity whose signature is
672 * @param privateKey the private key of the identity whose signature
697 * @param privateKe
1010 setParameter(String param, Object value) argument
1074 getParameter(String param) argument
1439 engineSetParameter(String param, Object value) argument
1451 engineGetParameter(String param) argument
1552 engineSetParameter(String param, Object value) argument
1557 engineGetParameter(String param) argument
[all...]
H A DKeyStore.java295 * @param password the password, which may be {@code null}
310 * @param password the password, which may be {@code null}
311 * @param protectionAlgorithm the encryption algorithm name, for
318 * @param protectionParameters the encryption algorithm parameter
424 * @param handler the CallbackHandler
508 * @param privateKey the {@code PrivateKey}
509 * @param chain an array of {@code Certificate}s
536 * @param privateKey the {@code PrivateKey}
537 * @param chain an array of {@code Certificate}s
542 * @param attribute
1439 store(LoadStoreParameter param) argument
1514 load(LoadStoreParameter param) argument
[all...]
/libcore/luni/src/test/java/tests/targets/security/
H A DSignatureTestMD2withRSA.java136 protected Object engineGetParameter(String param) argument
152 protected void engineSetParameter(String param, Object value) argument
/libcore/ojluni/src/main/java/java/lang/reflect/
H A DExecutable.java154 String param = params[j].getTypeName();
156 param = param.replaceFirst("\\[\\]$", "...");
157 sb.append(param);
296 final Parameter param = params[i];
297 if (param.isSynthetic() || param.isImplicit()) {
/libcore/luni/src/test/java/libcore/java/lang/reflect/
H A DOldGenericReflectionCornerCases.java36 void wildcardEquality(Pair<? extends T, ? extends T> param) {} argument
79 void wildcardUnEquality(Pair<? extends T, ? super T> param) {} argument
121 void multipleBoundedWildcardUnEquality(Pair<? extends T, ? super T> param) {} argument
176 void multipleBoundedWildcardEquality(Pair<? extends T, ? extends T> param) {} argument
/libcore/ojluni/src/main/java/sun/security/util/
H A DDisabledAlgorithmConstraints.java69 * @param propertyName the security property name that define the disabled
80 * @param propertyName the security property name that define the disabled
82 * @param decomposer an alternate AlgorithmDecomposer.
153 public boolean checkProperty(String param) { argument
154 param = param.toLowerCase(Locale.ENGLISH);
156 if (block.toLowerCase(Locale.ENGLISH).indexOf(param) >= 0) {
412 * @param key Public key
422 * @param cp CertificateParameter containing certificate and state info

Completed in 515 milliseconds

12