Lines Matching refs:custom_heap

275 	} custom_heap;  member
2178 heap->custom_heap.debug._free(heap ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC);
2180 heap->custom_heap.std._free(heap);
2332 …return AG(mm_heap)->custom_heap.debug._malloc(size ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_REL…
2334 return AG(mm_heap)->custom_heap.std._malloc(size); \
2341 … AG(mm_heap)->custom_heap.debug._free(ptr ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC); \
2343 AG(mm_heap)->custom_heap.std._free(ptr); \
2434 …return AG(mm_heap)->custom_heap.debug._malloc(size ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_REL…
2436 return AG(mm_heap)->custom_heap.std._malloc(size);
2449 AG(mm_heap)->custom_heap.debug._free(ptr ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
2451 AG(mm_heap)->custom_heap.std._free(ptr);
2464 …return AG(mm_heap)->custom_heap.debug._realloc(ptr, size ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_OR…
2466 return AG(mm_heap)->custom_heap.std._realloc(ptr, size);
2477 …return AG(mm_heap)->custom_heap.debug._realloc(ptr, size ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_OR…
2479 return AG(mm_heap)->custom_heap.std._realloc(ptr, size);
2618 alloc_globals->mm_heap->custom_heap.std._malloc = __zend_malloc;
2619 alloc_globals->mm_heap->custom_heap.std._free = free;
2620 alloc_globals->mm_heap->custom_heap.std._realloc = __zend_realloc;
2687 _heap->custom_heap.std._malloc = _malloc;
2688 _heap->custom_heap.std._free = _free;
2689 _heap->custom_heap.std._realloc = _realloc;
2702 *_malloc = _heap->custom_heap.std._malloc;
2703 *_free = _heap->custom_heap.std._free;
2704 *_realloc = _heap->custom_heap.std._realloc;
2727 _heap->custom_heap.debug._malloc = _malloc;
2728 _heap->custom_heap.debug._free = _free;
2729 _heap->custom_heap.debug._realloc = _realloc;