Lines Matching defs:attr
36 BerElement * ldap_build_compare_req(LDAP *ld, char *dn, char *attr,
59 dn, attr, bvalue->bv_val, bvalue->bv_len ) == -1 ) {
91 * attr and value) are supplied. The msgid of the response is returned.
97 ldap_compare( LDAP *ld, char *dn, char *attr, char *value )
122 if ((ber = ldap_build_compare_req(ld, dn, attr, &bv, NULL)) == NULLBER) {
152 ldap_compare_s( LDAP *ld, char *dn, char *attr, char *value )
157 if ( (msgid = ldap_compare( ld, dn, attr, value )) == -1 )
167 int ldap_compare_ext(LDAP *ld, char *dn, char *attr, struct berval *bvalue,
190 if ((ber = ldap_build_compare_req(ld, dn, attr, bvalue, NULL)) == NULLBER) {
235 int ldap_compare_ext_s(LDAP *ld, char *dn, char *attr, struct berval *bvalue,
241 if ( (retcode = ldap_compare_ext( ld, dn, attr, bvalue, serverctrls, clientctrls, &msgid )) != LDAP_SUCCESS )