HomeSort by: relevance | last modified time | path
    Searched refs:oex (Results 1 - 9 of 9) sorted by relevancy

  /src/external/bsd/openldap/dist/servers/slapd/
add.c 56 OpExtraDB *oex; local
193 oex = op->o_tmpalloc( sizeof(OpExtraDB), op->o_tmpmemctx );
194 oex->oe.oe_key = (void *)do_add;
195 oex->oe_db = NULL;
196 LDAP_SLIST_INSERT_HEAD(&op->o_extra, &oex->oe, oe_next);
210 if ( op->ora_e != NULL && oex->oe_db != NULL ) {
213 op->o_bd = oex->oe_db;
221 LDAP_SLIST_REMOVE(&op->o_extra, &oex->oe, OpExtra, oe_next);
222 op->o_tmpfree( oex, op->o_tmpmemctx );
348 OpExtra *oex; local
    [all...]
backend.c 1464 OpExtra *oex; local
1466 LDAP_SLIST_FOREACH(oex, &op->o_extra, oe_next) {
1467 if ( oex->oe_key == (void *)backend_group )
1471 if ( oex && ((OpExtraDB *)oex)->oe_db )
1472 op->o_bd = ((OpExtraDB *)oex)->oe_db;
1683 OpExtraDB oex; local
1689 oex.oe_db = op->o_bd;
1690 oex.oe.oe_key = (void *)backend_group;
1691 LDAP_SLIST_INSERT_HEAD(&op->o_extra, &oex.oe, oe_next)
1718 OpExtra *oex; local
1848 OpExtraDB oex; local
1983 OpExtra *oex; local
2036 OpExtraDB oex; local
    [all...]
txn.c 321 OpExtra *oex; local
323 LDAP_SLIST_FOREACH(oex, &o->o_extra, oe_next) {
324 if ( oex->oe_key == (void *)do_add ) {
325 oexdb = (OpExtraDB *)oex;
syncrepl.c 2826 OpExtra *oex; local
2832 LDAP_SLIST_FOREACH( oex, &op->o_extra, oe_next ) {
2833 if ( oex->oe_key == (void *)syncrepl_message_to_op )
2836 if ( !oex )
2839 si = ((OpExtraSync *)oex)->oe_si;
  /src/external/bsd/openldap/dist/contrib/slapd-modules/autogroup/
autogroup.c 122 OpExtra oex; local
160 oex.oe_key = (void *)&autogroup;
161 LDAP_SLIST_INSERT_HEAD( &o.o_extra, &oex, oe_next );
167 LDAP_SLIST_REMOVE( &o.o_extra, &oex, OpExtra, oe_next );
188 OpExtra oex; local
217 oex.oe_key = (void *)&autogroup;
218 LDAP_SLIST_INSERT_HEAD( &o.o_extra, &oex, oe_next );
224 LDAP_SLIST_REMOVE( &o.o_extra, &oex, OpExtra, oe_next );
244 OpExtra oex; local
291 oex.oe_key = (void *)&autogroup
319 OpExtra oex; local
509 OpExtra oex; local
1062 OpExtra *oex; local
1150 OpExtra *oex; local
1571 OpExtra *oex; local
1677 OpExtra *oex; local
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/back-relay/
op.c 125 OpExtra *oex; local
138 LDAP_SLIST_FOREACH( oex, &op->o_extra, oe_next ) {
139 if ( oex->oe_key == key )
142 if ( oex == NULL ) {
  /src/external/bsd/openldap/dist/servers/slapd/overlays/
memberof.c 433 OpExtra oex; local
444 oex.oe_key = (void *)&memberof;
445 LDAP_SLIST_INSERT_HEAD(&op2.o_extra, &oex, oe_next);
449 LDAP_SLIST_REMOVE(&op2.o_extra, &oex, OpExtra, oe_next);
473 OpExtra oex; local
484 oex.oe_key = (void *)&memberof;
485 LDAP_SLIST_INSERT_HEAD(&op2.o_extra, &oex, oe_next);
489 LDAP_SLIST_REMOVE(&op2.o_extra, &oex, OpExtra, oe_next);
630 OpExtra *oex; local
632 LDAP_SLIST_FOREACH( oex, &op->o_extra, oe_next )
869 OpExtra *oex; local
909 OpExtra *oex; local
1332 OpExtra *oex; local
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/slapi/
slapi_ops.c 428 OpExtraDB oex; local
489 oex.oe.oe_key = (void *)do_add;
490 oex.oe_db = NULL;
491 LDAP_SLIST_INSERT_HEAD(&pb->pb_op->o_extra, &oex.oe, oe_next);
493 LDAP_SLIST_REMOVE(&pb->pb_op->o_extra, &oex.oe, OpExtra, oe_next);
496 if ( pb->pb_op->ora_e != NULL && oex.oe_db != NULL ) {
499 pb->pb_op->o_bd = oex.oe_db;
  /src/external/bsd/openldap/dist/servers/slapd/back-mdb/
id2entry.c 566 OpExtra *oex; local
575 LDAP_SLIST_FOREACH( oex, &op->o_extra, oe_next ) {
576 if ( oex->oe_key == mdb ) {
577 moi = (mdb_op_info *)oex;
592 if ( !rw && ( LDAP_SLIST_FIRST( &op->o_extra ) && !oex ))
712 OpExtra *oex; local
726 LDAP_SLIST_FOREACH( oex, &op->o_extra, oe_next ) {
727 if ( oex->oe_key == mdb ) break;
729 moi = (mdb_op_info *)oex;

Completed in 26 milliseconds