Lines Matching refs:mods
63 LDAPMod **mods,
84 /* allow mods to be NULL ("touch") */
85 if ( mods ) {
87 for ( i = 0; mods[i] != NULL; i++ ) {
88 if (( mods[i]->mod_op & LDAP_MOD_BVALUES) != 0 ) {
90 (ber_int_t) ( mods[i]->mod_op & ~LDAP_MOD_BVALUES ),
91 mods[i]->mod_type, mods[i]->mod_bvalues );
94 (ber_int_t) mods[i]->mod_op,
95 mods[i]->mod_type, mods[i]->mod_values );
134 * mods List of modifications to make. This is null-terminated
142 * LDAPMod *mods[] = {
149 * rc= ldap_modify_ext( ld, dn, mods, sctrls, cctrls, &msgid );
154 LDAPMod **mods,
169 ber = ldap_build_modify_req( ld, dn, mods, sctrls, cctrls, &id );
185 * mods List of modifications to make. This is null-terminated
190 * LDAPMod *mods[] = {
197 * msgid = ldap_modify( ld, dn, mods );
200 ldap_modify( LDAP *ld, LDAP_CONST char *dn, LDAPMod **mods )
206 rc = ldap_modify_ext( ld, dn, mods, NULL, NULL, &msgid );
216 LDAPMod **mods, LDAPControl **sctrl, LDAPControl **cctrl )
222 rc = ldap_modify_ext( ld, dn, mods, sctrl, cctrl, &msgid );
234 ldap_modify_s( LDAP *ld, LDAP_CONST char *dn, LDAPMod **mods )
236 return ldap_modify_ext_s( ld, dn, mods, NULL, NULL );