Home | History | Annotate | Download | only in scudo

Lines Matching refs:Options

186   AllocatorOptions Options;
187 Options.setFrom(getFlags(), common_flags());
188 initAllocator(Options);
287 void init(const AllocatorOptions &Options) {
305 DeallocationTypeMismatch = Options.DeallocationTypeMismatch;
306 DeleteSizeMismatch = Options.DeleteSizeMismatch;
307 ZeroContents = Options.ZeroContents;
308 BackendAllocator.Init(Options.MayReturnNull);
309 AllocatorQuarantine.Init(static_cast<uptr>(Options.QuarantineSizeMb) << 20,
311 Options.ThreadLocalQuarantineSizeKb) << 10);
530 void initAllocator(const AllocatorOptions &Options) {
531 Instance.init(Options);