Searched refs:provider (Results 1 - 25 of 484) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/windows/classes/sun/security/provider/
H A DNativePRNG.java26 package sun.security.provider;
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DAESConstants.java26 package com.sun.crypto.provider;
H A DBlowfishConstants.java26 package com.sun.crypto.provider;
H A DDESConstants.java26 package com.sun.crypto.provider;
/openjdk7/jdk/src/share/classes/com/sun/java/browser/net/
H A DProxyService.java36 private static ProxyServiceProvider provider = null; field in class:ProxyService
41 if(null == provider)
42 provider = p;
44 throw new IOException("Proxy service provider has already been set.");
56 if(null == provider)
57 throw new IOException("Proxy service provider is not yet set");
59 return provider.getProxyInfo(url);
/openjdk7/jdk/src/share/classes/sun/security/action/
H A DPutAllAction.java35 * a provider. See the SunRsaSign provider for a usage example.
43 private final Provider provider; field in class:PutAllAction
46 public PutAllAction(Provider provider, Map map) { argument
47 this.provider = provider;
52 provider.putAll(map);
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DAsynchronousChannelGroup.java135 private final AsynchronousChannelProvider provider; field in class:AsynchronousChannelGroup
140 * @param provider
141 * The asynchronous channel provider for this group
143 protected AsynchronousChannelGroup(AsynchronousChannelProvider provider) { argument
144 this.provider = provider;
148 * Returns the provider that created this channel group.
150 * @return The provider that created this channel group
152 public final AsynchronousChannelProvider provider() { method in class:AsynchronousChannelGroup
153 return provider;
[all...]
H A DPipe.java67 protected SourceChannel(SelectorProvider provider) { argument
68 super(provider);
98 protected SinkChannel(SelectorProvider provider) { argument
99 super(provider);
150 return SelectorProvider.provider().openPipe();
H A DAsynchronousServerSocketChannel.java97 private final AsynchronousChannelProvider provider; field in class:AsynchronousServerSocketChannel
102 protected AsynchronousServerSocketChannel(AsynchronousChannelProvider provider) { argument
103 this.provider = provider;
107 * Returns the provider that created this channel.
109 public final AsynchronousChannelProvider provider() { method in class:AsynchronousServerSocketChannel
110 return provider;
121 * resulting channel is created by the system-wide default provider, and
138 AsynchronousChannelProvider provider = (group == null) ?
139 AsynchronousChannelProvider.provider()
[all...]
/openjdk7/hotspot/src/os/bsd/dtrace/
H A Dhs_private.d25 provider hs_private {
35 #pragma D attributes Private/Private/Common provider hs_private provider
36 #pragma D attributes Private/Private/Unknown provider hs_private module
37 #pragma D attributes Private/Private/Unknown provider hs_private function
38 #pragma D attributes Private/Private/Common provider hs_private name
39 #pragma D attributes Private/Private/Common provider hs_private args
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Dhs_private.d25 provider hs_private {
34 #pragma D attributes Private/Private/Common provider hs_private provider
35 #pragma D attributes Private/Private/Unknown provider hs_private module
36 #pragma D attributes Private/Private/Unknown provider hs_private function
37 #pragma D attributes Private/Private/Common provider hs_private name
38 #pragma D attributes Private/Private/Common provider hs_private args
/openjdk7/jdk/src/share/classes/com/sun/tools/attach/
H A DVirtualMachineDescriptor.java60 private AttachProvider provider; field in class:VirtualMachineDescriptor
69 * @param provider The AttachProvider to attach to the Java virtual machine.
76 public VirtualMachineDescriptor(AttachProvider provider, String id, String displayName) { argument
77 if (provider == null) {
78 throw new NullPointerException("provider cannot be null");
86 this.provider = provider;
99 * VirtualMachineDescriptor}(provider,  id,  id);
106 * @param provider The AttachProvider to attach to the Java virtual machine.
110 * If <tt>provider</t
112 VirtualMachineDescriptor(AttachProvider provider, String id) argument
121 public AttachProvider provider() { method in class:VirtualMachineDescriptor
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/probe/provider/
H A DStatsProvider.java28 package com.sun.org.glassfish.external.probe.provider;
/openjdk7/jdk/src/share/classes/sun/net/dns/
H A DResolverConfiguration.java44 private static ResolverConfiguration provider; field in class:ResolverConfiguration
55 if (provider == null) {
56 provider = new sun.net.dns.ResolverConfigurationImpl();
58 return provider;
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DDefaultFileTypeDetector.java36 FileSystemProvider provider = FileSystems.getDefault().provider();
37 return ((UnixFileSystemProvider)provider).getFileTypeDetector();
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddtrace.hpp86 #define HS_DTRACE_PROBE_FN(provider,name)\
87 __dtrace_##provider##___##name
91 #define HS_DTRACE_PROBE_DECL_N(provider,name,args) \
92 DTRACE_ONLY(extern "C" void HS_DTRACE_PROBE_FN(provider,name) args)
93 #define HS_DTRACE_PROBE_CDECL_N(provider,name,args) \
94 DTRACE_ONLY(extern void HS_DTRACE_PROBE_FN(provider,name) args)
98 #define HS_DTRACE_PROBE_DECL_N(provider,name,args)
99 #define HS_DTRACE_PROBE_CDECL_N(provider,name,args)
103 #define HS_DTRACE_PROBE_DECL(provider,name) \
104 HS_DTRACE_PROBE_DECL0(provider,nam
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFileSystems.java42 * the default {@link FileSystemProvider provider} to be loaded. The default
43 * provider, identified by the URI scheme "file", creates the {@link FileSystem}
45 * machine. If the process of loading or initializing the default provider fails
52 * service-provider loading facility defined by the {@link ServiceLoader} class.
58 * provider-configuration file named {@code java.nio.file.spi.FileSystemProvider}
63 * If a provider is instantiated and its {@link FileSystemProvider#getScheme()
64 * getScheme} returns the same URI scheme of a provider that was previously
66 * schemes are compared without regard to case. During construction a provider
67 * may safely access files associated with the default provider but care needs
73 * to be specified when locating a provider
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/
H A DMouseOverAction.java38 private HoverProvider provider; field in class:MouseOverAction
40 public MouseOverAction(HoverProvider provider) { argument
41 this.provider = provider;
49 provider.widgetHovered(widget);
56 provider.widgetHovered(null);
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DKeyManagerFactory.java37 * material is based on a KeyStore and/or provider specific sources.
43 // The provider
44 private Provider provider; field in class:KeyManagerFactory
46 // The provider implementation (delegate)
86 * @param provider the provider
90 Provider provider, String algorithm) {
92 this.provider = provider;
143 instance.provider, algorith
89 KeyManagerFactory(KeyManagerFactorySpi factorySpi, Provider provider, String algorithm) argument
180 getInstance(String algorithm, String provider) argument
218 getInstance(String algorithm, Provider provider) argument
[all...]
H A DTrustManagerFactory.java37 * material is based on a KeyStore and/or provider specific sources.
43 // The provider
44 private Provider provider; field in class:TrustManagerFactory
46 // The provider implementation (delegate)
83 * @param provider the provider
87 Provider provider, String algorithm) {
89 this.provider = provider;
142 instance.provider, algorith
86 TrustManagerFactory(TrustManagerFactorySpi factorySpi, Provider provider, String algorithm) argument
179 getInstance(String algorithm, String provider) argument
217 getInstance(String algorithm, Provider provider) argument
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DAlgorithmParameterGenerator.java64 * (via a call to an <code>init</code> method), each provider must supply (and
65 * document) a default initialization. For example, the Sun provider uses a
94 // The provider
95 private Provider provider; field in class:AlgorithmParameterGenerator
97 // The provider implementation (delegate)
107 * @param provider the provider
111 (AlgorithmParameterGeneratorSpi paramGenSpi, Provider provider,
114 this.provider = provider;
110 AlgorithmParameterGenerator(AlgorithmParameterGeneratorSpi paramGenSpi, Provider provider, String algorithm) argument
206 getInstance(String algorithm, String provider) argument
250 getInstance(String algorithm, Provider provider) argument
[all...]
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertPathBuilder.java43 * This class uses a provider-based architecture.
47 * the name of the provider desired.
76 * Unless otherwise documented by a specific provider, threads that need to
101 private Provider provider; field in class:CertPathBuilder
106 * and encapsulates the given provider implementation (SPI object) in it.
108 * @param builderSpi the provider implementation
109 * @param provider the provider
112 protected CertPathBuilder(CertPathBuilderSpi builderSpi, Provider provider, argument
116 this.provider
191 getInstance(String algorithm, String provider) argument
228 getInstance(String algorithm, Provider provider) argument
[all...]
H A DCertPathValidator.java44 * This class uses a provider-based architecture.
48 * optionally the name of the provider desired.
77 * Unless otherwise documented by a specific provider, threads that need to
101 private Provider provider; field in class:CertPathValidator
106 * and encapsulates the given provider implementation (SPI object) in it.
108 * @param validatorSpi the provider implementation
109 * @param provider the provider
113 Provider provider, String algorithm)
116 this.provider
112 CertPathValidator(CertPathValidatorSpi validatorSpi, Provider provider, String algorithm) argument
191 getInstance(String algorithm, String provider) argument
229 getInstance(String algorithm, Provider provider) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/
H A DKeyManagerFactory.java38 * material is based on a KeyStore and/or provider specific sources.
45 // The provider
46 private Provider provider; field in class:KeyManagerFactory
48 // The provider implementation (delegate)
81 * @param provider the provider
85 Provider provider, String algorithm) {
87 this.provider = provider;
107 * If the default provider packag
84 KeyManagerFactory(KeyManagerFactorySpi factorySpi, Provider provider, String algorithm) argument
151 getInstance(String algorithm, String provider) argument
176 getInstance(String algorithm, Provider provider) argument
[all...]
H A DSSLContext.java50 private Provider provider; field in class:SSLContext
60 * @param provider the provider
63 protected SSLContext(SSLContextSpi contextSpi, Provider provider, argument
66 this.provider = provider;
79 * available in the default provider package or any of the other provider
100 * @param provider the name of the provider
109 getInstance(String protocol, String provider) argument
132 getInstance(String protocol, Provider provider) argument
[all...]

Completed in 77 milliseconds

1234567891011>>