sigsafe_mem       111 sapi/phpdbg/phpdbg.c 	pg->sigsafe_mem.mem = NULL;
sigsafe_mem       305 sapi/phpdbg/phpdbg.h 	phpdbg_signal_safe_mem sigsafe_mem;          /* memory to use in async safe environment (only once!) */
sigsafe_mem        11 sapi/phpdbg/phpdbg_sigsafe.c 	if (EXPECTED(size <= PHPDBG_SIGSAFE_MEM_SIZE && !PHPDBG_G(sigsafe_mem).allocated)) {
sigsafe_mem        12 sapi/phpdbg/phpdbg_sigsafe.c 		PHPDBG_G(sigsafe_mem).allocated = 1;
sigsafe_mem        13 sapi/phpdbg/phpdbg_sigsafe.c 		return (void *) (((size_t) PHPDBG_G(sigsafe_mem).mem & ~(alignment - 1)) + alignment);
sigsafe_mem        31 sapi/phpdbg/phpdbg_sigsafe.c 	phpdbg_signal_safe_mem *mem = &PHPDBG_G(sigsafe_mem);
sigsafe_mem        48 sapi/phpdbg/phpdbg_sigsafe.c 	return PHPDBG_G(sigsafe_mem).old_heap;
sigsafe_mem        53 sapi/phpdbg/phpdbg_sigsafe.c 	PHPDBG_G(sigsafe_mem).mem = NULL;
sigsafe_mem        57 sapi/phpdbg/phpdbg_sigsafe.c 	return !!PHPDBG_G(sigsafe_mem).mem;