Searched refs:ld (Results 1 - 25 of 370) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dunbind.c48 ldap_unbind( LDAP *ld )
52 return( ldap_ld_free( ld, NULL, NULL, 1 ) );
58 ldap_unbind_s( LDAP *ld )
60 return( ldap_ld_free( ld, NULL, NULL, 1 ));
66 ldap_unbind_ext( LDAP *ld, LDAPControl **serverctrls, argument
69 return( ldap_ld_free( ld, serverctrls, clientctrls, 1 ));
74 * Dispose of the LDAP session ld, including all associated connections
78 ldap_ld_free( LDAP *ld, LDAPControl **serverctrls, argument
85 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
89 if ( ld
192 nsldapi_send_unbind( LDAP *ld, Sockbuf *sb, LDAPControl **serverctrls, LDAPControl **clientctrls ) argument
[all...]
H A Dbind.c45 * ldap_bind( ld, "cn=manager, o=university of michigan, c=us", "secret",
51 ldap_bind( LDAP *ld, const char *dn, const char *passwd, int authmethod ) argument
67 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
73 return( ldap_simple_bind( ld, dn, passwd ) );
76 LDAP_SET_LDERRNO( ld, LDAP_AUTH_UNKNOWN, NULL, NULL );
90 * ldap_bind_s( ld, "cn=manager, o=university of michigan, c=us",
92 * ldap_bind_s( ld, "cn=manager, o=university of michigan, c=us",
97 ldap_bind_s( LDAP *ld, const char *dn, const char *passwd, int authmethod ) argument
105 return( ldap_simple_bind_s( ld, dn, passwd ) );
109 LDAP_SET_LDERRNO( ld, er
117 ldap_set_rebind_proc( LDAP *ld, LDAP_REBINDPROC_CALLBACK *rebindproc, void *arg ) argument
[all...]
H A Dsbind.c40 static int simple_bind_nolock( LDAP *ld, const char *dn, const char *passwd,
42 static int simple_bindifnot_s( LDAP *ld, const char *dn, const char *passwd );
50 * ldap_simple_bind( ld, "cn=manager, o=university of michigan, c=us",
56 ldap_simple_bind( LDAP *ld, const char *dn, const char *passwd ) argument
62 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
66 rc = simple_bind_nolock( ld, dn, passwd, 1 );
73 simple_bind_nolock( LDAP *ld, const char *dn, const char *passwd, argument
91 LDAP_MUTEX_LOCK( ld, LDAP_MSGID_LOCK );
92 msgid = ++ld->ld_msgid;
93 LDAP_MUTEX_UNLOCK( ld, LDAP_MSGID_LOC
153 ldap_simple_bind_s( LDAP *ld, const char *dn, const char *passwd ) argument
182 simple_bindifnot_s( LDAP *ld, const char *dn, const char *passwd ) argument
[all...]
H A Dsetoption.c41 #define LDAP_SETCLR_BITOPT(ld, bit, optdata) \
43 (ld)->ld_options |= bit; \
45 (ld)->ld_options &= ~bit; \
51 ldap_set_option(LDAP *ld, int option, const void *optdata) argument
96 * if ld is NULL, arrange to modify our default settings
98 if (ld == NULL) {
99 ld = &nsldapi_ld_defaults;
109 if (!NSLDAPI_VALID_LDAP_POINTER(ld)) {
114 if (ld != &nsldapi_ld_defaults &&
117 LDAP_MUTEX_LOCK(ld, LDAP_OPTION_LOC
[all...]
H A Drename.c43 * ld LDAP descriptor
57 * rc = ldap_rename( ld, dn, newrdn, newparent, deleteoldrdn, serverctrls, clientctrls, &msgid );
62 LDAP *ld,
87 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
91 LDAP_SET_LDERRNO( ld, LDAP_PARAM_ERROR, NULL, NULL );
99 if (( NSLDAPI_LDAP_VERSION( ld ) < LDAP_VERSION3 )
102 LDAP_SET_LDERRNO( ld, LDAP_NOT_SUPPORTED, NULL, NULL );
107 LDAP_SET_LDERRNO( ld, LDAP_PARAM_ERROR, NULL, NULL );
111 LDAP_MUTEX_LOCK( ld, LDAP_MSGID_LOCK );
112 *msgidp = ++ld
61 ldap_rename( LDAP *ld, const char *dn, const char *newrdn, const char *newparent, int deleteoldrdn, LDAPControl **serverctrls, LDAPControl **clientctrls, int *msgidp ) argument
185 ldap_modrdn2( LDAP *ld, const char *dn, const char *newrdn, int deleteoldrdn ) argument
198 ldap_modrdn( LDAP *ld, const char *dn, const char *newrdn ) argument
205 ldap_rename_s( LDAP *ld, const char *dn, const char *newrdn, const char *newparent, int deleteoldrdn, LDAPControl **serverctrls, LDAPControl **clientctrls ) argument
233 ldap_modrdn2_s( LDAP *ld, const char *dn, const char *newrdn, int deleteoldrdn ) argument
249 ldap_modrdn_s( LDAP *ld, const char *dn, const char *newrdn ) argument
[all...]
H A Dabandon.c41 static int do_abandon( LDAP *ld, int origid, int msgid,
47 * ld LDAP descriptor
53 * ldap_abandon( ld, msgid );
57 ldap_abandon( LDAP *ld, int msgid ) argument
61 if ( ldap_abandon_ext( ld, msgid, NULL, NULL ) == LDAP_SUCCESS ) {
75 ldap_abandon_ext( LDAP *ld, int msgid, LDAPControl **serverctrls, argument
82 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
86 LDAP_MUTEX_LOCK( ld, LDAP_CONN_LOCK );
87 LDAP_MUTEX_LOCK( ld, LDAP_REQ_LOCK );
88 rc = do_abandon( ld, msgi
109 do_abandon( LDAP *ld, int origid, int msgid, LDAPControl **serverctrls, LDAPControl **clientctrls ) argument
[all...]
H A Dcompare.c46 * ldap_compare( ld, "c=us@cn=bob", "userPassword", "secret" )
50 ldap_compare( LDAP *ld, const char *dn, const char *attr, const char *value ) argument
60 if ( ldap_compare_ext( ld, dn, attr, &bv, NULL, NULL, &msgid )
64 return( -1 ); /* error is in ld handle */
70 ldap_compare_ext( LDAP *ld, const char *dn, const char *attr, argument
90 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
96 LDAP_SET_LDERRNO( ld, lderr, NULL, NULL );
104 LDAP_MUTEX_LOCK( ld, LDAP_MSGID_LOCK );
105 *msgidp = ++ld->ld_msgid;
106 LDAP_MUTEX_UNLOCK( ld, LDAP_MSGID_LOC
150 ldap_compare_s( LDAP *ld, const char *dn, const char *attr, const char *value ) argument
163 ldap_compare_ext_s( LDAP *ld, const char *dn, const char *attr, const struct berval *bvalue, LDAPControl **serverctrls, LDAPControl **clientctrls ) argument
[all...]
H A Ddelete.c39 * ld LDAP descriptor
43 * msgid = ldap_delete( ld, dn );
47 ldap_delete( LDAP *ld, const char *dn ) argument
53 if ( ldap_delete_ext( ld, dn, NULL, NULL, &msgid ) == LDAP_SUCCESS ) {
56 return( -1 ); /* error is in ld handle */
62 ldap_delete_ext( LDAP *ld, const char *dn, LDAPControl **serverctrls, argument
75 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
81 LDAP_SET_LDERRNO( ld, LDAP_PARAM_ERROR, NULL, NULL );
88 LDAP_MUTEX_LOCK( ld, LDAP_MSGID_LOCK );
89 *msgidp = ++ld
133 ldap_delete_s( LDAP *ld, const char *dn ) argument
140 ldap_delete_ext_s( LDAP *ld, const char *dn, LDAPControl **serverctrls, LDAPControl **clientctrls ) argument
[all...]
H A Dproxyauthctrl.c32 ld LDAP pointer to the desired connection
47 LDAP *ld,
56 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
61 LDAP_SET_LDERRNO( ld, LDAP_PARAM_ERROR, NULL, NULL );
70 if ( ( nsldapi_alloc_ber_with_options( ld, &ber ) ) != LDAP_SUCCESS ) {
71 LDAP_SET_LDERRNO( ld, LDAP_NO_MEMORY, NULL, NULL );
81 LDAP_SET_LDERRNO( ld, LDAP_ENCODING_ERROR, NULL, NULL );
89 LDAP_SET_LDERRNO( ld, rc, NULL, NULL );
101 ld LDAP pointer to the desired connection
112 LDAP *ld,
46 ldap_create_proxyauth_control( LDAP *ld, const char *dn, const char ctl_iscritical, LDAPControl **ctrlp ) argument
111 ldap_create_proxiedauth_control( LDAP *ld, const char *authzid, LDAPControl **ctrlp ) argument
[all...]
H A Dldap-int.h143 LDAP_IOSTATUS_LOCK, /* serializes access to ld->ld_iostatus */
226 struct ldapreq *lr_prev; /* ld->ld_requests previous request */
227 struct ldapreq *lr_next; /* ld->ld_requests next request */
325 #define NSLDAPI_USING_CLASSIC_IO_FUNCTIONS( ld ) ((ld)->ld_io_fns_ptr != NULL)
418 #define LDAP_MUTEX_ALLOC( ld ) \
419 (((ld)->ld_mutex_alloc_fn != NULL) ? (ld)->ld_mutex_alloc_fn() : NULL)
422 #define LDAP_MUTEX_FREE( ld, m ) \
423 if ( (ld)
[all...]
H A Dgetoption.c31 #define LDAP_GET_BITOPT( ld, bit ) \
32 ((ld)->ld_options & bit ) != 0 ? 1 : 0
40 ldap_get_option( LDAP *ld, int option, void *optdata ) argument
67 if ( ld != NULL ) {
68 LDAP_SET_LDERRNO( ld, rc, NULL, NULL );
86 * if ld is NULL, arrange to return options from our default settings
88 if ( ld == NULL ) {
89 ld = &nsldapi_ld_defaults;
92 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
97 if (ld !
[all...]
H A Dextendop.c32 * err = ldap_extended_operation( ld, exoid, &exdata, NULL, NULL, &msgid );
38 LDAP *ld,
62 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
68 if ( NSLDAPI_LDAP_VERSION( ld ) < LDAP_VERSION3 ) {
70 LDAP_SET_LDERRNO( ld, rc, NULL, NULL );
77 LDAP_SET_LDERRNO( ld, rc, NULL, NULL );
81 LDAP_MUTEX_LOCK( ld, LDAP_MSGID_LOCK );
82 msgid = ++ld->ld_msgid;
83 LDAP_MUTEX_UNLOCK( ld, LDAP_MSGID_LOCK );
86 if ( ld
37 ldap_extended_operation( LDAP *ld, const char *exoid, const struct berval *exdata, LDAPControl **serverctrls, LDAPControl **clientctrls, int *msgidp ) argument
141 ldap_extended_operation_s( LDAP *ld, const char *requestoid, const struct berval *requestdata, LDAPControl **serverctrls, LDAPControl **clientctrls, char **retoidp, struct berval **retdatap ) argument
180 ldap_parse_extended_result( LDAP *ld, LDAPMessage *res, char **retoidp, struct berval **retdatap, int freeit ) argument
[all...]
H A Dsaslbind.c41 * err = ldap_sasl_bind( ld, "cn=manager, o=university of michigan, c=us",
47 LDAP *ld,
79 LDAP_SET_LDERRNO( ld, LDAP_PARAM_ERROR, NULL, NULL );
84 ldapversion = NSLDAPI_LDAP_VERSION( ld );
88 LDAP_SET_LDERRNO( ld, LDAP_NOT_SUPPORTED, NULL, NULL );
92 LDAP_MUTEX_LOCK( ld, LDAP_MSGID_LOCK );
93 msgid = ++ld->ld_msgid;
94 LDAP_MUTEX_UNLOCK( ld, LDAP_MSGID_LOCK );
99 if ( ld->ld_cache_on && ld
46 ldap_sasl_bind( LDAP *ld, const char *dn, const char *mechanism, const struct berval *cred, LDAPControl **serverctrls, LDAPControl **clientctrls, int *msgidp ) argument
175 ldap_sasl_bind_s( LDAP *ld, const char *dn, const char *mechanism, const struct berval *cred, LDAPControl **serverctrls, LDAPControl **clientctrls, struct berval **servercredp ) argument
215 ldap_parse_sasl_bind_result( LDAP *ld, LDAPMessage *res, struct berval **servercredp, int freeit ) argument
[all...]
H A Dadd.c43 * ld LDAP descriptor
57 * msgid = ldap_add( ld, dn, attrs );
61 ldap_add( LDAP *ld, const char *dn, LDAPMod **attrs ) argument
67 if ( ldap_add_ext( ld, dn, attrs, NULL, NULL, &msgid )
71 return( -1 ); /* error is in ld handle */
82 ldap_add_ext( LDAP *ld, const char *dn, LDAPMod **attrs, argument
101 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
107 LDAP_SET_LDERRNO( ld, LDAP_PARAM_ERROR, NULL, NULL );
113 LDAP_SET_LDERRNO( ld, lderr, NULL, NULL );
121 LDAP_MUTEX_LOCK( ld, LDAP_MSGID_LOC
190 ldap_add_s( LDAP *ld, const char *dn, LDAPMod **attrs ) argument
196 ldap_add_ext_s( LDAP *ld, const char *dn, LDAPMod **attrs, LDAPControl **serverctrls, LDAPControl **clientctrls ) argument
[all...]
H A Dmodify.c43 * ld LDAP descriptor
55 * msgid = ldap_modify( ld, dn, mods );
59 ldap_modify( LDAP *ld, const char *dn, LDAPMod **mods ) argument
65 if ( ldap_modify_ext( ld, dn, mods, NULL, NULL, &msgid )
69 return( -1 ); /* error is in ld handle */
75 ldap_modify_ext( LDAP *ld, const char *dn, LDAPMod **mods, argument
101 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
106 LDAP_SET_LDERRNO( ld, LDAP_PARAM_ERROR, NULL, NULL );
112 LDAP_SET_LDERRNO( ld, lderr, NULL, NULL );
119 LDAP_MUTEX_LOCK( ld, LDAP_MSGID_LOC
190 ldap_modify_s( LDAP *ld, const char *dn, LDAPMod **mods ) argument
197 ldap_modify_ext_s( LDAP *ld, const char *dn, LDAPMod **mods, LDAPControl **serverctrls, LDAPControl **clientctrls ) argument
[all...]
H A Dreferral.c38 ldap_first_reference( LDAP *ld, LDAPMessage *res ) argument
40 if ( !NSLDAPI_VALID_LDAP_POINTER( ld ) || res == NULLMSG ) {
48 return( ldap_next_reference( ld, res ));
54 ldap_next_reference( LDAP *ld, LDAPMessage *ref ) argument
56 if ( !NSLDAPI_VALID_LDAP_POINTER( ld ) || ref == NULLMSG ) {
72 ldap_count_references( LDAP *ld, LDAPMessage *res ) argument
76 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
95 ldap_parse_reference( LDAP *ld, LDAPMessage *ref, char ***referralsp, argument
100 if ( !NSLDAPI_VALID_LDAP_POINTER( ld ) ||
105 err = nsldapi_parse_reference( ld, re
123 nsldapi_parse_reference( LDAP *ld, BerElement *rber, char ***referralsp, LDAPControl ***serverctrlsp ) argument
173 ldap_get_reference_urls(LDAP *ld, LDAPMessage *res) argument
[all...]
H A Dllib-lldap20 int ldap_abandon_ext(LDAP *ld, int msgid, LDAPControl **serverctrls, LDAPControl ** clientctrls);
22 int ldap_abandon( LDAP *ld, int msgid );
27 int ldap_add_ext( LDAP *ld, const char *dn, LDAPMod **attrs, LDAPControl ** serverctrls, LDAPControl **clientctrls, int *msgidp);
29 int ldap_add_ext_s( LDAP *ld, const char *dn, LDAPMod **attrs, LDAPControl ** serverctrls, LDAPControl **clientctrls);
31 int ldap_add( LDAP *ld, const char *dn, LDAPMod **attrs );
32 int ldap_add_s( LDAP *ld, const char *dn, LDAPMod **attrs );
37 int ldap_bind(LDAP *ld, const char *dn, const char *passwd, int authmethod);
38 int ldap_bind_s(LDAP *ld, const char *dn, const char *passwd, int authmethod);
39 void ldap_set_rebind_proc(LDAP *ld, LDAP_REBINDPROC_CALLBACK *rebindproc, void *arg);
44 int ldap_simple_bind( LDAP *ld, cons
[all...]
H A Dgetentry.c42 ldap_first_entry( LDAP *ld, LDAPMessage *chain ) argument
44 if ( !NSLDAPI_VALID_LDAP_POINTER( ld ) || chain == NULLMSG ) {
52 return( ldap_next_entry( ld, chain ));
58 ldap_next_entry( LDAP *ld, LDAPMessage *entry ) argument
60 if ( !NSLDAPI_VALID_LDAP_POINTER( ld ) || entry == NULLMSG ) {
76 ldap_count_entries( LDAP *ld, LDAPMessage *chain ) argument
80 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
96 ldap_get_entry_controls( LDAP *ld, LDAPMessage *entry, argument
104 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
126 LDAP_SET_LDERRNO( ld, r
[all...]
H A Dresult.c46 static int check_response_queue( LDAP *ld, int msgid, int all,
48 static int ldap_abandoned( LDAP *ld, int msgid );
49 static int ldap_mark_abandoned( LDAP *ld, int msgid );
50 static int wait4msg( LDAP *ld, int msgid, int all, int unlock_permitted,
52 static int read1msg( LDAP *ld, int msgid, int all, Sockbuf *sb, LDAPConn *lc,
54 static void check_for_refs( LDAP *ld, LDAPRequest *lr, BerElement *ber,
56 static int build_result_ber( LDAP *ld, BerElement **berp, LDAPRequest *lr );
57 static void merge_error_info( LDAP *ld, LDAPRequest *parentr, LDAPRequest *lr );
59 static int cldap_select1( LDAP *ld, struct timeval *timeout );
61 static void link_pend( LDAP *ld, LDAPPen
83 ldap_result( LDAP *ld, int msgid, int all, struct timeval *timeout, LDAPMessage **result ) argument
110 nsldapi_result_nolock( LDAP *ld, int msgid, int all, int unlock_permitted, struct timeval *timeout, LDAPMessage **result ) argument
162 check_response_queue( LDAP *ld, int msgid, int all, int do_abandon_check, LDAPMessage **result ) argument
271 wait4msg( LDAP *ld, int msgid, int all, int unlock_permitted, struct timeval *timeout, LDAPMessage **result ) argument
493 read1msg( LDAP *ld, int msgid, int all, Sockbuf *sb, LDAPConn *lc, LDAPMessage **result ) argument
897 check_for_refs( LDAP *ld, LDAPRequest *lr, BerElement *ber, int ldapversion, int *totalcountp, int *chasingcountp ) argument
984 build_result_ber( LDAP *ld, BerElement **berp, LDAPRequest *lr ) argument
1015 merge_error_info( LDAP *ld, LDAPRequest *parentr, LDAPRequest *lr ) argument
1055 cldap_select1( LDAP *ld, struct timeval *timeout ) argument
1168 ldap_msgdelete( LDAP *ld, int msgid ) argument
1213 ldap_abandoned( LDAP *ld, int msgid ) argument
1237 ldap_mark_abandoned( LDAP *ld, int msgid ) argument
1269 cldap_getmsg( LDAP *ld, struct timeval *timeout, BerElement **ber ) argument
1297 nsldapi_post_result( LDAP *ld, int msgid, LDAPMessage *result ) argument
1370 link_pend( LDAP *ld, LDAPPend *lp ) argument
[all...]
H A Dvlistctrl.c42 * ld LDAP pointer to the desired connection
75 LDAP *ld,
83 if (!NSLDAPI_VALID_LDAP_POINTER( ld )) {
89 LDAP_SET_LDERRNO( ld, LDAP_PARAM_ERROR, NULL, NULL );
94 if ( LDAP_SUCCESS != nsldapi_alloc_ber_with_options( ld, &ber ) )
96 LDAP_SET_LDERRNO( ld, LDAP_NO_MEMORY, NULL, NULL );
106 LDAP_SET_LDERRNO( ld, LDAP_ENCODING_ERROR, NULL, NULL );
120 LDAP_SET_LDERRNO( ld, LDAP_ENCODING_ERROR, NULL, NULL );
132 LDAP_SET_LDERRNO( ld, LDAP_ENCODING_ERROR, NULL, NULL );
145 LDAP_SET_LDERRNO( ld, r
74 ldap_create_virtuallist_control( LDAP *ld, LDAPVirtualList *ldvlistp, LDAPControl **ctrlp ) argument
178 ldap_parse_virtuallist_control( LDAP *ld, LDAPControl **ctrls, unsigned long *target_posp, unsigned long *list_sizep, int *errcodep ) argument
[all...]
/illumos-gate/usr/src/lib/libbc/libc/compat/common/
H A Dlockf.c49 struct flock ld; local
53 ld.l_type = F_WRLCK; /* lockf() only deals with exclusive locks */
54 ld.l_whence = 1; /* lock always starts at current position */
56 ld.l_start = size;
57 ld.l_len = -size;
59 ld.l_start = 0L;
60 ld.l_len = size;
65 if (_syscall(SYS_fcntl, fildes, SV_GETLK, &ld) != -1) {
66 if (ld.l_type == F_UNLCK) {
67 ld
[all...]
/illumos-gate/usr/src/lib/libldap5/sources/ldap/prldap/
H A Dldappr-int.h81 int prldap_install_io_functions( LDAP *ld, int shared );
82 int prldap_session_arg_from_ld( LDAP *ld, PRLDAPIOSessionArg **sessargpp );
87 int prldap_socket_arg_from_ld( LDAP *ld, PRLDAPIOSocketArg **sockargpp );
93 int prldap_install_thread_functions( LDAP *ld, int shared );
94 int prldap_thread_new_handle( LDAP *ld, void *sessionarg );
95 void prldap_thread_dispose_handle( LDAP *ld, void *sessionarg );
101 int prldap_install_dns_functions( LDAP *ld );
103 int prldap_x_install_dns_skipdb( LDAP *ld, const char *skip );
/illumos-gate/usr/src/cmd/ldap/common/
H A Dldaptool-sasl.h15 void *ldaptool_set_sasl_defaults ( LDAP *ld, char *mech, char *authid, char *username, char *passwd, char *realm );
16 int ldaptool_sasl_interact ( LDAP *ld, unsigned flags, void *defaults, void *p );
/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dnanl.c38 long double ld; member in union:__anon3551
45 long double ld; member in union:__anon3552
55 return (__nanl_union.ld);
/illumos-gate/usr/src/lib/libsldap/common/
H A Dns_wrapper.c47 LDAP *ld = __s_api_getLDAPconn(flags); local
49 return (ldap_abandon_ext(ld, msgid, serverctrls, clientctrls));
56 LDAP *ld = __s_api_getLDAPconn(flags); local
58 return (ldap_abandon(ld, msgid));
69 LDAP *ld = __s_api_getLDAPconn(flags); local
71 return (ldap_add_ext(ld, dn, attrs,
80 LDAP *ld = __s_api_getLDAPconn(flags); local
82 return (ldap_add_ext_s(ld, dn, attrs, serverctrls, clientctrls));
89 LDAP *ld = __s_api_getLDAPconn(flags); local
91 return (ldap_add(ld, d
98 LDAP *ld = __s_api_getLDAPconn(flags); local
111 LDAP *ld = __s_api_getLDAPconn(flags); local
122 LDAP *ld = __s_api_getLDAPconn(flags); local
132 LDAP *ld = __s_api_getLDAPconn(flags); local
141 LDAP *ld = __s_api_getLDAPconn(flags); local
154 LDAP *ld = __s_api_getLDAPconn(flags); local
164 LDAP *ld = __s_api_getLDAPconn(flags); local
173 LDAP *ld = __s_api_getLDAPconn(flags); local
182 LDAP *ld = __s_api_getLDAPconn(flags); local
195 LDAP *ld = __s_api_getLDAPconn(flags); local
206 LDAP *ld = __s_api_getLDAPconn(flags); local
216 LDAP *ld = __s_api_getLDAPconn(flags); local
225 LDAP *ld = __s_api_getLDAPconn(flags); local
238 LDAP *ld = __s_api_getLDAPconn(flags); local
247 LDAP *ld = __s_api_getLDAPconn(flags); local
256 LDAP *ld = __s_api_getLDAPconn(flags); local
265 LDAP *ld = __s_api_getLDAPconn(flags); local
279 LDAP *ld = __s_api_getLDAPconn(flags); local
292 LDAP *ld = __s_api_getLDAPconn(flags); local
306 LDAP *ld = __s_api_getLDAPconn(flags); local
321 LDAP *ld = __s_api_getLDAPconn(flags); local
335 LDAP *ld = __s_api_getLDAPconn(flags); local
347 LDAP *ld = __s_api_getLDAPconn(flags); local
357 LDAP *ld = __s_api_getLDAPconn(flags); local
369 LDAP *ld = __s_api_getLDAPconn(flags); local
[all...]

Completed in 100 milliseconds

1234567891011>>