Lines Matching refs:tracked_allocs
280 HashTable *tracked_allocs; member
2271 zend_hash_clean(heap->tracked_allocs);
2273 zend_hash_destroy(heap->tracked_allocs);
2274 free(heap->tracked_allocs);
2437 zval *size_zv = zend_hash_index_find(AG(mm_heap)->tracked_allocs, h);
2803 zend_hash_index_add_new(heap->tracked_allocs, h, &size_zv);
2808 zval *size_zv = zend_hash_index_find(heap->tracked_allocs, h);
2850 zend_hash_del_bucket(heap->tracked_allocs, (Bucket *) size_zv);
2869 zend_hash_del_bucket(heap->tracked_allocs, (Bucket *) old_size_zv);
2879 HashTable *tracked_allocs = AG(mm_heap)->tracked_allocs; local
2881 ZEND_HASH_FOREACH_NUM_KEY(tracked_allocs, h) {
2912 mm_heap->tracked_allocs = malloc(sizeof(HashTable));
2913 zend_hash_init(mm_heap->tracked_allocs, 1024, NULL, NULL, 1);