Home | History | Annotate | Download | only in back-monitor

Lines Matching refs:elp

1232 			entry_limbo_t	*elp = *elpp;
1234 if ( elp->el_type == LIMBO_ENTRY
1235 && dn_match( ndn, &elp->el_e->e_nname ) )
1239 for ( cb = elp->el_cb; cb; cb = next ) {
1247 assert( elp->el_e != NULL );
1248 elp->el_e->e_private = NULL;
1249 entry_free( elp->el_e );
1250 *elpp = elp->el_next;
1251 ch_free( elp );
1365 entry_limbo_t *elp = *elpp;
1367 if ( elp->el_type == LIMBO_ENTRY_PARENT
1368 && dn_match( nrdn, &elp->el_e->e_nname )
1369 && dn_match( nbase, &elp->el_nbase )
1370 && scope == elp->el_scope
1371 && bvmatch( filter, &elp->el_filter ) )
1375 for ( cb = elp->el_cb; cb; cb = next ) {
1383 assert( elp->el_e != NULL );
1384 elp->el_e->e_private = NULL;
1385 entry_free( elp->el_e );
1386 if ( !BER_BVISNULL( &elp->el_nbase ) ) {
1387 ch_free( elp->el_nbase.bv_val );
1389 if ( !BER_BVISNULL( &elp->el_filter ) ) {
1390 ch_free( elp->el_filter.bv_val );
1392 *elpp = elp->el_next;
1393 ch_free( elp );
1537 entry_limbo_t *elp = *elpp;
1539 if ( elp->el_type == LIMBO_ATTRS
1540 && dn_match( nbase, &elp->el_nbase )
1541 && scope == elp->el_scope
1542 && bvmatch( filter, &elp->el_filter ) )
1546 for ( cb = elp->el_cb; cb; cb = next ) {
1554 assert( elp->el_e == NULL );
1555 if ( elp->el_a != NULL ) {
1556 attrs_free( elp->el_a );
1558 if ( !BER_BVISNULL( &elp->el_nbase ) ) {
1559 ch_free( elp->el_nbase.bv_val );
1561 if ( !BER_BVISNULL( &elp->el_filter ) ) {
1562 ch_free( elp->el_filter.bv_val );
1564 *elpp = elp->el_next;
1565 ch_free( elp );