Searched defs:ctls (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/naming/event/
H A DEventDirContext.java71 * the search controls <tt>ctls</tt> are used to control the selection
81 * @param ctls The possibly null search controls. If null, the default
89 void addNamingListener(Name target, String filter, SearchControls ctls, argument
101 * @param ctls The possibly null search controls. If null, the default
109 void addNamingListener(String target, String filter, SearchControls ctls, argument
117 * the search controls <tt>ctls</tt> are used to control the selection
128 * @param ctls The possibly null search controls. If null, the default
137 SearchControls ctls, NamingListener l) throws NamingException;
150 * @param ctls The possibly null search controls. If null, the default
158 SearchControls ctls, NamingListene
136 addNamingListener(Name target, String filter, Object[] filterArgs, SearchControls ctls, NamingListener l) argument
157 addNamingListener(String target, String filter, Object[] filterArgs, SearchControls ctls, NamingListener l) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DEventSupport.java182 SearchControls ctls, NamingListener l) throws NamingException {
186 NotifierArgs args = new NotifierArgs(nm, filter, ctls, l);
181 addNamingListener(String nm, String filter, SearchControls ctls, NamingListener l) argument
H A DNotifierArgs.java66 NotifierArgs(String name, String filter, SearchControls ctls, argument
70 this.controls = ctls;
91 private boolean checkControls(SearchControls ctls) { argument
92 if ((controls == null || ctls == null)) {
93 return ctls == controls;
95 // ctls are nonempty
97 return (controls.getSearchScope() == ctls.getSearchScope()) &&
98 (controls.getTimeLimit() == ctls.getTimeLimit()) &&
99 (controls.getDerefLinkFlag() == ctls.getDerefLinkFlag()) &&
100 (controls.getReturningObjFlag() == ctls
[all...]
H A DClientId.java206 private static String toStringControls(Control[] ctls) { argument
207 if (ctls == null) {
211 for (int i = 0; i < ctls.length; i++) {
212 str.append(ctls[i].getID());
H A DLdapPoolManager.java296 String authMech, Control[] ctls, String protocol, String user,
312 ctls, trace, socketFactory);
318 ctls, trace, socketFactory, user, passwd);
324 ctls, trace, socketFactory, user, passwd, env);
294 getLdapClient(String host, int port, String socketFactory, int connTimeout, int readTimeout, OutputStream trace, int version, String authMech, Control[] ctls, String protocol, String user, Object passwd, Hashtable env) argument
H A DLdapClient.java149 String authMechanism, Control[] ctls, Hashtable env)
188 ((ctls != null) && (ctls.length > 0))) {
191 res = ldapBind(name=null, (byte[])(pw=null), ctls, null,
213 res = ldapBind(name, encodedPw, ctls, null, false);
236 authMechanism, env, ctls);
265 res = ldapBind(name, encodedPw, ctls, null, false);
570 void clearSearchReply(LdapResult res, Control[] ctls) { argument
588 conn.abandonRequest(req, ctls);
797 Vector ctls
148 authenticate(boolean initial, String name, Object pw, int version, String authMechanism, Control[] ctls, Hashtable env) argument
1592 getInstance(boolean usePool, String hostname, int port, String factory, int connectTimeout, int readTimeout, OutputStream trace, int version, String authMechanism, Control[] ctls, String protocol, String user, Object passwd, Hashtable env) argument
[all...]
H A DLdapCtx.java3287 * @param ctls A non-null Vector
3289 Control[] convertControls(Vector ctls) throws NamingException { argument
3290 int count = ctls.size();
3301 (Control)ctls.elementAt(i));
3306 (Control)ctls.elementAt(i), this, envprops);
3329 private static int findControl(Control[] ctls, Control target) { argument
3330 for (int i = 0; i < ctls.length; i++) {
3331 if (ctls[i] == target) {
3357 private static Control[] cloneControls(Control[] ctls) { argument
3358 if (ctls
3405 addNamingListener(String nm, String filter, SearchControls ctls, NamingListener l) argument
3418 addNamingListener(Name nm, String filter, SearchControls ctls, NamingListener l) argument
3423 addNamingListener(Name nm, String filter, Object[] filterArgs, SearchControls ctls, NamingListener l) argument
3428 addNamingListener(String nm, String filterExpr, Object[] filterArgs, SearchControls ctls, NamingListener l) argument
[all...]

Completed in 437 milliseconds