Lines Matching defs:new
126 * instead of copying, new empty authtok will be created.
184 struct response_data *new;
186 new = talloc(pd, struct response_data);
187 if (new == NULL) return ENOMEM;
189 new->type = type;
190 new->len = len;
191 new->data = talloc_memdup(pd, data, len);
192 if (new->data == NULL) return ENOMEM;
193 new->do_not_send_to_client = false;
194 new->next = pd->resp_list;
195 pd->resp_list = new;