Searched defs:spec (Results 101 - 125 of 142) sorted by relevance

123456

/openjdk7/jdk/src/share/classes/java/security/spec/
H A DEllipticCurve.java26 package java.security.spec;
H A DRSAMultiPrimePrivateCrtKeySpec.java26 package java.security.spec;
H A DRSAPrivateCrtKeySpec.java26 package java.security.spec;
/openjdk7/jdk/src/windows/classes/sun/net/www/protocol/file/
H A DHandler.java53 protected void parseURL(URL u, String spec, int start, int limit) { argument
67 super.parseURL(u, spec.replace(File.separatorChar, '/'), start, limit);
/openjdk7/jdk/src/share/classes/sun/security/internal/spec/
H A DTlsPrfParameterSpec.java26 package sun.security.internal.spec;
28 import java.security.spec.AlgorithmParameterSpec;
H A DTlsKeyMaterialSpec.java26 package sun.security.internal.spec;
28 import java.security.spec.KeySpec;
31 import javax.crypto.spec.IvParameterSpec;
H A DTlsMasterSecretParameterSpec.java26 package sun.security.internal.spec;
28 import java.security.spec.AlgorithmParameterSpec;
H A DTlsKeyMaterialParameterSpec.java26 package sun.security.internal.spec;
28 import java.security.spec.AlgorithmParameterSpec;
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DTrustManagerFactoryImpl.java34 import java.security.spec.AlgorithmParameterSpec;
85 abstract X509TrustManager getInstance(ManagerFactoryParameters spec) argument
88 protected void engineInit(ManagerFactoryParameters spec) throws argument
90 trustManager = getInstance(spec);
242 X509TrustManager getInstance(ManagerFactoryParameters spec) argument
254 X509TrustManager getInstance(ManagerFactoryParameters spec) argument
256 if (spec instanceof CertPathTrustManagerParameters == false) {
261 ((CertPathTrustManagerParameters)spec).getParameters();
/openjdk7/jdk/src/solaris/classes/sun/net/www/protocol/file/
H A DHandler.java53 protected void parseURL(URL u, String spec, int start, int limit) { argument
67 super.parseURL(u, spec.replace(File.separatorChar, '/'), start, limit);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DGenCollectedHeap.java113 GenerationSpec spec(int level) { method in class:GenCollectedHeap
H A DGeneration.java136 public GenerationSpec spec() { method in class:Generation
137 return ((GenCollectedHeap) VM.getVM().getUniverse().heap()).spec(level());
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DTlsMasterSecretGenerator.java29 import java.security.spec.AlgorithmParameterSpec;
34 import sun.security.internal.spec.TlsMasterSecretParameterSpec;
49 private TlsMasterSecretParameterSpec spec; field in class:TlsMasterSecretGenerator
65 this.spec = (TlsMasterSecretParameterSpec)params;
66 if ("RAW".equals(spec.getPremasterSecret().getFormat()) == false) {
70 protocolVersion = (spec.getMajorVersion() << 8)
71 | spec.getMinorVersion();
83 if (spec == null) {
87 SecretKey premasterKey = spec.getPremasterSecret();
103 byte[] clientRandom = spec
[all...]
/openjdk7/jdk/src/share/classes/sun/security/ec/
H A DECParameters.java32 import java.security.spec.*;
195 ECParameterSpec spec = NamedCurve.getECParameterSpec(oid);
196 if (spec == null) {
199 return spec;
276 static AlgorithmParameters getAlgorithmParameters(ECParameterSpec spec) argument
281 params.init(spec);
304 ECParameterSpec spec = NamedCurve.getECParameterSpec(name);
305 if (spec == null) {
308 this.paramSpec = spec;
326 protected <T extends AlgorithmParameterSpec> T engineGetParameterSpec(Class<T> spec) argument
[all...]
/openjdk7/jdk/test/javax/swing/JFormattedTextField/
H A DTest6462562.java308 Date date(DateFormat format, String spec) { argument
310 return format.parse(spec);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/jar/
H A DHandler.java44 private static int indexOfBangSlash(String spec) { argument
45 int indexOfBang = spec.length();
46 while((indexOfBang = spec.lastIndexOf('!', indexOfBang)) != -1) {
47 if ((indexOfBang != (spec.length() - 1)) &&
48 (spec.charAt(indexOfBang + 1) == '/')) {
126 protected void parseURL(URL url, String spec, argument
131 int refPos = spec.indexOf('#', limit);
134 ref = spec.substring(refPos + 1, spec.length());
139 // then figure out if the spec i
165 parseAbsoluteSpec(String spec) argument
183 parseContextSpec(URL url, String spec) argument
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMHMACSignatureMethod.java31 import javax.xml.crypto.dsig.spec.HMACParameterSpec;
32 import javax.xml.crypto.dsig.spec.SignatureMethodParameterSpec;
40 import java.security.spec.AlgorithmParameterSpec;
176 boolean paramsEqual(AlgorithmParameterSpec spec) { argument
177 if (getParameterSpec() == spec) {
180 if (!(spec instanceof HMACParameterSpec)) {
183 HMACParameterSpec ospec = (HMACParameterSpec) spec;
H A DDOMSignatureMethod.java32 import javax.xml.crypto.dsig.spec.SignatureMethodParameterSpec;
36 import java.security.spec.AlgorithmParameterSpec;
335 boolean paramsEqual(AlgorithmParameterSpec spec) { argument
336 return (getParameterSpec() == spec);
/openjdk7/jdk/src/share/classes/java/net/
H A DURLStreamHandler.java114 * the spec.
115 * @param spec the <code>String</code> representing the URL that
125 protected void parseURL(URL u, String spec, int start, int limit) { argument
144 int queryStart = spec.indexOf('?');
147 query = spec.substring(queryStart+1, limit);
150 spec = spec.substring(0, queryStart);
157 (spec.charAt(start) == '/') &&
158 (spec.charAt(start + 1) == '/') &&
159 (spec
[all...]
H A DURL.java425 * @param spec the <code>String</code> to parse as a URL.
427 * unknown protocol is found, or <tt>spec</tt> is <tt>null</tt>.
430 public URL(String spec) throws MalformedURLException { argument
431 this(null, spec);
435 * Creates a URL by parsing the given spec within a specified context.
437 * The new URL is created from the given context URL and the spec
447 * parts present in the spec are used in the new URL.
449 * If the scheme component is defined in the given spec and does not match
451 * URL based on the spec alone. Otherwise the scheme component is inherited
454 * If the authority component is present in the spec the
481 URL(URL context, String spec) argument
505 URL(URL context, String spec, URLStreamHandler handler) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DEventRequestSpecList.java59 for (EventRequestSpec spec : eventRequestSpecs) {
60 spec.attemptResolve(refType);
148 void notifySet(EventRequestSpec spec) { argument
150 SpecEvent evt = new SpecEvent(spec);
152 spec.notifySet(l.elementAt(i), evt);
156 void notifyDeferred(EventRequestSpec spec) { argument
158 SpecEvent evt = new SpecEvent(spec);
160 spec.notifyDeferred(l.elementAt(i), evt);
164 void notifyDeleted(EventRequestSpec spec) { argument
166 SpecEvent evt = new SpecEvent(spec);
172 notifyResolved(EventRequestSpec spec) argument
180 notifyError(EventRequestSpec spec, Exception exc) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DEventRequestSpecList.java64 for (EventRequestSpec spec : eventRequestSpecs) {
65 if (!spec.isResolved()) {
67 EventRequest eventRequest = spec.resolve(event);
69 MessageOutput.println("Set deferred", spec.toString());
73 new Object [] {spec.toString(),
74 spec.errorMessageFor(e)});
84 for (EventRequestSpec spec : eventRequestSpecs) {
86 EventRequest eventRequest = spec.resolveEagerly();
88 MessageOutput.println("Set deferred", spec.toString());
95 boolean addEagerlyResolve(EventRequestSpec spec) { argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11ECKeyFactory.java33 import java.security.spec.*;
65 // Check that spec is a known supported curve and convert it to our
67 static ECParameterSpec getECParameterSpec(ECParameterSpec spec) { argument
68 return ECParameters.getNamedCurve(spec);
144 // see JCA spec
174 // see JCA spec
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAPadding.java33 import java.security.spec.*;
36 import javax.crypto.spec.PSource;
37 import javax.crypto.spec.OAEPParameterSpec;
48 * key). Per spec, the padding string must be at least 8 bytes long. That
57 * specified in javax.crypto.spec.OAEPParameterSpec
123 SecureRandom random, OAEPParameterSpec spec)
125 return new RSAPadding(type, paddedSize, random, spec);
130 OAEPParameterSpec spec) throws InvalidKeyException,
152 if (spec != null) {
153 mdName = spec
122 getInstance(int type, int paddedSize, SecureRandom random, OAEPParameterSpec spec) argument
129 RSAPadding(int type, int paddedSize, SecureRandom random, OAEPParameterSpec spec) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DcompactingPermGenGen.hpp174 inline PermanentGenerationSpec* spec() const { return _spec; } function in class:CompactingPermGenGen
175 inline void set_spec(PermanentGenerationSpec* spec) { _spec = spec; } argument

Completed in 95 milliseconds

123456