• Home
  • Raw
  • Download

Lines Matching refs:FastMallocZone

469 class FastMallocZone {  class
483FastMallocZone(TCMalloc_PageHeap*, TCMalloc_ThreadCache**, TCMalloc_Central_FreeListPadded*, PageH…
1402 friend class FastMallocZone;
2908 FastMallocZone::init(); in InitModule()
4311 kern_return_t FastMallocZone::enumerate(task_t task, void* context, unsigned typeMask, vm_address_t… in CreateCacheIfNecessary()
4317 FastMallocZone* mzone = memoryReader(reinterpret_cast<FastMallocZone*>(zoneAddress)); in CreateCacheIfNecessary()
4350 size_t FastMallocZone::size(malloc_zone_t*, const void*) in CreateCacheIfNecessary()
4355 void* FastMallocZone::zoneMalloc(malloc_zone_t*, size_t) in CreateCacheIfNecessary()
4360 void* FastMallocZone::zoneCalloc(malloc_zone_t*, size_t, size_t) in CreateCacheIfNecessary()
4365 void FastMallocZone::zoneFree(malloc_zone_t*, void* ptr) in CreateCacheIfNecessary()
4373 void* FastMallocZone::zoneRealloc(malloc_zone_t*, void*, size_t) in CreateCacheIfNecessary()
4385 …fastmalloc_introspection = { &FastMallocZone::enumerate, &FastMallocZone::goodSize, &FastMallocZon… in CreateCacheIfNecessary()
4386 …&FastMallocZone::log, &FastMallocZone::forceLock, &FastMallocZone::forceUnlock, &FastMallocZone::s… in CreateCacheIfNecessary()
4395 FastMallocZone::FastMallocZone(TCMalloc_PageHeap* pageHeap, TCMalloc_ThreadCache** threadHeaps, TCM… in CreateCacheIfNecessary() function in WTF::FastMallocZone
4405 m_zone.size = &FastMallocZone::size; in CreateCacheIfNecessary()
4406 m_zone.malloc = &FastMallocZone::zoneMalloc; in CreateCacheIfNecessary()
4407 m_zone.calloc = &FastMallocZone::zoneCalloc; in CreateCacheIfNecessary()
4408 m_zone.realloc = &FastMallocZone::zoneRealloc; in CreateCacheIfNecessary()
4409 m_zone.free = &FastMallocZone::zoneFree; in CreateCacheIfNecessary()
4410 m_zone.valloc = &FastMallocZone::zoneValloc; in CreateCacheIfNecessary()
4411 m_zone.destroy = &FastMallocZone::zoneDestroy; in CreateCacheIfNecessary()
4417 void FastMallocZone::init() in CreateCacheIfNecessary()
4419 …static FastMallocZone zone(pageheap, &thread_heaps, static_cast<TCMalloc_Central_FreeListPadded*>(… in CreateCacheIfNecessary()