Searched refs:info (Results 1 - 25 of 37) sorted by relevance

12

/libcore/luni/src/main/java/java/sql/
H A DDriver.java56 * @param info
66 public Connection connect(String url, Properties info) throws SQLException; argument
95 * @param info
100 * to those supplied in the {@code info} parameter) in order to
105 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) argument
H A DDriverManager.java152 * @param info
165 public static Connection getConnection(String url, Properties info) throws SQLException { argument
179 Connection theConnection = theDriver.connect(url, info);
/libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
H A DPKIFailureInfo.java85 * The requested additional info is not available
128 for (PKIFailureInfo info : values()){
129 if (value == info.value) {
130 return info;
H A DTSTInfo.java285 TSTInfo info = (TSTInfo) object;
287 values[0] = ASN1Integer.fromIntValue(info.version);
288 values[1] = ObjectIdentifier.toIntArray(info.policy);
289 values[2] = info.messageImprint;
290 values[3] = info.serialNumber.toByteArray();
291 values[4] = info.genTime;
292 values[5] = info.accuracy;
293 values[6] = info.ordering;
294 values[7] = (info.nonce == null) ? null : info
[all...]
/libcore/luni/src/main/java/java/security/
H A DAuthProvider.java28 protected AuthProvider(String name, double version, String info) { super(name, version, info); } argument
H A DIdentity.java39 private String info = "no additional info"; field in class:Identity
207 s += " " + info;
266 * @param info
269 public void setInfo(String info) { argument
270 this.info = info;
279 return info;
/libcore/luni/src/main/java/org/apache/harmony/security/pkcs10/
H A DCertificationRequest.java44 private CertificationRequestInfo info; field in class:CertificationRequest
55 public CertificationRequest(CertificationRequestInfo info, argument
57 this.info = info;
62 private CertificationRequest(CertificationRequestInfo info, argument
64 this(info, algId, signature);
69 return info;
90 CertificationRequestInfo.ASN1, // info
106 values[0] = certReq.info;
/libcore/support/src/test/java/tests/resources/Package/
H A Dhyts_package.jar ... java.lang.String value () } a/b/package-info.class package-info.java package a. ...
/libcore/luni/src/test/java/libcore/java/sql/
H A DOldDriverPropertyInfoTest.java53 DriverPropertyInfo[] info = d.getPropertyInfo(connectionURL,
56 String name = info[0].name;
59 String[] choices = info[0].choices;
61 boolean required = info[0].required;
63 String description = info[0].description;
H A DOldStatementTest.java1304 Logger.global.info("*Cancel* thread started");
1312 Logger.global.info("*Cancel* thread, about to do stmt.cancel()");
1314 Logger.global.info("*Cancel* thread, stmt.cancel() done");
1319 Logger.global.info("*Cancel* thread terminated");
1333 Logger.global.info("*Insert* thread started");
1341 Logger.global.info("*Insert* thread, about to do insertion");
1344 Logger.global.info("*Insert* thread inserted");
1349 Logger.global.info("*Insert* thread terminated");
/libcore/luni/src/test/java/libcore/sqlite/
H A DOldJDBCDriverTest.java93 DriverPropertyInfo[] info = null;
95 info = jDriver.getPropertyInfo(getConnectionURL(), null);
96 assertNotNull(info);
97 assertTrue(info.length > 0);
102 assertNotNull(info);
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DSpiEngUtils.java62 public MyProvider(String name, String info, String key, String clName) { argument
63 super(name, 1.0, info);
/libcore/luni/src/main/java/java/lang/
H A DStringToReal.java263 StringExponentPair info = initialParse(s, length, true);
264 if (info.infinity || info.zero) {
265 return info.specialValue();
267 double result = parseDblImpl(info.s, (int) info.e);
271 return info.negative ? -result : result;
304 StringExponentPair info = initialParse(s, length, false);
305 if (info.infinity || info
[all...]
H A DSystem.java322 StructUtsname info = Libcore.os.uname();
323 p.put("os.arch", info.machine);
324 p.put("os.name", info.sysname);
325 p.put("os.version", info.release);
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DProvider2Test.java28 TestProvider(String name, double version, String info) { argument
29 super(name, version, info);
157 public MockProvider(String name, double version, String info) { argument
158 super(name, version, info);
H A DIdentity2Test.java235 String info = "This is the general information.";
238 sub.setInfo(info);
239 assertEquals("Wrong Info returned", info, sub.getInfo());
366 String[] info = {"This is the general information.", "test", "", null};
369 for (int i = 0; i < info.length; i++) {
371 sub.setInfo(info[i]);
372 assertEquals("Wrong Info returned", info[i], sub.getInfo());
374 fail("Unexpected exception for parameter " + info[i]);
H A DKeyStore3Test.java269 MyProvider(String name, double version, String info) { argument
270 super(name, version, info);
/libcore/libart/src/main/java/java/lang/reflect/
H A DAbstractMethod.java252 GenericInfo info = getMethodOrConstructorGenericInfo();
259 if (info.formalTypeParameters != null && info.formalTypeParameters.length > 0) {
261 for (int i = 0; i < info.formalTypeParameters.length; i++) {
262 Types.appendGenericType(sb, info.formalTypeParameters[i]);
263 if (i < info.formalTypeParameters.length - 1) {
275 Types.appendGenericType(sb, Types.getType(info.genericReturnType));
283 Types.appendArrayGenericType(sb, info.genericParameterTypes.getResolvedTypes());
287 Types.getTypeArray(info.genericExceptionTypes, false);
H A DConstructor.java136 GenericInfo info = getMethodOrConstructorGenericInfo();
137 return (TypeVariable<Constructor<T>>[]) info.formalTypeParameters.clone();
H A DMethod.java227 GenericInfo info = getMethodOrConstructorGenericInfo();
228 return (TypeVariable<Method>[]) info.formalTypeParameters.clone();
/libcore/luni/src/test/java/tests/support/
H A DThreadPool.java61 Logger.global.info("1 Task is removed");
111 Logger.global.info("Task is run");
/libcore/luni/src/test/java/tests/java/sql/
H A DStressTest.java155 .info("java.sql stress test: single thread and many operations.");
157 Logger.global.info("Opening " + maxConnections + " to database "
162 Logger.global.info("TasksPerConnection = " + Support_SQL.sqlMaxTasks
167 Logger.global.info(" creating " + tasksPerConnection
192 Logger.global.info("java.sql stress test: multiple threads and many operations.");
197 Logger.global.info("Opening "+numConnections+" to database "+Support_SQL.getFilename());
202 Logger.global.info(" creating "+tasksPerConnection+ " tasks for Connection "+i);
/libcore/
H A DAndroid.mk48 $(info ********************************************************************************)
49 $(info * libcore tests are skipped because environment variable LIBCORE_SKIP_TESTS=$(LIBCORE_SKIP_TESTS))
50 $(info ********************************************************************************)
/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jar ... throws java.lang.Exception } junit/extensions/package-info.class package-info.java package junit. ...
/libcore/luni/src/main/java/org/apache/harmony/security/utils/
H A DJarUtils.java70 ContentInfo info = (ContentInfo)ContentInfo.ASN1.decode(bis);
71 SignedData signedData = info.getSignedData();

Completed in 699 milliseconds

12