Searched defs:new (Results 1 - 3 of 3) sorted by last modified time

/system/extras/ext4_utils/
H A Dallocate.c550 struct region *new; local
562 new = malloc(sizeof(struct region));
564 new->bg = reg->bg;
565 new->block = reg->block + len;
566 new->len = reg->len - len;
567 new->next = reg->next;
568 new->prev = reg;
570 reg->next = new;
574 alloc->list.iter = new;
/system/core/lmkd/
H A Dlmkd.c156 static void adjslot_insert(struct adjslot_list *head, struct adjslot_list *new) argument
159 new->prev = head;
160 new->next = next;
161 next->prev = new;
162 head->next = new;
/system/core/toolbox/
H A Diftop.c196 static int print_interfaces(struct if_stats *old, struct if_stats *new, int nr) argument
203 new->name, new->mtu,
204 new->rx_bytes - old->rx_bytes,
205 new->rx_packets - old->rx_packets,
206 new->rx_errors - old->rx_errors,
207 new->rx_dropped - old->rx_dropped,
208 new->tx_bytes - old->tx_bytes,
209 new->tx_packets - old->tx_packets,
210 new
[all...]

Completed in 194 milliseconds