Searched refs:ld (Results 51 - 75 of 254) sorted by relevance

1234567891011

/osnet-11/usr/src/lib/libldap4/common/
H A Dresult.c61 static int ldap_abandoned( LDAP *ld, int msgid );
62 static int ldap_mark_abandoned( LDAP *ld, int msgid );
63 static int wait4msg( LDAP *ld, int msgid, int all, struct timeval *timeout,
65 static int read1msg( LDAP *ld, int msgid, int all, Sockbuf *sb, LDAPConn *lc,
67 static int build_result_ber( LDAP *ld, BerElement *ber, LDAPRequest *lr );
68 static void merge_error_info( LDAP *ld, LDAPRequest *parentr, LDAPRequest *lr );
70 static int ldap_select1( LDAP *ld, struct timeval *timeout );
108 ldap_result( LDAP *ld, int msgid, int all, struct timeval *timeout, argument
122 LOCK_RESPONSE(ld);
123 LOCK_LDAP(ld);
228 wait4msg( LDAP *ld, int msgid, int all, struct timeval *timeout, LDAPMessage **result ) argument
356 read1msg( LDAP *ld, int msgid, int all, Sockbuf *sb, LDAPConn *lc, LDAPMessage **result ) argument
838 build_result_ber( LDAP *ld, BerElement *ber, LDAPRequest *lr ) argument
887 merge_error_info( LDAP *ld, LDAPRequest *parentr, LDAPRequest *lr ) argument
946 ldap_select1( LDAP *ld, struct timeval *timeout ) argument
969 ldap_select1( LDAP *ld, struct timeval *timeout ) argument
978 ldap_select1( LDAP *ld, struct timeval *timeout ) argument
995 ldap_select1( LDAP *ld, struct timeval *timeout ) argument
1016 ldap_select1( LDAP *ld, struct timeval *timeout ) argument
1063 ldap_msgdelete( LDAP *ld, int msgid ) argument
1113 ldap_abandoned( LDAP *ld, int msgid ) argument
1130 ldap_mark_abandoned( LDAP *ld, int msgid ) argument
1154 cldap_getmsg( LDAP *ld, struct timeval *timeout, BerElement *ber ) argument
1209 ldap_parse_result(LDAP *ld, LDAPMessage *res, int *errcodep, char **matcheddnp, char **errmsgp, char ***referralsp, LDAPControl ***serverctrlsp, int freeit) argument
1392 ldap_parse_sasl_bind_result(LDAP *ld, LDAPMessage *res, struct berval **servercredp, int freeit) argument
1521 ldap_parse_extended_result(LDAP *ld, LDAPMessage *res, char **resultoidp, struct berval **resultdata, int freeit) argument
[all...]
H A Dcldap.c64 static int add_addr( LDAP *ld, struct sockaddr *sap );
65 static int cldap_result( LDAP *ld, int msgid, LDAPMessage **res,
67 static int cldap_parsemsg( LDAP *ld, int msgid, BerElement *ber,
80 * LDAP *ld;
81 * ld = cldap_open( hostname, port );
91 LDAP *ld; local
120 if (( ld = ldap_init( host, port )) == NULL ) {
124 if ( (ld->ld_sb.sb_fromaddr = (void *) calloc( 1,
126 free( ld );
130 ld
230 cldap_setretryinfo( LDAP *ld, int tries, time_t timeout ) argument
244 cldap_search_s( LDAP *ld, char *base, int scope, char *filter, char **attrs, int attrsonly, LDAPMessage **res, char *logdn ) argument
311 add_addr( LDAP *ld, struct sockaddr *sap ) argument
342 cldap_result( LDAP *ld, int msgid, LDAPMessage **res, struct cldap_retinfo *crip, char *base ) argument
476 cldap_parsemsg( LDAP *ld, int msgid, BerElement *ber, LDAPMessage **res, char *base ) argument
[all...]
H A Dsearch.c70 ldap_build_search_req(LDAP *ld, char *base, int scope, char *filter, argument
104 ld->ld_errno = LDAP_PARAM_ERROR;
109 if ((ber = alloc_ber_with_options(ld)) == NULLBER) {
127 theTimeLimit = ld->ld_timelimit;
131 if (ld->ld_sb.sb_naddr > 0) {
132 err = ber_printf(ber, "{ist{seeiib", ++ld->ld_msgid,
133 ld->ld_cldapdn, LDAP_REQ_SEARCH, base, scope, ld->ld_deref,
134 sizelimit == -1 ? ld->ld_sizelimit : sizelimit, theTimeLimit,
138 err = ber_printf(ber, "{it{seeiib", ++ld
220 ldap_search(LDAP *ld, char *base, int scope, char *filter, char **attrs, int attrsonly) argument
722 ldap_search_st(LDAP *ld, char *base, int scope, char *filter, char **attrs, int attrsonly, struct timeval *timeout, LDAPMessage **res) argument
744 ldap_search_s(LDAP *ld, char *base, int scope, char *filter, char **attrs, int attrsonly, LDAPMessage **res) argument
760 ldap_search_ext(LDAP *ld, char *base, int scope, char *filter, char **attrs, int attrsonly, LDAPControl **serverctrls, LDAPControl **clientctrls, struct timeval *timeoutp, int sizelimit, int *msgidp) argument
826 ldap_search_ext_s(LDAP *ld, char *base, int scope, char *filter, char **attrs, int attrsonly, LDAPControl **serverctrls, LDAPControl **clientctrls, struct timeval *timeoutp, int sizelimit, LDAPMessage **res) argument
[all...]
H A Durl.c360 ldap_url_search( LDAP *ld, char *url, int attrsonly ) argument
368 LOCK_LDAP(ld);
371 ld->ld_errno = LDAP_PARAM_ERROR;
373 UNLOCK_LDAP(ld);
378 if (( ber = ldap_build_search_req( ld, ludp->lud_dn,
383 UNLOCK_LDAP(ld);
393 NULL ? ld->ld_defhost : ludp->lud_host )) == NULL ) {
397 ld->ld_errno = LDAP_NO_MEMORY;
411 err = send_server_request( ld, ber, ld
424 ldap_url_search_st( LDAP *ld, char *url, int attrsonly, struct timeval *timeout, LDAPMessage **res ) argument
460 ldap_url_search_s( LDAP *ld, char *url, int attrsonly, LDAPMessage **res ) argument
550 ldap_dns_to_url( LDAP *ld, char *dns_name, char *attrs, char *scope, char *filter ) argument
784 ldap_dn_to_url( LDAP *ld, char *dn, int nameparts ) argument
[all...]
H A Dgetmsg.c20 LDAPMessage * ldap_first_message(LDAP *ld, LDAPMessage *res) argument
25 LDAPMessage * ldap_next_message(LDAP *ld, LDAPMessage *msg) argument
32 int ldap_count_messages( LDAP *ld, LDAPMessage *res) argument
H A Dreferral.c26 re_encode_request( LDAP *ld, BerElement *origber, int msgid, LDAPURLDesc *urldesc );
29 static int addUnFollowedRef(LDAP *ld, LDAPRequest *lr, char *ref);
99 chase_referrals( LDAP *ld, LDAPRequest *lr, char **refs, int *count, int samerequest ) argument
111 ld->ld_errno = LDAP_SUCCESS; /* optimistic */
118 LOCK_LDAP(ld);
121 if ( lr->lr_parentcnt >= ld->ld_refhoplimit ) {
124 ld->ld_refhoplimit, 0, 0 );
125 /* XXX report as error in ld->ld_errno? */
126 rc = ld->ld_errno = (ld
262 addUnFollowedRef(LDAP *ld, LDAPRequest *lr, char *ref) argument
286 append_referral( LDAP *ld, char **referralsp, char *s ) argument
318 re_encode_request( LDAP *ld, BerElement *origber, int msgid, LDAPURLDesc *urldesc ) argument
500 find_request_by_msgid( LDAP *ld, int msgid ) argument
[all...]
H A Dgetattr.c41 ldap_first_attribute( LDAP *ld, LDAPMessage *entry, BerElement **ber ) argument
52 if ( (*ber = alloc_ber_with_options( ld )) == NULLBER ) {
68 ld->ld_errno = LDAP_DECODING_ERROR;
80 ldap_next_attribute( LDAP *ld, LDAPMessage *entry, BerElement *ber ) argument
95 ld->ld_errno = LDAP_DECODING_ERROR;
99 ld->ld_errno = LDAP_SUCCESS;
H A Dgetref.c21 LDAPMessage * ldap_first_reference(LDAP *ld, LDAPMessage *res) argument
33 LDAPMessage * ldap_next_reference(LDAP *ld, LDAPMessage *entry) argument
51 ldap_count_references( LDAP *ld, LDAPMessage *res ) argument
62 char ** ldap_get_reference_urls(LDAP *ld, LDAPMessage *res) argument
70 ld->ld_errno = LDAP_PARAM_ERROR;
75 ld->ld_errno = LDAP_DECODING_ERROR;
/osnet-11/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
H A Dldap_misc_solaris.c28 LDAP *ld = NULL; local
50 ld = ldapssl_init(ludp->lud_host, ludp->lud_port, 1);
52 ld = ldap_init(ludp->lud_host, ludp->lud_port);
54 if (ld != NULL)
55 *ldp = ld;
H A Dldap_pwd_policy.c60 LDAP *ld=NULL; local
116 if ((st=ldap_add_ext_s(ld, policy_dn, mods, NULL, NULL)) != LDAP_SUCCESS) {
141 LDAP *ld=NULL; local
185 if ((st=ldap_modify_ext_s(ld, policy_dn, mods, NULL, NULL)) != LDAP_SUCCESS) {
200 LDAP *ld,
212 krb5_ldap_get_value(ld, ent, "krbmaxpwdlife", &(pol_entry->pw_max_life));
213 krb5_ldap_get_value(ld, ent, "krbminpwdlife", &(pol_entry->pw_min_life));
214 krb5_ldap_get_value(ld, ent, "krbpwdmindiffchars", &(pol_entry->pw_min_classes));
215 krb5_ldap_get_value(ld, ent, "krbpwdminlength", &(pol_entry->pw_min_length));
216 krb5_ldap_get_value(ld, en
199 populate_policy(krb5_context context, LDAP *ld, LDAPMessage *ent, char *pol_name, osa_policy_ent_t pol_entry) argument
244 LDAP *ld=NULL; local
348 LDAP *ld=NULL; local
397 LDAP *ld=NULL; local
[all...]
/osnet-11/usr/src/lib/libldap4/include/
H A Dldap-private.h38 #define DBG_LOCK2(ld,st) printf("%d> %s ld_lockcount=%d %d:%s\n", thr_self(), st, (ld)->ld_lockcount, __LINE__, __FILE__);
41 #define DBG_LOCK2(ld,st)
44 #define LOCK_RESPONSE(ld) \
45 if ((ld)->ld_response_lockthread != thr_self()) { \
47 pthread_mutex_lock( &((ld)->ld_response_mutex) ); \
49 (ld)->ld_response_lockthread = thr_self(); \
51 (ld)->ld_response_lockcount++; \
52 DBG_LOCK2(ld, "fake ldap lock") \
55 #define UNLOCK_RESPONSE(ld) \
[all...]
H A Dldap.h420 typedef int (LDAP_REBIND_FUNCTION)(LDAP *ld, char **dn, char **passwd,
886 int ldap_abandon_ext(LDAP *ld, int msgid, LDAPControl **serverctrls,
888 int ldap_abandon(LDAP *ld, int msgid);
893 int ldap_add_ext(LDAP *ld, char *dn, LDAPMod **attrs,
895 int ldap_add_ext_s(LDAP *ld, char *dn, LDAPMod **attrs,
897 int ldap_add(LDAP *ld, char *dn, LDAPMod **attrs);
898 int ldap_add_s(LDAP *ld, char *dn, LDAPMod **attrs);
904 int ldap_bind(LDAP *ld, char *who, char *passwd, int authmethod);
906 int ldap_bind_s(LDAP *ld, char *who, char *cred, int method);
909 void ldap_set_rebind_proc(LDAP *ld, LDAP_REBIND_FUNCTIO
[all...]
/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Dcache.c41 ldap_cache_flush( LDAP *ld, const char *dn, const char *filter ) argument
43 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
51 return( (ld->ld_cache_flush)( ld, dn, filter ) );
62 nsldapi_add_result_to_cache( LDAP *ld, LDAPMessage *m ) argument
76 ld->ld_cache_add == NULL ) {
84 dn = ldap_get_dn( ld, m );
92 for ( i = 0, a = ldap_first_attribute( ld, m, &ber ); a != NULL;
93 a = ldap_next_attribute( ld, m, ber ), i++ ) {
116 mods[i]->mod_bvalues = ldap_get_values_len( ld,
[all...]
H A Dufn.c47 static int ldap_ufn_search_ctx( LDAP *ld, char **ufncomp, int ncomp,
51 static LDAPMessage *ldap_msg_merge( LDAP *ld, LDAPMessage *a, LDAPMessage *b );
52 static LDAPMessage *ldap_ufn_expand( LDAP *ld,
60 * ld LDAP descriptor
78 * error = ldap_ufn_search_ctx( ld, ufncomp, 3, NULL, attrs, attrsonly,
85 LDAP *ld,
160 LDAP_SET_LDERRNO( ld, err, NULL, NULL );
174 if ( (dn = ldap_get_dn( ld, tmpcand )) == NULL )
181 LDAP_SET_LDERRNO( ld, err,
191 LDAP_SET_LDERRNO( ld, er
84 ldap_ufn_search_ctx( LDAP *ld, char **ufncomp, int ncomp, char *prefix, char **attrs, int attrsonly, LDAPMessage **res, LDAP_CANCELPROC_CALLBACK *cancelproc, void *cancelparm, char *tag1, char *tag2, char *tag3 ) argument
255 ldap_ufn_search_ct( LDAP *ld, char *ufn, char **attrs, int attrsonly, LDAPMessage **res, LDAP_CANCELPROC_CALLBACK *cancelproc, void *cancelparm, char *tag1, char *tag2, char *tag3 ) argument
349 ldap_ufn_search_c( LDAP *ld, char *ufn, char **attrs, int attrsonly, LDAPMessage **res, LDAP_CANCELPROC_CALLBACK *cancelproc, void *cancelparm ) argument
361 ldap_ufn_search_s( LDAP *ld, char *ufn, char **attrs, int attrsonly, LDAPMessage **res ) argument
381 ldap_msg_merge( LDAP *ld, LDAPMessage *a, LDAPMessage *b ) argument
445 ldap_ufn_expand( LDAP *ld, LDAP_CANCELPROC_CALLBACK *cancelproc, void *cancelparm, char **dns, char *filter, int scope, char **attrs, int aonly, int *err ) argument
508 ldap_ufn_setfilter( LDAP *ld, char *fname ) argument
518 ldap_ufn_setprefix( LDAP *ld, char *prefix ) argument
[all...]
H A Dos-ip.c125 static int nsldapi_iostatus_init_nolock( LDAP *ld );
156 static LBER_SOCKET nsldapi_os_socket( LDAP *ld, int secure, int domain,
160 int namelen, LDAP *ld);
165 typedef LBER_SOCKET (NSLDAPI_SOCKET_FN)( LDAP *ld, int secure, int domain,
169 int namelen, LDAP *ld);
174 static int nsldapi_try_each_host( LDAP *ld, const char *hostlist, int defport,
195 nsldapi_os_socket( LDAP *ld, int secure, int domain, int type, int protocol ) argument
201 LDAP_SET_LDERRNO( ld, LDAP_LOCAL_ERROR, NULL,
231 LDAP_SET_LDERRNO( ld, LDAP_LOCAL_ERROR, NULL, errmsg );
245 int salen, LDAP *ld)
244 nsldapi_os_connect_with_to(LBER_SOCKET sockfd, struct sockaddr *saptr, int salen, LDAP *ld) argument
465 nsldapi_connect_to_host( LDAP *ld, Sockbuf *sb, const char *hostlist, int defport, int secure, char **krbinstancep ) argument
536 nsldapi_try_each_host( LDAP *ld, const char *hostlist, int defport, int secure, NSLDAPI_SOCKET_FN *socketfn, NSLDAPI_IOCTL_FN *ioctlfn, NSLDAPI_CONNECT_WITH_TO_FN *connectwithtofn, NSLDAPI_CONNECT_FN *connectfn, NSLDAPI_CLOSE_FN *closefn ) argument
736 nsldapi_close_connection( LDAP *ld, Sockbuf *sb ) argument
785 nsldapi_iostatus_interest_write( LDAP *ld, Sockbuf *sb ) argument
837 nsldapi_iostatus_interest_read( LDAP *ld, Sockbuf *sb ) argument
888 nsldapi_iostatus_interest_clear( LDAP *ld, Sockbuf *sb ) argument
952 nsldapi_iostatus_is_write_ready( LDAP *ld, Sockbuf *sb ) argument
998 nsldapi_iostatus_is_read_ready( LDAP *ld, Sockbuf *sb ) argument
1161 nsldapi_iostatus_poll( LDAP *ld, struct timeval *timeout ) argument
1471 nsldapi_install_lber_extiofns( LDAP *ld, Sockbuf *sb ) argument
1615 nsldapi_compat_socket( LDAP *ld, int secure, int domain, int type, int protocol ) argument
1762 nsldapi_install_compat_io_fns( LDAP *ld, struct ldap_io_fns *iofns ) argument
1807 _ns_gethostbyaddr(LDAP *ld, const char *addr, int length, int type, LDAPHostEnt *result, char *buffer, int buflen, int *statusp, void *extradata) argument
[all...]
H A Dsearch.c44 static int nsldapi_search( LDAP *ld, const char *base, int scope,
58 static int nsldapi_search_s( LDAP *ld, const char *base, int scope,
67 * ld LDAP descriptor
78 * msgid = ldap_search( ld, "c=us@o=UM", LDAP_SCOPE_SUBTREE, "cn~=bob",
84 LDAP *ld,
96 if ( ldap_search_ext( ld, base, scope, filter, attrs, attrsonly, NULL,
100 return( -1 ); /* error is in ld handle */
112 LDAP *ld,
120 struct timeval *timeoutp, /* NULL means use ld->ld_timelimit */
130 if ( ld !
83 ldap_search( LDAP *ld, const char *base, int scope, const char *filter, char **attrs, int attrsonly ) argument
111 ldap_search_ext( LDAP *ld, const char *base, int scope, const char *filter, char **attrs, int attrsonly, LDAPControl **serverctrls, LDAPControl **clientctrls, struct timeval *timeoutp, int sizelimit, int *msgidp ) argument
147 nsldapi_search( LDAP *ld, const char *base, int scope, const char *filter, char **attrs, int attrsonly, LDAPControl **serverctrls, LDAPControl **clientctrls, int timelimit, int sizelimit, int *msgidp ) argument
265 nsldapi_build_search_req( LDAP *ld, const char *base, int scope, const char *filter, char **attrs, int attrsonly, LDAPControl **serverctrls, LDAPControl **clientctrls, int timelimit, int sizelimit, int msgid, BerElement **berp ) argument
904 ldap_search_st( LDAP *ld, const char *base, int scope, const char *filter, char **attrs, int attrsonly, struct timeval *timeout, LDAPMessage **res ) argument
921 ldap_search_s( LDAP *ld, const char *base, int scope, const char *filter, char **attrs, int attrsonly, LDAPMessage **res ) argument
936 ldap_search_ext_s( LDAP *ld, const char *base, int scope, const char *filter, char **attrs, int attrsonly, LDAPControl **serverctrls, LDAPControl **clientctrls, struct timeval *timeoutp, int sizelimit, LDAPMessage **res ) argument
957 nsldapi_search_s( LDAP *ld, const char *base, int scope, const char *filter, char **attrs, int attrsonly, LDAPControl **serverctrls, LDAPControl **clientctrls, struct timeval *localtimeoutp, int timelimit, int sizelimit, LDAPMessage **res ) argument
[all...]
H A Dsasl.c53 static int nsldapi_sasl_close( LDAP *ld, Sockbuf *sb );
149 LDAP *ld; local
159 ld = (LDAP *)sb->sb_sasl_prld;
160 if (ld == NULL) {
192 if ( ( ret < 0 ) && ( LDAP_GET_ERRNO(ld) == EINTR ) )
206 LDAP_SET_ERRNO(ld, EIO);
222 if ( ( ret < 0 ) && ( LDAP_GET_ERRNO(ld) == EINTR ) )
241 LDAP_SET_ERRNO(ld, EIO);
319 LDAP *ld; local
325 ld
379 LDAP *ld; local
406 nsldapi_sasl_install( LDAP *ld, Sockbuf *sb, void *ctx_arg, sasl_ssf_t *ssf) argument
521 nsldapi_sasl_cvterrno( LDAP *ld, int err, char *msg ) argument
569 nsldapi_sasl_open(LDAP *ld) argument
634 nsldapi_sasl_close( LDAP *ld, Sockbuf *sb ) argument
648 nsldapi_sasl_do_bind( LDAP *ld, const char *dn, const char *mechs, unsigned flags, LDAP_SASL_INTERACT_PROC *callback, void *defaults, LDAPControl **sctrl, LDAPControl **cctrl ) argument
836 nsldapi_get_sasl_mechs( LDAP *ld, char **pmech ) argument
1030 ldap_sasl_interactive_bind_s( LDAP *ld, const char *dn, const char *saslMechanism, LDAPControl **sctrl, LDAPControl **cctrl, unsigned flags, LDAP_SASL_INTERACT_PROC *callback, void *defaults ) argument
[all...]
/osnet-11/usr/src/cmd/ldap/common/
H A Dldapdelete.c46 static LDAP *ld; variable
51 static int dodelete( LDAP *ld, char *dn, LDAPControl **serverctrls );
102 ld = ldaptool_ldap_init( 0 );
105 ldap_set_option( ld, LDAP_OPT_DEREF, &deref );
107 ldaptool_bind( ld );
113 if ((ldctrl = ldaptool_create_proxyauth_control(ld)) !=NULL) {
122 rc = dodelete( ld, conv, ldaptool_request_ctrls );
133 rc = dodelete( ld, buf, ldaptool_request_ctrls );
139 ldaptool_cleanup( ld );
161 dodelete( LDAP *ld, cha argument
182 dodelete( LDAP *ld, char *dn, LDAPControl **serverctrls ) argument
[all...]
H A Dldaptest.c22 static void handle_result( LDAP *ld, LDAPMessage *lm );
23 static void print_ldap_result( LDAP *ld, LDAPMessage *lm, char *s );
24 static void print_search_entry( LDAP *ld, LDAPMessage *res );
220 bind_prompt( LDAP *ld, char **dnp, char **passwdp, int *authmethodp, argument
258 LDAP *ld; local
363 ld = cldap_open( host, port );
366 ld = ldap_init( host, port );
369 if ( ld == NULL ) {
376 if ( (ld->ld_sb.sb_fd = open( copyfname, O_WRONLY | O_CREAT,
381 ld
1015 handle_result( LDAP *ld, LDAPMessage *lm ) argument
1070 print_ldap_result( LDAP *ld, LDAPMessage *lm, char *s ) argument
1105 print_search_entry( LDAP *ld, LDAPMessage *res ) argument
[all...]
/osnet-11/usr/src/lib/libc/sparc/sys/
H A Dvforkx.s82 ld [%g7 + UL_SIGMASK], %o1
83 ld [%g7 + UL_SIGMASK + 4], %o2
84 ld [%g7 + UL_SIGMASK + 8], %o3
85 ld [%g7 + UL_SIGMASK + 12], %o4
100 ld [%g7 + UL_VFORK], %g1
118 ld [%g7 + UL_SIGMASK], %o1
119 ld [%g7 + UL_SIGMASK + 4], %o2
120 ld [%g7 + UL_SIGMASK + 8], %o3
121 ld [%g7 + UL_SIGMASK + 12], %o4
/osnet-11/usr/src/lib/libldap5/include/ldap/
H A Dldappr.h62 * 'ld'.
64 * If 'ld' is NULL, the functions are installed as the default functions
72 int LDAP_CALL prldap_install_routines( LDAP *ld, int shared );
82 * If 'ld' and 'session" are both NULL, the option is set as the default
87 int LDAP_CALL prldap_set_session_option( LDAP *ld, void *sessionarg,
98 * If 'ld' and 'session" are both NULL, the default option value for all new
103 int LDAP_CALL prldap_get_session_option( LDAP *ld, void *sessionarg,
161 * set some application-specific data. If ld is NULL, arg is used. If
162 * both ld and arg are NULL, LDAP_PARAM_ERROR is returned.
166 int LDAP_CALL prldap_set_session_info( LDAP *ld, voi
[all...]
/osnet-11/usr/src/lib/libfedfs/common/
H A Dlist_fsns.c47 LDAP *ld; local
66 ld = nsdb_connect(host, port, NULL, NULL);
67 if (ld == NULL) {
83 if (ldap_search_s(ld, nce, LDAP_SCOPE_SUBTREE,
88 ldap_perror(ld, "ldap_search_s");
97 for (e = ldap_first_entry(ld, result); e != NULL;
98 e = ldap_next_entry(ld, e)) {
101 for (a = ldap_first_attribute(ld, e, &ber);
102 a != NULL; a = ldap_next_attribute(ld, e, ber)) {
107 vals = ldap_get_values_len(ld,
[all...]
/osnet-11/usr/src/lib/libc/sparc/gen/
H A Dladd.s48 ld [%o7+8],%o4 ! Instruction at ret-addr should be a
56 ld [%o0+0],%o2 ! fetch lop.dl_hop
57 ld [%o0+4],%o3 ! fetch lop.dl_lop
58 ld [%o1+0],%o4 ! fetch rop.dl_hop
59 ld [%o1+4],%o5 ! fetch rop.dl_lop
62 ld [%sp+(16*4)],%o0 ! address to store result into
H A Dlsub.s47 ld [%o7+8],%o4 ! Instruction at ret-addr should be a
55 ld [%o0+0],%o2 ! fetch lop.dl_hop
56 ld [%o0+4],%o3 ! fetch lop.dl_lop
57 ld [%o1+0],%o4 ! fetch rop.dl_hop
58 ld [%o1+4],%o5 ! fetch rop.dl_lop
61 ld [%sp+(16*4)],%o0 ! address to store result into
/osnet-11/usr/src/head/
H A Dldap.h454 int ldap_create_page_control(LDAP *ld, unsigned int pagesize,
456 int ldap_parse_page_control(LDAP *ld, LDAPControl **controls,
460 int ldap_sasl_cram_md5_bind_s(LDAP *ld, char *dn,
464 int ldap_x_sasl_digest_md5_bind_s(LDAP *ld, char *dn,
467 int ldap_x_sasl_digest_md5_bind(LDAP *ld, char *dn,
476 int LDAP_CALL ldap_set_option(LDAP *ld, int option,
478 int LDAP_CALL ldap_get_option(LDAP *ld, int option, void *optdata);
479 int LDAP_CALL ldap_unbind(LDAP *ld);
480 int LDAP_CALL ldap_unbind_s(LDAP *ld);
485 int LDAP_CALL ldap_abandon(LDAP *ld, in
[all...]

Completed in 82 milliseconds

1234567891011