Home | History | Annotate | Download | only in slapd

Lines Matching defs:csne

46 	struct slap_csn_entry *csne, *committed_csne = NULL;
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;
101 LDAP_TAILQ_FOREACH( csne, &be->be_pcsn_p->be_pcsn_list, ce_csn_link ) {
102 if ( csne->ce_op == op ) {
103 csne->ce_state = SLAP_CSN_PENDING;
114 struct slap_csn_entry *csne;
123 LDAP_TAILQ_FOREACH( csne, &be->be_pcsn_p->be_pcsn_list, ce_csn_link ) {
124 if ( csne->ce_op == op ) {
126 csne, ce_csn_link );
128 csne, csne->ce_csn.bv_val );
129 if ( op->o_csn.bv_val == csne->ce_csn.bv_val ) {
132 ch_free( csne->ce_csn.bv_val );
133 ch_free( csne );