Searched refs:firstService (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/crypto/
H A DKeyAgreement.java92 private Service firstService; field in class:KeyAgreement
116 firstService = s;
298 while ((firstService != null) || serviceIterator.hasNext()) {
300 if (firstService != null) {
301 s = firstService;
302 firstService = null;
317 firstService = null;
355 while ((firstService != null) || serviceIterator.hasNext()) {
357 if (firstService != null) {
358 s = firstService;
[all...]
H A DMac.java94 private Service firstService; field in class:Mac
118 firstService = s;
285 while ((firstService != null) || serviceIterator.hasNext()) {
287 if (firstService != null) {
288 s = firstService;
289 firstService = null;
304 firstService = null;
328 while ((firstService != null) || serviceIterator.hasNext()) {
330 if (firstService != null) {
331 s = firstService;
[all...]
H A DCipher.java228 private Service firstService; field in class:Cipher
275 private Cipher(CipherSpi firstSpi, Service firstService, argument
278 this.firstService = firstService;
722 while ((firstService != null) || serviceIterator.hasNext()) {
725 if (firstService != null) {
726 s = firstService;
728 firstService = null;
758 firstService = null;
816 while ((firstService !
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jca/
H A DProviderList.java390 private Service firstService; field in class:ProviderList.ServiceList
411 if (firstService == null) {
412 firstService = s;
416 services.add(firstService);
424 if ((index == 0) && (firstService != null)) {
425 return firstService;
465 n = (firstService != null) ? 1 : 0;
H A DGetInstance.java157 Service firstService = list.getService(type, algorithm);
158 if (firstService == null) {
164 return getInstance(firstService, clazz);
171 if (s == firstService) {
/openjdk7/jdk/src/share/classes/java/security/
H A DSignature.java913 private Service firstService; field in class:Signature.Delegate
930 this.firstService = service;
1008 while ((firstService != null) || serviceIterator.hasNext()) {
1010 if (firstService != null) {
1011 s = firstService;
1012 firstService = null;
1023 firstService = null;
1047 while ((firstService != null) || serviceIterator.hasNext()) {
1049 if (firstService != null) {
1050 s = firstService;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/spi/
H A DProviderImpl.java229 QName firstService = wsdlDoc.getFirstServiceName();
230 wsdlTargetNamespace = firstService.getNamespaceURI();

Completed in 61 milliseconds