reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
25 Flags *flags();
108 Flags *f = flags();
projects/compiler-rt/lib/hwasan/hwasan_allocator.cpp84 !flags()->disable_allocator_tagging); 137 } else if (flags()->max_malloc_fill_size > 0) { 138 uptr fill_size = Min(size, (uptr)flags()->max_malloc_fill_size); 139 internal_memset(allocated, flags()->malloc_fill_byte, fill_size); 150 if ((flags()->tag_in_malloc || flags()->tag_in_free) && 150 if ((flags()->tag_in_malloc || flags()->tag_in_free) && 152 if (flags()->tag_in_malloc && malloc_bisect(stack, orig_size)) { 200 if (flags()->free_checks_tail_magic && orig_size && 216 if (flags()->max_free_fill_size > 0) { 218 Min(TaggedSize(orig_size), (uptr)flags()->max_free_fill_size); 219 internal_memset(aligned_ptr, flags()->free_fill_byte, fill_size); 221 if (flags()->tag_in_free && malloc_bisect(stack, 0) &&projects/compiler-rt/lib/hwasan/hwasan_linux.cpp
271 if (flags()->print_stats && (flags()->atexit || hwasan_report_count > 0)) 271 if (flags()->print_stats && (flags()->atexit || hwasan_report_count > 0)) 441 bool fatal = flags()->halt_on_error || !ai.recover;projects/compiler-rt/lib/hwasan/hwasan_malloc_bisect.h
32 uptr left = flags()->malloc_bisect_left; 33 uptr right = flags()->malloc_bisect_right; 43 if (flags()->malloc_bisect_dump) {projects/compiler-rt/lib/hwasan/hwasan_report.cpp
144 uptr frames = Min((uptr)flags()->stack_history_size, sa->size()); 331 flags()->heap_history_size); 413 ScopedReport R(flags()->halt_on_error); 441 ScopedReport R(flags()->halt_on_error);projects/compiler-rt/lib/hwasan/hwasan_thread.cpp
29 random_state_ = flags()->random_tags ? RandomSeed() : unique_id_; 40 if (auto sz = flags()->heap_history_size) 68 if (flags()->verbose_threads) { 86 if (flags()->verbose_threads) 114 if (flags()->random_tags) {projects/compiler-rt/lib/hwasan/hwasan_thread_list.h
56 uptr desired_bytes = flags()->stack_history_size * sizeof(uptr); 64 Printf("stack history size too large: %d\n", flags()->stack_history_size); 161 if (auto sz = flags()->heap_history_size)