Searched defs:selector (Results 1 - 25 of 44) sorted by relevance

12

/openjdk7/jdk/test/java/nio/channels/Selector/
H A DCheckLocking.java37 private static Selector selector; field in class:CheckLocking
44 selector.select();
57 selector = SelectorProvider.provider().openSelector();
60 SelectionKey sk = sc.register(selector,0,null);
63 selector.wakeup();
65 selector.close();
H A DSelectAndClose.java33 static Selector selector; field in class:SelectAndClose
38 selector = Selector.open();
40 // Create and start a selector in a separate thread.
44 selector.select();
59 selector.close();
71 selector.wakeup();
H A DLotsOfCancels.java36 * a selector has many unprocessed updates to its interest set (e.g. adding
92 // Create server channel, add it to selector and run epoll_ctl.
111 // Accept all initial client sockets, add to selector and run
127 // Accept all mass client sockets, add to selector and do NOT
159 static List<SocketChannel> acceptAndAddAll(Selector selector, argument
183 channel.register(selector, SelectionKey.OP_READ);
188 channel.register(selector, SelectionKey.OP_WRITE);
202 private final Selector selector; field in class:LotsOfCancels.ClientThread
208 selector = Selector.open();
216 selector
[all...]
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertStoreSpi.java72 * match the specified selector. If no <code>Certificate</code>s
73 * match the selector, an empty <code>Collection</code> will be returned.
77 * <code>Certificate</code>s that match the selector. For instance,
88 * @param selector A <code>CertSelector</code> used to select which
92 * match the specified selector (never <code>null</code>)
96 (CertSelector selector) throws CertStoreException;
100 * match the specified selector. If no <code>CRL</code>s
101 * match the selector, an empty <code>Collection</code> will be returned.
105 * <code>CRL</code>s that match the selector. For instance,
116 * @param selector
95 engineGetCertificates(CertSelector selector) argument
123 engineGetCRLs(CRLSelector selector) argument
[all...]
H A DCertStore.java52 * {@link #getCertificates(CertSelector selector) getCertificates} and
53 * {@link #getCRLs(CRLSelector selector) getCRLs} methods.
126 * match the specified selector. If no <code>Certificate</code>s
127 * match the selector, an empty <code>Collection</code> will be returned.
131 * <code>Certificate</code>s that match the selector. For instance,
142 * @param selector A <code>CertSelector</code> used to select which
146 * match the specified selector (never <code>null</code>)
150 (CertSelector selector) throws CertStoreException {
151 return storeSpi.engineGetCertificates(selector);
156 * match the specified selector
149 getCertificates(CertSelector selector) argument
179 getCRLs(CRLSelector selector) argument
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DInvertSelector.java35 private Selector selector; field in class:InvertSelector
37 public InvertSelector(Selector selector) { argument
38 this.selector = selector;
44 List<Figure> otherResult = selector.selected(d);
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DCollectionCertStore.java107 * match the specified selector. If no <code>Certificate</code>s
108 * match the selector, an empty <code>Collection</code> will be returned.
110 * @param selector a <code>CertSelector</code> used to select which
114 * match the specified selector
118 (CertSelector selector) throws CertStoreException {
127 if (selector != null) {
131 selector.match((Certificate) o))
150 * match the specified selector. If no <code>CRL</code>s
151 * match the selector, an empty <code>Collection</code> will be returned.
153 * @param selector
117 engineGetCertificates(CertSelector selector) argument
160 engineGetCRLs(CRLSelector selector) argument
[all...]
H A DCertStoreHelper.java55 X509CertSelector wrap(X509CertSelector selector, argument
64 X509CRLSelector wrap(X509CRLSelector selector, argument
H A DIndexedCollectionCertStore.java224 * match the specified selector. If no <code>Certificate</code>s
225 * match the selector, an empty <code>Collection</code> will be returned.
227 * @param selector a <code>CertSelector</code> used to select which
231 * match the specified selector
234 public Collection<? extends Certificate> engineGetCertificates(CertSelector selector) argument
237 // no selector means match all
238 if (selector == null) {
245 if (selector instanceof X509CertSelector == false) {
247 matchX509Certs(selector, matches);
249 if (selector
302 matchX509Certs(CertSelector selector, Collection<Certificate> matches) argument
334 engineGetCRLs(CRLSelector selector) argument
393 matchX509CRLs(CRLSelector selector, Collection<CRL> matches) argument
[all...]
H A DBuilder.java418 * selector to resultCerts. Self-signed certs are not useful here
421 * If the targetCert criterion of the selector is set, only that cert
430 boolean addMatchingCerts(X509CertSelector selector, argument
433 X509Certificate targetCert = selector.getCertificate();
436 if (selector.match(targetCert) && !X509CertImpl.isSelfSigned
449 store.getCertificates(selector);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DSplitFilter.java41 private Selector selector; field in class:SplitFilter
43 public SplitFilter(String name, Selector selector) { argument
45 this.selector = selector;
53 List<Figure> list = selector.selected(d);
H A DConnectionFilter.java56 Properties.PropertySelector<Figure> selector = new Properties.PropertySelector<Figure>(diagram.getFigures());
86 private Selector selector; field in class:ConnectionFilter.ConnectionStyleRule
88 public ConnectionStyleRule(Selector selector, Color lineColor, Connection.ConnectionStyle lineStyle) { argument
89 this.selector = selector;
95 return selector;
H A DColorFilter.java57 Properties.PropertySelector<Figure> selector = new Properties.PropertySelector<Figure>(diagram.getFigures());
104 private Selector selector; field in class:ColorFilter.ColorRule
106 public ColorRule(Selector selector, Color c) { argument
107 this(selector, c, null, null);
110 public ColorRule(Selector selector, Color c, Color lineColor, Connection.ConnectionStyle lineStyle) { argument
111 this.selector = selector;
127 return selector;
H A DRemoveFilter.java106 private Selector selector; field in class:RemoveFilter.RemoveRule
110 public RemoveRule(Selector selector, boolean b) { argument
111 this(selector, b, false);
114 public RemoveRule(Selector selector, boolean removeAllWithoutPredecessor, boolean removeOnlyInputs) { argument
115 this.selector = selector;
121 return selector;
H A DRemoveInputsFilter.java113 private Selector selector; field in class:RemoveInputsFilter.RemoveInputsRule
117 public RemoveInputsRule(Selector selector) { argument
118 this(selector, 0);
121 public RemoveInputsRule(Selector selector, int startIndex) { argument
122 this(selector, startIndex, Integer.MAX_VALUE);
125 public RemoveInputsRule(Selector selector, int startIndex, int endIndex) { argument
128 this.selector = selector;
140 return selector;
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/ldap/
H A DLDAPCertStoreHelper.java57 public X509CertSelector wrap(X509CertSelector selector, argument
62 return new LDAPCertStore.LDAPCertSelector(selector, certSubject, ldapDN);
66 public X509CRLSelector wrap(X509CRLSelector selector, argument
71 return new LDAPCertStore.LDAPCRLSelector(selector, certIssuers, ldapDN);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/ct/
H A DCTBuilder.java64 protected final ClassSelector selector = Ring.get(ClassSelector.class); field in class:CTBuilder
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DSelectionKeyImpl.java42 final SelectorImpl selector; // package-private field in class:SelectionKeyImpl
52 selector = sel;
59 public Selector selector() { method in class:SelectionKeyImpl
60 return selector;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/transport/
H A DListenerThreadImpl.java47 private Selector selector; field in class:ListenerThreadImpl
51 public ListenerThreadImpl(ORB orb, Acceptor acceptor, Selector selector) argument
55 this.selector = selector;
H A DReaderThreadImpl.java46 private Selector selector; field in class:ReaderThreadImpl
51 Connection connection, Selector selector)
55 this.selector = selector;
50 ReaderThreadImpl(ORB orb, Connection connection, Selector selector) argument
H A DCorbaTransportManagerImpl.java71 protected Selector selector; field in class:CorbaTransportManagerImpl
79 selector = new SelectorImpl(orb);
158 return selector;
H A DSelectorImpl.java65 private Selector selector; field in class:SelectorImpl
79 selector = null;
114 selector.wakeup();
148 selector.wakeup();
189 selector.wakeup();
245 if (selector != null) {
247 selector.wakeup();
251 dprint(".close: selector.close: " + t);
273 n = selector.select(timeout);
276 dprint(".run: selector
[all...]
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DSelectionKey.java37 * selector. A key remains valid until it is <i>cancelled</i> by invoking its
39 * selector. Cancelling a key does not immediately remove it from its
40 * selector; it is instead added to the selector's <a
54 * be tested for readiness the next time one of the selector's selection
60 * the key's channel has been detected to be ready by the key's selector.
62 * be updated by the selector during a selection operation, but it cannot be
93 * synchronized with certain operations of the selector. Exactly how this
118 // -- Channel and selector operations --
129 * Returns the selector fo
134 public abstract Selector selector(); method in class:SelectionKey
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DColorBinder.java47 protected final ClassSelector selector = getClassSelector(); field in class:ColorBinder
50 return selector.getCurrentBean();
53 return selector.getCurrentRoot();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DIdentityConstraintImpl.java49 private final XSXPath selector; field in class:IdentityConstraintImpl
54 ForeignAttributesImpl fa, short category, String name, XPathImpl selector,
60 this.selector = selector;
61 selector.setParent(this);
99 return selector;
53 IdentityConstraintImpl(SchemaDocumentImpl _owner, AnnotationImpl _annon, Locator _loc, ForeignAttributesImpl fa, short category, String name, XPathImpl selector, List<XPathImpl> fields, Ref.IdentityConstraint refer) argument

Completed in 102 milliseconds

12