Home
last modified time | relevance | path

Searched refs:mod_type (Results 1 – 24 of 24) sorted by relevance

/netbsd/crypto/external/bsd/heimdal/dist/lib/kadm5/
H A Dad.c700 a->mod_type = "objectClass"; in kadm5_ad_create_principal()
705 a->mod_type = "userAccountControl"; in kadm5_ad_create_principal()
715 a->mod_type = "sAMAccountName"; in kadm5_ad_create_principal()
722 a->mod_type = "dNSHostName"; in kadm5_ad_create_principal()
743 a->mod_type = "userPrincipalName"; in kadm5_ad_create_principal()
750 a->mod_type = "accountExpires"; in kadm5_ad_create_principal()
761 a->mod_type = "userAccountControl"; in kadm5_ad_create_principal()
770 a->mod_type = "sAMAccountName"; in kadm5_ad_create_principal()
777 a->mod_type = "userPrincipalName"; in kadm5_ad_create_principal()
784 a->mod_type = "accountExpires"; in kadm5_ad_create_principal()
[all …]
/netbsd/external/bsd/openldap/dist/libraries/libldap/
H A Dfree.c102 if ( mods[i]->mod_type != NULL ) { in ldap_mods_free()
103 LDAP_FREE( mods[i]->mod_type ); in ldap_mods_free()
H A Dmodify.c91 mods[i]->mod_type, mods[i]->mod_bvalues ); in ldap_build_modify_req()
95 mods[i]->mod_type, mods[i]->mod_values ); in ldap_build_modify_req()
H A Dadd.c141 rc = ber_printf( ber, "{s[V]N}", attrs[i]->mod_type, in ldap_build_add_req()
151 rc = ber_printf( ber, "{s[v]N}", attrs[i]->mod_type, in ldap_build_add_req()
H A Dldifutil.c426 lr->lr_lm[j].mod_type = bv.bv_val; in ldap_parse_ldif_record_x()
549 lr->lr_lm[j].mod_type = bv.bv_val; in ldap_parse_ldif_record_x()
H A Dtest.c195 tmp.mod_type = strdup( buf ); in get_modlist()
/netbsd/external/bsd/openldap/dist/contrib/ldapc++/src/
H A DLDAPAttribute.cpp168 ret->mod_type= (char*) malloc(sizeof(char) * (m_name.size()+1)); in toLDAPMod()
169 m_name.copy(ret->mod_type,string::npos); in toLDAPMod()
170 ret->mod_type[m_name.size()]=0; in toLDAPMod()
/netbsd/external/bsd/openldap/dist/tests/progs/
H A Dslapd-addel.c159 if ( strcasecmp( pmods[ i ]->mod_type, attr ) == 0 && in addmodifyop()
180 if (( pmods[ i ]->mod_type = strdup( attr )) == NULL ) { in addmodifyop()
H A Dslapd-mtread.c426 attrs[0].mod_type = "objectClass"; in do_onerwthread()
428 attrs[1].mod_type = "cn"; in do_onerwthread()
431 attrs[2].mod_type = "sn"; in do_onerwthread()
434 attrs[3].mod_type = "uid"; in do_onerwthread()
H A Dslapd-modify.c152 mod.mod_type = attr; in do_modify()
/netbsd/external/bsd/openldap/dist/servers/slapd/
H A Dslapmodify.c316 local_rc = slap_str2ad( mod->mod_type, &mods.sm_desc, &text ); in slapmodify()
325 local_rc = slap_str2undef_ad( mod->mod_type, &mods.sm_desc, &text, 0 ); in slapmodify()
329 progname, mod->mod_type, lr.lr_dn.bv_val, local_rc, text, lineno ); in slapmodify()
H A Dsyncrepl.c2395 if ( slap_str2ad( lr.lrop_mods[i]->mod_type, &ad, &text ) ) { in syncrepl_changelog_mods()
2399 si->si_ridtxt, lr.lrop_mods[i]->mod_type, text ); in syncrepl_changelog_mods()
/netbsd/external/bsd/openldap/dist/servers/slapd/back-ldap/
H A Dmodify.c80 mods[ i ].mod_type = ml->sml_desc->ad_cname.bv_val; in ldap_back_modify()
H A Dadd.c85 attrs[ i ]->mod_type = a->a_desc->ad_cname.bv_val; in ldap_back_add()
/netbsd/external/bsd/openldap/dist/clients/tools/
H A Dldapmodify.c474 prog, pmods[i]->mod_type, dn->bv_val ); in domodify()
488 pmods[ i ]->mod_type ); in domodify()
/netbsd/external/bsd/openldap/dist/servers/slapd/back-meta/
H A Dadd.c118 attrs[ i ]->mod_type = mapped.bv_val; in meta_back_add()
H A Dmodify.c122 mods[ i ].mod_type = mapped.bv_val; in meta_back_modify()
/netbsd/external/bsd/openldap/dist/servers/slapd/back-asyncmeta/
H A Dadd.c114 attrs[ i ]->mod_type = a->a_desc->ad_cname.bv_val; in asyncmeta_back_add_start()
H A Dmodify.c102 mods[ i ].mod_type = ml->sml_desc->ad_cname.bv_val; in asyncmeta_back_modify_start()
/netbsd/crypto/external/bsd/heimdal/dist/lib/hdb/
H A Dhdb-ldap.c168 strcasecmp((*modlist)[cMods]->mod_type, attribute) == 0) { in LDAP__setmod()
189 mod->mod_type = ber_strdup(attribute); in LDAP__setmod()
190 if (mod->mod_type == NULL) { in LDAP__setmod()
/netbsd/external/bsd/openldap/dist/servers/slapd/slapi/
H A Dslapi_utils.c2689 modp->mod_type = slapi_ch_strdup( ml->sml_desc->ad_cname.bv_val ); in slapi_int_modifications2ldapmods()
2691 modp->mod_type = slapi_ch_strdup( ml->sml_type.bv_val ); in slapi_int_modifications2ldapmods()
2743 if ( slap_str2ad( lmod->mod_type, &ad, &text ) != LDAP_SUCCESS ) { in slapi_int_ldapmods2modifications()
/netbsd/external/bsd/openldap/dist/contrib/ldaptcl/
H A DneoXldap.c676 mod->mod_type = Tcl_GetStringFromObj (attribObjv [i * 2], NULL);
/netbsd/external/bsd/openldap/dist/include/
H A Dldap.h785 char *mod_type; member
/netbsd/external/bsd/openldap/dist/doc/drafts/
H A Ddraft-ietf-ldapext-ldap-c-api-xx.txt1919 char *mod_type;
1991 mod_type The type of the attribute to modify.
2220 ture defined for ldap_modify(). The mod_type and mod_vals