Lines Matching refs:PHPDBG_G
748 if ((PHPDBG_G(flags) & (PHPDBG_IS_STOPPING | PHPDBG_IS_RUNNING)) != PHPDBG_IS_STOPPING) { in phpdbg_read_input()
749 if ((PHPDBG_G(flags) & PHPDBG_IS_REMOTE) && (buffered == NULL) && !phpdbg_active_sigsafe_mem()) { in phpdbg_read_input()
750 fflush(PHPDBG_G(io)[PHPDBG_STDOUT].ptr); in phpdbg_read_input()
757 if ((PHPDBG_G(flags) & PHPDBG_IS_REMOTE) || !isatty(PHPDBG_G(io)[PHPDBG_STDIN].fd)) in phpdbg_read_input()
766 PHPDBG_G(last_was_newline) = 1; in phpdbg_read_input()
769 PHPDBG_G(flags) |= PHPDBG_IS_QUITTING | PHPDBG_IS_DISCONNECTED; in phpdbg_read_input()
783 …if (!buffered && cmd && !(PHPDBG_G(flags) & PHPDBG_IS_REMOTE) && isatty(PHPDBG_G(io)[PHPDBG_STDIN]… in phpdbg_read_input()
800 if (PHPDBG_G(buffer)) { in phpdbg_read_input()
801 free(PHPDBG_G(buffer)); in phpdbg_read_input()
803 PHPDBG_G(buffer) = strdup(buffer); in phpdbg_read_input()
804 } else if (PHPDBG_G(buffer)) { in phpdbg_read_input()
808 buffer = estrdup(PHPDBG_G(buffer)); in phpdbg_read_input()
820 if (!(PHPDBG_G(flags) & PHPDBG_WRITE_XML)) { in phpdbg_ask_user_permission()