Home | History | Annotate | Download | only in libldap

Lines Matching defs:bvalue

50 	struct berval *bvalue,
66 LDAP_REQ_COMPARE, dn, attr, bvalue );
95 * struct berval bvalue = { "secret", sizeof("secret")-1 };
97 * "userPassword", &bvalue,
105 struct berval *bvalue,
127 ld, dn, attr, bvalue, sctrls, cctrls, &id );
152 struct berval bvalue;
156 bvalue.bv_val = (char *) value;
157 bvalue.bv_len = (value == NULL) ? 0 : strlen( value );
159 return ldap_compare_ext( ld, dn, attr, &bvalue, NULL, NULL, &msgid ) == LDAP_SUCCESS
168 struct berval *bvalue,
176 rc = ldap_compare_ext( ld, dn, attr, bvalue, sctrl, cctrl, &msgid );
194 struct berval bvalue;
198 bvalue.bv_val = (char *) value;
199 bvalue.bv_len = (value == NULL) ? 0 : strlen( value );
201 return ldap_compare_ext_s( ld, dn, attr, &bvalue, NULL, NULL );