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()
756 if ((PHPDBG_G(flags) & PHPDBG_IS_REMOTE) || !isatty(PHPDBG_G(io)[PHPDBG_STDIN].fd)) in phpdbg_read_input()
765 PHPDBG_G(last_was_newline) = 1; in phpdbg_read_input()
768 PHPDBG_G(flags) |= PHPDBG_IS_QUITTING | PHPDBG_IS_DISCONNECTED; in phpdbg_read_input()
782 …if (!buffered && cmd && !(PHPDBG_G(flags) & PHPDBG_IS_REMOTE) && isatty(PHPDBG_G(io)[PHPDBG_STDIN]… in phpdbg_read_input()
799 if (PHPDBG_G(buffer)) { in phpdbg_read_input()
800 free(PHPDBG_G(buffer)); in phpdbg_read_input()
802 PHPDBG_G(buffer) = strdup(buffer); in phpdbg_read_input()
803 } else if (PHPDBG_G(buffer)) { in phpdbg_read_input()
807 buffer = estrdup(PHPDBG_G(buffer)); in phpdbg_read_input()
819 if (!(PHPDBG_G(flags) & PHPDBG_WRITE_XML)) { in phpdbg_ask_user_permission()