HomeSort by: relevance | last modified time | path
    Searched refs:LDAPMod (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/external/bsd/openldap/dist/contrib/ldapc++/src/
LDAPModList.cpp 29 LDAPMod** LDAPModList::toLDAPModArray(){
31 LDAPMod **ret = (LDAPMod**) malloc(
32 (m_modList.size()+1) * sizeof(LDAPMod*));
LDAPModification.cpp 21 LDAPMod* LDAPModification::toLDAPMod() const {
23 LDAPMod* ret=m_attr.toLDAPMod();
25 //The mod_op value of the LDAPMod-struct needs to be ORed with the right
27 // explanation of the LDAPMod struct)
LDAPModList.h 42 * LDAPMod-structures as needed by the C-API
44 LDAPMod** toLDAPModArray();
LDAPModification.h 21 LDAPMod *toLDAPMod() const;
LDAPAttributeList.h 110 * LDAPMod-structures as needed by the C-API
112 LDAPMod** toLDAPModArray() const;
LDAPAttribute.cpp 164 LDAPMod* LDAPAttribute::toLDAPMod() const {
166 LDAPMod* ret= (LDAPMod*) malloc(sizeof(LDAPMod));
LDAPAttribute.h 164 * LDAPMod-Structure as used by the C-API
166 LDAPMod* toLDAPMod() const ;
LDAPAttributeList.cpp 170 LDAPMod** LDAPAttributeList::toLDAPModArray() const{
172 LDAPMod **ret = (LDAPMod**) malloc((m_attrs.size()+1) * sizeof(LDAPMod*));
LDAPAddRequest.cpp 47 LDAPMod** attrs=list->toLDAPModArray();
LDAPModifyRequest.cpp 50 LDAPMod** tmpMods=m_modList->toLDAPModArray();
  /src/external/bsd/openldap/dist/libraries/libldap/
add.c 65 * terminated array of pointers to LDAPMod structures.
70 * LDAPMod *attrs[] = {
79 ldap_add( LDAP *ld, LDAP_CONST char *dn, LDAPMod **attrs )
97 LDAPMod **attrs,
189 * terminated array of pointers to LDAPMod structures.
197 * LDAPMod *attrs[] = {
209 LDAPMod **attrs,
245 LDAPMod **attrs,
264 ldap_add_s( LDAP *ld, LDAP_CONST char *dn, LDAPMod **attrs )
modify.c 63 LDAPMod **mods,
135 * array of struct ldapmod's, specifying the modifications
142 * LDAPMod *mods[] = {
154 LDAPMod **mods,
186 * array of struct ldapmod's, specifying the modifications
190 * LDAPMod *mods[] = {
200 ldap_modify( LDAP *ld, LDAP_CONST char *dn, LDAPMod **mods )
216 LDAPMod **mods, LDAPControl **sctrl, LDAPControl **cctrl )
234 ldap_modify_s( LDAP *ld, LDAP_CONST char *dn, LDAPMod **mods )
test.c 54 static LDAPMod **get_modlist LDAP_P(( const char *prompt1,
169 static LDAPMod **
177 LDAPMod tmp = { 0 };
178 LDAPMod **result;
230 result = (LDAPMod **) malloc( sizeof(LDAPMod *) );
232 result = (LDAPMod **) realloc( result,
233 sizeof(LDAPMod *) * (num + 1) );
235 result[num] = (LDAPMod *) malloc( sizeof(LDAPMod) );
    [all...]
free.c 86 ldap_mods_free( LDAPMod **mods, int freemods )
ldifutil.c 92 * into an array of LDAPMod* and an array of LDAPControl*, suitable for passing
93 * directly to any other LDAP API function that takes LDAPMod** and LDAPControl**
118 LDAPMod **pmods;
408 lr->lr_lm = ber_memalloc_x( nmods * sizeof(LDAPMod) +
409 (nmods+1) * sizeof(LDAPMod*) +
416 pmods = (LDAPMod **)(lr->lr_lm+nmods);
542 lr->lr_lm = ber_memalloc_x( nmods * sizeof(LDAPMod) +
543 (nmods+1) * sizeof(LDAPMod*) +
550 pmods = (LDAPMod **)(lr->lr_lm+nmods);
  /src/external/bsd/openldap/dist/servers/slapd/back-ldap/
add.c 50 LDAPMod **attrs = NULL,
72 attrs = (LDAPMod **)ch_malloc( sizeof( LDAPMod * )*i
73 + sizeof( LDAPMod )*( i - 1 ) );
74 attrs2 = ( LDAPMod * )&attrs[ i ];
modify.c 47 LDAPMod **modv = NULL,
63 modv = (LDAPMod **)ch_malloc( ( i + 1 )*sizeof( LDAPMod * )
64 + i*sizeof( LDAPMod ) );
69 mods = (LDAPMod *)&modv[ i + 1 ];
  /src/external/bsd/openldap/dist/tests/progs/
slapd-addel.c 147 addmodifyop( LDAPMod ***pmodsp, int modop, char *attr, char *value, int vlen )
149 LDAPMod **pmods;
167 if (( pmods = (LDAPMod **)realloc( pmods, (i + 2) *
168 sizeof( LDAPMod * ))) == NULL ) {
174 if (( pmods[ i ] = (LDAPMod *)calloc( 1, sizeof( LDAPMod )))
  /src/external/bsd/openldap/dist/servers/slapd/back-meta/
modify.c 46 LDAPMod **modv = NULL;
47 LDAPMod *mods = NULL;
85 modv = ch_malloc( ( i + 1 )*sizeof( LDAPMod * ) + i*sizeof( LDAPMod ) );
86 mods = (LDAPMod *)&modv[ i + 1 ];
add.c 49 LDAPMod **attrs;
89 attrs = ch_malloc( sizeof( LDAPMod * )*i );
115 attrs[ i ] = ch_malloc( sizeof( LDAPMod ) );
  /src/external/bsd/openldap/dist/servers/slapd/slapi/
proto-slapi.h 31 LDAP_SLAPI_F (LDAPMod **) slapi_int_modifications2ldapmods LDAP_P(( Modifications * ));
32 LDAP_SLAPI_F (Modifications *) slapi_int_ldapmods2modifications LDAP_P(( Operation *op, LDAPMod ** ));
  /src/external/bsd/openldap/dist/servers/slapd/back-asyncmeta/
modify.c 52 LDAPMod **modv = NULL;
53 LDAPMod *mods = NULL;
76 modv = op->o_tmpalloc( ( i + 1 )*sizeof( LDAPMod * ) + i*sizeof( LDAPMod ),
83 mods = (LDAPMod *)&modv[ i + 1 ];
add.c 76 LDAPMod **attrs;
99 attrs = op->o_tmpalloc(sizeof( LDAPMod * )*i, op->o_tmpmemctx);
110 attrs[ i ] = op->o_tmpalloc( sizeof( LDAPMod ), op->o_tmpmemctx );
  /src/external/bsd/openldap/dist/contrib/ldaptcl/
neoXldap.c 613 LDAPMod **modArray;
614 LDAPMod *mod;
658 modArray = (LDAPMod **)malloc (sizeof(LDAPMod *) * (allPairs + 1));
674 mod = modArray[modIndex++] = (LDAPMod *) malloc (sizeof(LDAPMod));
722 modArray[modIndex] = (LDAPMod *) NULL;
  /src/external/bsd/openldap/dist/include/
ldap.h 771 typedef struct ldapmod { struct
792 } LDAPMod;
1181 LDAPMod **attrs,
1190 LDAPMod **attrs,
1199 LDAPMod **attrs ));
1205 LDAPMod **attrs ));
1450 LDAPMod **mods,
1459 LDAPMod **mods,
1468 LDAPMod **mods ));
1474 LDAPMod **mods ))
    [all...]

Completed in 44 milliseconds

1 2