HomeSort by: relevance | last modified time | path
    Searched defs:csne (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/openldap/dist/servers/slapd/
ctxcsn.c 46 struct slap_csn_entry *csne, *committed_csne = NULL; local
64 LDAP_TAILQ_FOREACH( csne, &be->be_pcsn_p->be_pcsn_list, ce_csn_link ) {
65 if ( csne->ce_op == op ) {
66 csne->ce_state = SLAP_CSN_COMMIT;
72 LDAP_TAILQ_FOREACH( csne, &be->be_pcsn_p->be_pcsn_list, ce_csn_link ) {
73 if ( sid != -1 && sid == csne->ce_sid ) {
74 if ( csne->ce_state == SLAP_CSN_COMMIT ) committed_csne = csne;
75 if ( csne->ce_state == SLAP_CSN_PENDING ) break;
96 struct slap_csn_entry *csne; local
114 struct slap_csn_entry *csne; local
    [all...]
backend.c 438 struct slap_csn_entry *csne; local
439 csne = LDAP_TAILQ_FIRST( &bd->be_pcsn_st.be_pcsn_list );
440 while ( csne ) {
441 struct slap_csn_entry *tmp_csne = csne;
443 LDAP_TAILQ_REMOVE( &bd->be_pcsn_st.be_pcsn_list, csne, ce_csn_link );
444 ch_free( csne->ce_csn.bv_val );
445 csne = LDAP_TAILQ_NEXT( csne, ce_csn_link );

Completed in 15 milliseconds