Searched defs:info (Results 1 - 25 of 58) sorted by relevance

123

/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/pkcs/
H A DAuthenticatedSafe.java12 ContentInfo[] info; field in class:AuthenticatedSafe
17 info = new ContentInfo[seq.size()];
19 for (int i = 0; i != info.length; i++)
21 info[i] = ContentInfo.getInstance(seq.getObjectAt(i));
26 ContentInfo[] info)
28 this.info = info;
33 return info;
40 for (int i = 0; i != info.length; i++)
42 v.add(info[
25 AuthenticatedSafe( ContentInfo[] info) argument
[all...]
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/spi/
H A DMidiDeviceProvider.java25 public abstract MidiDevice getDevice(MidiDevice.Info info); argument
29 public boolean isDeviceSupported(MidiDevice.Info info) { argument
32 if (info.equals(element)) {
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/spi/
H A DMixerProvider.java25 public abstract Mixer getMixer(Mixer.Info info); argument
29 public boolean isMixerSupported(Mixer.Info info) { argument
32 if (info.equals(element)) {
/dalvik/libcore/security/src/main/java/java/security/
H A DAuthProvider.java43 * @param info
46 protected AuthProvider(String name, double version, String info) { argument
47 super(name, version, info);
H A DIdentity.java41 private String info = "no additional info"; //$NON-NLS-1$ field in class:Identity
236 s += " " + info; //$NON-NLS-1$
311 * @param info
317 public void setInfo(String info) { argument
322 this.info = info;
334 return info;
/dalvik/libcore/security/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;
64 private CertificationRequest(CertificationRequestInfo info, argument
66 this(info, algId, signature);
78 * @return Returns the info.
81 return info;
105 CertificationRequestInfo.ASN1, // info
123 values[0] = certReq.info;
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/cms/
H A DRecipientInfo.java14 DEREncodable info; field in class:RecipientInfo
17 KeyTransRecipientInfo info)
19 this.info = info;
23 KeyAgreeRecipientInfo info)
25 this.info = new DERTaggedObject(true, 1, info);
29 KEKRecipientInfo info)
31 this.info = new DERTaggedObject(true, 2, info);
16 RecipientInfo( KeyTransRecipientInfo info) argument
22 RecipientInfo( KeyAgreeRecipientInfo info) argument
28 RecipientInfo( KEKRecipientInfo info) argument
34 RecipientInfo( PasswordRecipientInfo info) argument
40 RecipientInfo( OtherRecipientInfo info) argument
46 RecipientInfo( DERObject info) argument
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/ocsp/
H A DCertStatus.java30 RevokedInfo info)
33 value = info;
29 CertStatus( RevokedInfo info) argument
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
H A DBouncyCastleProvider.java40 private static String info = "BouncyCastle Security Provider v1.34"; field in class:BouncyCastleProvider
51 super(PROVIDER_NAME, 1.34, info);
H A DJCEDHPublicKey.java58 SubjectPublicKeyInfo info)
60 DHParameter params = new DHParameter((ASN1Sequence)info.getAlgorithmId().getParameters());
65 derY = (DERInteger)info.getPublicKey();
69 throw new IllegalArgumentException("invalid info structure in DH public key");
95 SubjectPublicKeyInfo info = new SubjectPublicKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.dhpublicnumber, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).getDERObject()), new DERInteger(y));
97 return info.getDEREncoded();
57 JCEDHPublicKey( SubjectPublicKeyInfo info) argument
H A DJCERSAPublicKey.java46 SubjectPublicKeyInfo info)
50 RSAPublicKeyStructure pubKey = new RSAPublicKeyStructure((ASN1Sequence)info.getPublicKey());
57 throw new IllegalArgumentException("invalid info structure in RSA public key");
94 SubjectPublicKeyInfo info = new SubjectPublicKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.THE_ONE), new RSAPublicKeyStructure(getModulus(), getPublicExponent()).getDERObject());
97 return info.getDEREncoded();
45 JCERSAPublicKey( SubjectPublicKeyInfo info) argument
H A DJDKDSAPublicKey.java54 SubjectPublicKeyInfo info)
56 DSAParameter params = new DSAParameter((ASN1Sequence)info.getAlgorithmId().getParameters());
61 derY = (DERInteger)info.getPublicKey();
65 throw new IllegalArgumentException("invalid info structure in DSA public key");
84 SubjectPublicKeyInfo info = new SubjectPublicKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG()).getDERObject()), new DERInteger(y));
86 return info.getDEREncoded();
53 JDKDSAPublicKey( SubjectPublicKeyInfo info) argument
H A DJCEDHPrivateKey.java57 PrivateKeyInfo info)
59 DHParameter params = new DHParameter((ASN1Sequence)info.getAlgorithmId().getParameters());
60 DERInteger derX = (DERInteger)info.getPrivateKey();
103 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).getDERObject()), new DERInteger(getX()));
105 return info.getDEREncoded();
56 JCEDHPrivateKey( PrivateKeyInfo info) argument
H A DJCERSAPrivateCrtKey.java87 * construct an RSA key from a private key info object.
90 PrivateKeyInfo info)
92 this(new RSAPrivateKeyStructure((ASN1Sequence)info.getPrivateKey()));
130 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.THE_ONE), new RSAPrivateKeyStructure(getModulus(), getPublicExponent(), getPrivateExponent(), getPrimeP(), getPrimeQ(), getPrimeExponentP(), getPrimeExponentQ(), getCrtCoefficient()).getDERObject());
133 return info.getDEREncoded();
89 JCERSAPrivateCrtKey( PrivateKeyInfo info) argument
H A DJDKDSAPrivateKey.java51 PrivateKeyInfo info)
53 DSAParameter params = new DSAParameter((ASN1Sequence)info.getAlgorithmId().getParameters());
54 DERInteger derX = (DERInteger)info.getPrivateKey();
90 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG()).getDERObject()), new DERInteger(getX()));
92 return info.getDEREncoded();
50 JDKDSAPrivateKey( PrivateKeyInfo info) argument
/dalvik/libcore/sql/src/main/java/SQLite/
H A DJDBCDriver.java67 public Connection connect(String url, Properties info) argument
74 if (info != null) {
75 args[1] = info.getProperty("encoding");
98 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) argument
/dalvik/libcore/sql/src/main/java/java/sql/
H A DDriver.java60 * @param info
70 public Connection connect(String url, Properties info) throws SQLException; argument
99 * @param info
104 * to those supplied in the {@code info} parameter) in order to
109 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) argument
/dalvik/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);
/dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
H A DAuthProviderTest.java71 AuthProviderStub ap = new AuthProviderStub("name", 1.0, "info");
78 assertEquals("info", ap.getInfo());
102 public AuthProviderStub(String name, double version, String info) { argument
103 super( name, version, info);
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DTestHelper_Driver1.java76 public Connection connect(String url, Properties info) throws SQLException { argument
105 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) argument
H A DTestHelper_Driver4.java74 public Connection connect(String url, Properties info) throws SQLException { argument
89 if (info == null) {
92 String user = (String) info.get(userProperty);
93 String password = (String) info.get(passwordProperty);
121 public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) argument
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
H A DLine.java33 public boolean matches(Line.Info info) { argument
34 return lineClass.isAssignableFrom(info.getLineClass());
H A DPort.java59 public boolean matches(Line.Info info) { argument
60 if (super.matches(info) && Port.Info.class.equals(info.getClass())
61 && name.equals(((Port.Info) info).getName())
62 && isSource == ((Port.Info) info).isSource()) {
/dalvik/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. ...
/dalvik/dx/src/com/android/dx/ssa/
H A DDominators.java32 * and an addition of a child field to the DFS info. In reality, the constant
37 * of various info about parents. We then use this info to calculate the
38 * dominators, using union-find structures to link together the DFS info,
54 private final DFSInfo[] info; field in class:Dominators
58 /** {@code non-null;} the raw dominator info */
65 * @param domInfos {@code non-null;} the raw dominator info
66 * @param postdom true for postdom information, false for normal dom info
74 this.info = new DFSInfo[blocks.size() + 2];
83 * @param domInfos {@code non-null;} the raw dominator info
[all...]

Completed in 410 milliseconds

123