Searched defs:provider (Results 251 - 275 of 318) sorted by relevance

<<111213

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DBasicChecker.java26 package sun.security.provider.certpath;
77 * @param sigProvider the name of the signature provider
148 * @param sigProvider a String containing the signature provider
H A DBuilder.java26 package sun.security.provider.certpath;
H A DForwardBuilder.java26 package sun.security.provider.certpath;
H A DOCSPChecker.java26 package sun.security.provider.certpath;
51 import static sun.security.provider.certpath.OCSP.*;
H A DReverseState.java26 package sun.security.provider.certpath;
/openjdk7/jdk/src/share/classes/sun/tools/attach/
H A DHotSpotVirtualMachine.java44 HotSpotVirtualMachine(AttachProvider provider, String id) { argument
45 super(provider, id);
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DEPollPort.java83 EPollPort(AsynchronousChannelProvider provider, ThreadPool pool) argument
86 super(provider, pool);
H A DKQueuePort.java80 KQueuePort(AsynchronousChannelProvider provider, ThreadPool pool) argument
83 super(provider, pool);
/openjdk7/jdk/src/solaris/classes/sun/security/provider/
H A DNativePRNG.java26 package sun.security.provider;
144 private volatile sun.security.provider.SecureRandom mixRandom;
173 private sun.security.provider.SecureRandom getMixRandom() {
174 sun.security.provider.SecureRandom r = mixRandom;
179 r = new sun.security.provider.SecureRandom();
/openjdk7/jdk/src/solaris/classes/sun/tools/attach/
H A DBsdVirtualMachine.java55 BsdVirtualMachine(AttachProvider provider, String vmid) argument
58 super(provider, vmid);
60 // This provider only understands pids
H A DLinuxVirtualMachine.java56 LinuxVirtualMachine(AttachProvider provider, String vmid) argument
59 super(provider, vmid);
61 // This provider only understands pids
H A DSolarisVirtualMachine.java54 SolarisVirtualMachine(AttachProvider provider, String vmid) argument
57 super(provider, vmid);
58 // This provider only understands process-ids (pids).
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/
H A DProvider.java40 * Service provider for <code>ServiceDelegate</code> and
95 * Creates a new provider object.
97 * The algorithm used to locate the provider subclass to use consists
123 public static Provider provider() { method in class:Provider
125 Object provider = getProviderUsingServiceLoader();
126 if (provider == null) {
127 provider = FactoryFinder.find(JAXWSPROVIDER_PROPERTY, DEFAULT_JAXWSPROVIDER);
129 if (!(provider instanceof Provider)) {
138 provider.getClass().getClassLoader().getResource(classnameAsResource) +
141 return (Provider) provider;
[all...]
/openjdk7/jdk/test/sun/security/pkcs11/Signature/
H A DTestDSA.java86 private static void verify(Provider provider, String alg, PublicKey key, byte[] data, byte[] sig, boolean result) throws Exception { argument
87 Signature s = Signature.getInstance(alg, provider);
107 public void main(Provider provider) throws Exception { argument
110 System.out.println("Testing provider " + provider + "...");
112 if (provider.getService("Signature", "SHA1withDSA") == null) {
117 KeyFactory kf = KeyFactory.getInstance("DSA", provider);
124 verify(provider, "SHA1withDSA", publicKey, data1Raw, sig1a, true);
125 verify(provider, "SHA1withDSA", publicKey, data1Raw, sig1b, true);
126 verify(provider, "SHA1withDS
140 testSigning(Provider provider, PrivateKey privateKey, PublicKey publicKey) argument
[all...]
/openjdk7/jdk/test/sun/security/pkcs11/ec/
H A DTestECDSA.java83 private static void verify(Provider provider, String alg, PublicKey key, byte[] data, byte[] sig, boolean result) throws Exception { argument
84 Signature s = Signature.getInstance(alg, provider);
100 private static void sign(Provider provider, String alg, PrivateKey key, byte[] data) throws Exception { argument
101 Signature s = Signature.getInstance(alg, provider);
112 public void main(Provider provider) throws Exception { argument
115 if (provider.getService("Signature", "SHA1withECDSA") == null) {
119 Providers.setAt(provider, 1);
122 KeyPairGenerator kpg = KeyPairGenerator.getInstance("EC", provider);
135 test(provider, pub192, priv192, sig192);
136 test(provider, pub16
145 test(Provider provider, String pub, String priv, byte[] sig) argument
170 testSigning(Provider provider, PrivateKey privateKey, PublicKey publicKey) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DPolicyParser.java26 package sun.security.provider;
276 public void setKeyStoreProvider(String provider) { argument
277 keyStoreProvider = provider;
362 // parse keystore provider
364 return; // provider optional
372 ResourcesMgr.getString("expected.keystore.provider"));
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DMidiSystem.java108 * The property value consists of the provider class name
110 * The provider class name is the fully-qualified
112 * MIDI device provider} class. The device name is matched against
119 * <p>If the provider class is specified, and it can be
123 * from the provider. Otherwise, or when these devices
152 * be found, the first <code>Receiver</code> from that provider
191 MidiDeviceProvider provider = (MidiDeviceProvider) providers.get(i);
192 MidiDevice.Info[] tmpinfo = provider.getDeviceInfo();
217 MidiDeviceProvider provider = (MidiDeviceProvider) providers.get(i);
218 if (provider
1196 getNamedDevice(String deviceName, MidiDeviceProvider provider, Class deviceClass) argument
1228 getNamedDevice(String deviceName, MidiDeviceProvider provider, Class deviceClass, boolean allowSynthesizer, boolean allowSequencer) argument
1315 getFirstDevice(MidiDeviceProvider provider, Class deviceClass) argument
1345 getFirstDevice(MidiDeviceProvider provider, Class deviceClass, boolean allowSynthesizer, boolean allowSequencer) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DAudioSystem.java104 * The property value consists of the provider class name
106 * The provider class name is the fully-qualified
108 * mixer provider} class. The mixer name is matched against
115 * <p>If the provider class is specified, and it can be
118 * from the provider. Otherwise, or when these mixers
145 * of the specified provider will be returned, regardless of name.
239 MixerProvider provider = (MixerProvider) providers.get(i);
240 Mixer.Info[] infos = provider.getMixerInfo();
244 return provider.getMixer(infos[ii]);
428 MixerProvider provider
1502 getNamedMixer(String mixerName, MixerProvider provider, Line.Info info) argument
1550 getFirstMixer(MixerProvider provider, Line.Info info, boolean isMixingRequired) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DCachedRowSet.java81 * have an <code>RIOptimisticProvider</code> object as its synchronization provider.
83 * implementations included in the RI, is the default provider that the
85 * provider is specified.
274 * The default reference implementation provider, <code>RIOptimisticProvider</code>,
722 * Some provider implementations may use locks to ensure that there are no
739 * synchronization provider's writer fails to write the updates
792 * Some provider implementations may use locks to ensure that there are no
810 * synchronization provider's writer fails to write the updates
1080 * SyncProvider provider =
1081 * SyncFactory.getInstance("javax.sql.rowset.provider
1133 setSyncProvider(String provider) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/
H A DXMLSignatureFactory.java78 * For example, a service provider that supports the
141 * class. Unless otherwise documented by a specific provider, threads that
154 private Provider provider; field in class:XMLSignatureFactory
165 * <p>This method uses the standard JCA provider lookup mechanism to
202 factory.provider = instance.provider;
209 * as supplied by the specified provider. Note that the specified
211 * provider list.
218 * @param provider the <code>Provider</code> object
220 * @throws NullPointerException if <code>provider</cod
227 getInstance(String mechanismType, Provider provider) argument
273 getInstance(String mechanismType, String provider) argument
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMReference.java109 private Provider provider; field in class:DOMReference
127 List transforms, String id, Provider provider) {
128 this(uri, type, dm, null, null, transforms, id, null, provider);
133 Provider provider) {
135 result, transforms, id, null, provider);
140 byte[] digestValue, Provider provider) {
184 this.provider = provider;
193 Provider provider) throws MarshalException {
205 (new DOMTransform(transformElem, context, provider));
126 DOMReference(String uri, String type, DigestMethod dm, List transforms, String id, Provider provider) argument
131 DOMReference(String uri, String type, DigestMethod dm, List appliedTransforms, Data result, List transforms, String id, Provider provider) argument
138 DOMReference(String uri, String type, DigestMethod dm, List appliedTransforms, Data result, List transforms, String id, byte[] digestValue, Provider provider) argument
192 DOMReference(Element refElem, XMLCryptoContext context, Provider provider) argument
[all...]
H A DDOMXMLSignature.java132 Provider provider) throws MarshalException {
141 si = new DOMSignedInfo(siElem, context, provider);
150 ki = new DOMKeyInfo(nextSibling, context, provider);
161 (new DOMXMLObject(nextSibling, context, provider));
131 DOMXMLSignature(Element sigElem, XMLCryptoContext context, Provider provider) argument
/openjdk7/jdk/src/share/classes/java/security/
H A DPolicy.java60 * of the "policy.provider" security property (in the Java security properties
88 * provider's implementation of the <code>implies</code>
187 return Security.getProperty("policy.provider");
191 policy_class = "sun.security.provider.PolicyFile";
202 * provider that is on the bootclasspath.
204 * provider.
207 // install the bootstrap provider to avoid recursion
208 Policy polFile = new sun.security.provider.PolicyFile();
229 debug.println("policy provider " +
239 * if it loaded install it as the policy provider
453 getInstance(String type, Policy.Parameters params, String provider) argument
513 getInstance(String type, Policy.Parameters params, Provider provider) argument
[all...]
H A DSecurity.java59 Provider provider; field in class:Security.ProviderProperty
195 props.put("security.provider.1", "sun.security.provider.Sun");
196 props.put("security.provider.2", "sun.security.rsa.SunRsaSign");
197 props.put("security.provider.3", "com.sun.net.ssl.internal.ssl.Provider");
198 props.put("security.provider.4", "com.sun.crypto.provider.SunJCE");
199 props.put("security.provider.5", "sun.security.jgss.SunProvider");
200 props.put("security.provider.6", "com.sun.security.sasl.Provider");
219 * provider) mappin
261 getProviderProperty(String key, Provider provider) argument
358 insertProviderAt(Provider provider, int position) argument
402 addProvider(Provider provider) argument
692 getImpl(String algorithm, String type, String provider) argument
703 getImpl(String algorithm, String type, String provider, Object params) argument
722 getImpl(String algorithm, String type, Provider provider) argument
728 getImpl(String algorithm, String type, Provider provider, Object params) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DAESCrypt.java37 package com.sun.crypto.provider;

Completed in 92 milliseconds

<<111213