Lines Matching defs:new
166 struct sainfo *new;
168 new = racoon_calloc(1, sizeof(*new));
169 if (new == NULL)
172 new->lifetime = IPSECDOI_ATTR_SA_LD_SEC_DEFAULT;
173 new->lifebyte = IPSECDOI_ATTR_SA_LD_KB_MAX;
175 return new;
201 inssainfo(new)
202 struct sainfo *new;
204 LIST_INSERT_HEAD(&sitree, new, chain);
235 struct sainfoalg *new;
237 new = racoon_calloc(1, sizeof(*new));
238 if (new == NULL)
241 return new;
257 inssainfoalg(head, new)
259 struct sainfoalg *new;
266 a->next = new;
268 *head = new;