reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/gwp_asan/guarded_pool_allocator.cpp
   27 using Error = gwp_asan::GuardedPoolAllocator::Error;
  224     reportError(UPtr, Error::INVALID_FREE);
  233       reportError(UPtr, Error::DOUBLE_FREE);
  327 void GuardedPoolAllocator::reportError(uintptr_t AccessPtr, Error E) {
  355       return Error::UNKNOWN;
  359       return Error::BUFFER_OVERFLOW;
  360     return Error::BUFFER_UNDERFLOW;
  367     return Error::USE_AFTER_FREE;
  373   return Error::UNKNOWN;
  487 void GuardedPoolAllocator::reportErrorInternal(uintptr_t AccessPtr, Error E) {
  503   if (E == Error::UNKNOWN) {
projects/compiler-rt/lib/gwp_asan/guarded_pool_allocator.h
  142   static void reportError(uintptr_t AccessPtr, Error E = Error::UNKNOWN);
  142   static void reportError(uintptr_t AccessPtr, Error E = Error::UNKNOWN);
  209   Error diagnoseUnknownError(uintptr_t AccessPtr, AllocationMetadata **Meta);
  211   void reportErrorInternal(uintptr_t AccessPtr, Error E);