Home
last modified time | relevance | path

Searched refs:_free (Results 1 – 3 of 3) sorted by relevance

/php-src/Zend/
H A Dzend_alloc.h278 … void (*_free)(void* ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC),
282 … void (*_free)(void* ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC),
288 … void (**_free)(void* ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC),
292 … void (**_free)(void* ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC),
H A Dzend_alloc.c303 void (*_free)(void* ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC); member
2410 heap->custom_heap._free = __zend_free;
2418 heap->custom_heap._free(heap ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC);
3041 mm_heap->custom_heap._free = __zend_free;
3046 mm_heap->custom_heap._free = tracked_free;
3114 zend_mm_set_custom_handlers_ex(heap, _malloc, _free, _realloc, NULL, NULL);
3128 if (!_malloc && !_free && !_realloc) {
3133 _heap->custom_heap._free = _free;
3163 *_free = _heap->custom_heap._free;
3173 *_free = NULL;
[all …]
/php-src/sapi/phpdbg/
H A Dphpdbg.c1151 void (*_free)(void* ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC); in main() local
1408 zend_mm_get_custom_handlers(mm_heap, &_malloc, &_free, &_realloc); in main()
1410 use_mm_wrappers = !_malloc && !_realloc && !_free; in main()
1412 PHPDBG_G(original_free_function) = _free; in main()
1413 _free = phpdbg_watch_efree; in main()
1418 zend_mm_set_custom_handlers(mm_heap, _malloc, _free, _realloc); in main()
1421 _free = PHPDBG_G(original_free_function); in main()
1763 zend_mm_set_custom_handlers(zend_mm_get_heap(), _malloc, _free, _realloc); in main()

Completed in 23 milliseconds