Searched defs:new (Results 1 - 3 of 3) sorted by relevance

/system/keymaster/
H A Dkeymaster_stl.cpp18 #include <keymaster/new>
27 void* __attribute__((weak)) operator new(size_t __sz, const std::nothrow_t&) {
30 void* __attribute__((weak)) operator new[](size_t __sz, const std::nothrow_t&) {
/system/extras/ext4_utils/
H A Dallocate.c568 struct region *new; local
580 new = malloc(sizeof(struct region));
582 new->bg = reg->bg;
583 new->block = reg->block + len;
584 new->len = reg->len - len;
585 new->next = reg->next;
586 new->prev = reg;
588 reg->next = new;
592 alloc->list.iter = new;
/system/core/lmkd/
H A Dlmkd.c166 static void adjslot_insert(struct adjslot_list *head, struct adjslot_list *new) argument
169 new->prev = head;
170 new->next = next;
171 next->prev = new;
172 head->next = new;

Completed in 753 milliseconds