Lines Matching refs:custom_heap
277 } custom_heap; member
2213 if (heap->custom_heap.std._malloc == tracked_malloc) {
2222 heap->custom_heap.std._free = free;
2229 heap->custom_heap.debug._free(heap ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC);
2231 heap->custom_heap.std._free(heap);
2416 …return AG(mm_heap)->custom_heap.debug._malloc(size ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_REL…
2418 return AG(mm_heap)->custom_heap.std._malloc(size);
2425 AG(mm_heap)->custom_heap.debug._free(ptr ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
2427 AG(mm_heap)->custom_heap.std._free(ptr);
2434 …return AG(mm_heap)->custom_heap.debug._realloc(ptr, size ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_OR…
2436 return AG(mm_heap)->custom_heap.std._realloc(ptr, size);
2827 mm_heap->custom_heap.std._malloc = __zend_malloc;
2828 mm_heap->custom_heap.std._free = free;
2829 mm_heap->custom_heap.std._realloc = __zend_realloc;
2832 mm_heap->custom_heap.std._malloc = tracked_malloc;
2833 mm_heap->custom_heap.std._free = tracked_free;
2834 mm_heap->custom_heap.std._realloc = tracked_realloc;
2907 _heap->custom_heap.std._malloc = _malloc;
2908 _heap->custom_heap.std._free = _free;
2909 _heap->custom_heap.std._realloc = _realloc;
2923 *_malloc = _heap->custom_heap.std._malloc;
2924 *_free = _heap->custom_heap.std._free;
2925 *_realloc = _heap->custom_heap.std._realloc;
2948 _heap->custom_heap.debug._malloc = _malloc;
2949 _heap->custom_heap.debug._free = _free;
2950 _heap->custom_heap.debug._realloc = _realloc;