Lines Matching refs:tracked_allocs
308 HashTable *tracked_allocs; member
2405 zend_hash_clean(heap->tracked_allocs);
2407 zend_hash_destroy(heap->tracked_allocs);
2408 free(heap->tracked_allocs);
2554 zval *size_zv = zend_hash_index_find(heap->tracked_allocs, h);
2597 zval *size_zv = zend_hash_index_find(AG(mm_heap)->tracked_allocs, h);
2939 zend_hash_index_add_new(heap->tracked_allocs, h, &size_zv);
2944 zval *size_zv = zend_hash_index_find(heap->tracked_allocs, h);
2986 zend_hash_del_bucket(heap->tracked_allocs, (Bucket *) size_zv);
3005 zend_hash_del_bucket(heap->tracked_allocs, (Bucket *) old_size_zv);
3015 HashTable *tracked_allocs = heap->tracked_allocs; local
3017 ZEND_HASH_FOREACH_NUM_KEY(tracked_allocs, h) {
3048 mm_heap->tracked_allocs = malloc(sizeof(HashTable));
3049 zend_hash_init(mm_heap->tracked_allocs, 1024, NULL, NULL, 1);