Searched defs:new (Results 1 - 2 of 2) sorted by path

/system/core/lmkd/
H A Dlmkd.c157 static void adjslot_insert(struct adjslot_list *head, struct adjslot_list *new) argument
160 new->prev = head;
161 new->next = next;
162 next->prev = new;
163 head->next = new;
/system/extras/ext4_utils/
H A Dallocate.c564 struct region *new; local
576 new = malloc(sizeof(struct region));
578 new->bg = reg->bg;
579 new->block = reg->block + len;
580 new->len = reg->len - len;
581 new->next = reg->next;
582 new->prev = reg;
584 reg->next = new;
588 alloc->list.iter = new;

Completed in 99 milliseconds