Home | History | Annotate | Download | only in racoon

Lines Matching defs:new

82 	struct saprop *new;
84 new = racoon_calloc(1, sizeof(*new));
85 if (new == NULL)
88 return new;
94 struct saproto *new;
96 new = racoon_calloc(1, sizeof(*new));
97 if (new == NULL)
100 return new;
105 inssaprop(head, new)
107 struct saprop *new;
112 *head = new;
118 p->next = new;
125 inssaproto(pp, new)
127 struct saproto *new;
134 pp->head = new;
136 p->next = new;
143 inssaprotorev(pp, new)
145 struct saproto *new;
147 new->next = pp->head;
148 pp->head = new;
156 struct satrns *new;
158 new = racoon_calloc(1, sizeof(*new));
159 if (new == NULL)
162 return new;
167 inssatrns(pr, new)
169 struct satrns *new;
176 pr->head = new;
178 tr->next = new;
184 * take a single match between saprop. allocate a new proposal and return it
1130 /* set new saproto */