Home
last modified time | relevance | path

Searched refs:malloc_zone_t (Results 1 – 9 of 9) sorted by relevance

/external/webkit/Tools/DumpRenderTree/mac/
DCheckedMalloc.cpp39 static void* (*savedMalloc)(malloc_zone_t*, size_t);
40 static void* (*savedRealloc)(malloc_zone_t*, void*, size_t);
42 static void* checkedMalloc(malloc_zone_t* zone, size_t size) in checkedMalloc()
49 static void* checkedRealloc(malloc_zone_t* zone, void* ptr, size_t size) in checkedRealloc()
71 malloc_zone_t* zone = malloc_default_zone(); in makeLargeMallocFailSilently()
77 vm_size_t len = reinterpret_cast<vm_address_t>(zone) - pageStart + sizeof(malloc_zone_t); in makeLargeMallocFailSilently()
/external/chromium/base/
Dprocess_util_unittest.cc831 malloc_zone_t* zone = base::GetPurgeableZone(); in TEST_F()
840 malloc_zone_t* zone = base::GetPurgeableZone(); in TEST_F()
849 malloc_zone_t* zone = base::GetPurgeableZone(); in TEST_F()
858 malloc_zone_t* zone = base::GetPurgeableZone(); in TEST_F()
867 malloc_zone_t* zone = base::GetPurgeableZone(); in TEST_F()
869 typedef void* (*zone_memalign_t)(malloc_zone_t*, size_t, size_t); in TEST_F()
Dprocess_util.h23 typedef struct _malloc_zone_t malloc_zone_t; typedef
656 malloc_zone_t* GetPurgeableZone();
Dprocess_util_mac.mm699 malloc_zone_t* GetPurgeableZone() {
702 typedef malloc_zone_t* (*malloc_default_purgeable_zone_t)(void);
/external/webkit/Source/JavaScriptCore/wtf/
DFastMalloc.cpp515 static size_t goodSize(malloc_zone_t*, size_t size) { return size; } in goodSize() argument
516 static boolean_t check(malloc_zone_t*) { return true; } in check() argument
517 static void print(malloc_zone_t*, boolean_t) { } in print() argument
518 static void log(malloc_zone_t*, void*) { } in log() argument
519 static void forceLock(malloc_zone_t*) { } in forceLock() argument
520 static void forceUnlock(malloc_zone_t*) { } in forceUnlock() argument
521 …static void statistics(malloc_zone_t*, malloc_statistics_t* stats) { memset(stats, 0, sizeof(mallo… in statistics() argument
525 static size_t size(malloc_zone_t*, const void*);
526 static void* zoneMalloc(malloc_zone_t*, size_t);
527 static void* zoneCalloc(malloc_zone_t*, size_t numItems, size_t size);
[all …]
/external/webkit/Source/WebKit2/Shared/mac/
DWebMemorySampler.mac.mm73 if (const char* name = malloc_get_zone_name(reinterpret_cast<malloc_zone_t*>(zones[i]))) {
78 malloc_zone_statistics(reinterpret_cast<malloc_zone_t*>(zones[i]), &stats);
/external/valgrind/main/include/vki/
Dvki-darwin.h102 #define vki_malloc_zone_t malloc_zone_t
/external/webkit/Tools/
DChangeLog5926 GuardMalloc does not expect the memory containing its malloc_zone_t to ever be read-only.
/external/webkit/Source/JavaScriptCore/
DChangeLog-2007-10-141032 …Provide no-op functions for all members of the malloc_zone_t and malloc_introspection_t structures…