Home | History | Annotate | Download | only in profile

Lines Matching full:new_node

422   struct writeout_fn_node *new_node = malloc(sizeof(struct writeout_fn_node));
423 new_node->fn = fn;
424 new_node->next = NULL;
427 writeout_fn_head = writeout_fn_tail = new_node;
429 writeout_fn_tail->next = new_node;
430 writeout_fn_tail = new_node;
454 struct flush_fn_node *new_node = malloc(sizeof(struct flush_fn_node));
455 new_node->fn = fn;
456 new_node->next = NULL;
459 flush_fn_head = flush_fn_tail = new_node;
461 flush_fn_tail->next = new_node;
462 flush_fn_tail = new_node;