Lines Matching defs:L_n
31 LDAPMessage *L_n=NULLMSG;
36 for (L_n=ld->ld_notifs; L_n!=NULLMSG; L_n=L_n->lm_next)
38 if ( L_n->lm_next != NULLMSG )
40 L_q = L_n->lm_next;
41 ldap_msgfree(L_n);
42 L_n = L_q;
46 ldap_msgfree(L_n);
58 LDAPMessage *L_n=NULLMSG, *L_q=NULLMSG;
60 for ( L_n=ld->ld_notifs; L_n!=NULLMSG; L_n=L_n->lm_next)
62 if ( L_n == notif)
65 ld->ld_notifs = L_n->lm_next;
67 L_q->lm_next = L_n->lm_next;
69 L_n->lm_next = NULLMSG;
71 ldap_msgfree(L_n);
75 L_q = L_n;
83 LDAPMessage *L_n=NULLMSG, *L_q=NULLMSG;
85 for ( L_n=ld->ld_notifs; L_n!=NULLMSG; L_n=L_n->lm_next)
86 L_q = L_n;