Home | History | Annotate | Download | only in asan

Lines Matching refs:alloc_type

160   u32 alloc_type        : 2;
301 AllocType alloc_type) {
362 m->alloc_type = alloc_type;
418 static void Deallocate(void *ptr, StackTrace *stack, AllocType alloc_type) {
434 if (m->alloc_type != alloc_type && flags()->alloc_dealloc_mismatch)
436 (AllocType)m->alloc_type, (AllocType)alloc_type);
590 AllocType alloc_type) {
591 return Allocate(size, alignment, stack, alloc_type);
595 void asan_free(void *ptr, StackTrace *stack, AllocType alloc_type) {
596 Deallocate(ptr, stack, alloc_type);