Lines Matching refs:PHPDBG_G

64 …phpdbg_writeln("setpagination", "active=\"%s\"", "Pagination %s", PHPDBG_G(flags) & PHPDBG_HAS_PAG…  in PHPDBG_SET()
68 PHPDBG_G(flags) |= PHPDBG_HAS_PAGINATION; in PHPDBG_SET()
70 PHPDBG_G(flags) &= ~PHPDBG_HAS_PAGINATION; in PHPDBG_SET()
84 phpdbg_writeln("setlines", "active=\"%s\"", "Lines %ld", PHPDBG_G(lines)); in PHPDBG_SET()
87 PHPDBG_G(lines) = param->num; in PHPDBG_SET()
127 …phpdbg_writeln("setbreaks", "active=\"%s\"", "Breakpoints %s",PHPDBG_G(flags) & PHPDBG_IS_BP_ENABL… in PHPDBG_SET()
157 if (PHPDBG_G(prompt)[1]) { in PHPDBG_SET()
158 free(PHPDBG_G(prompt)[1]); in PHPDBG_SET()
159 PHPDBG_G(prompt)[1]=NULL; in PHPDBG_SET()
184 …phpdbg_writeln("setcolors", "active=\"%s\"", "Colors %s", PHPDBG_G(flags) & PHPDBG_IS_COLOURED ? "… in PHPDBG_SET()
188 PHPDBG_G(flags) |= PHPDBG_IS_COLOURED; in PHPDBG_SET()
190 PHPDBG_G(flags) &= ~PHPDBG_IS_COLOURED; in PHPDBG_SET()
205 phpdbg_notice("setoplog", "active=\"%s\"", "Oplog %s", PHPDBG_G(oplog) ? "on" : "off"); in PHPDBG_SET()
209 FILE *old = PHPDBG_G(oplog); in PHPDBG_SET()
211 PHPDBG_G(oplog) = fopen(param->str, "w+"); in PHPDBG_SET()
212 if (!PHPDBG_G(oplog)) { in PHPDBG_SET()
214 PHPDBG_G(oplog) = old; in PHPDBG_SET()
234 …phpdbg_writeln("setquiet", "active=\"%s\"", "Quietness %s", PHPDBG_G(flags) & PHPDBG_IS_QUIET ? "o… in PHPDBG_SET()
238 PHPDBG_G(flags) |= PHPDBG_IS_QUIET; in PHPDBG_SET()
240 PHPDBG_G(flags) &= ~PHPDBG_IS_QUIET; in PHPDBG_SET()
253 …phpdbg_writeln("setstepping", "type=\"%s\"", "Stepping %s", PHPDBG_G(flags) & PHPDBG_STEP_OPCODE ?… in PHPDBG_SET()
257 PHPDBG_G(flags) |= PHPDBG_STEP_OPCODE; in PHPDBG_SET()
259 PHPDBG_G(flags) &= ~PHPDBG_STEP_OPCODE; in PHPDBG_SET()
274 …phpdbg_writeln("setrefcount", "active=\"%s\"", "Showing refcounts %s", PHPDBG_G(flags) & PHPDBG_IS… in PHPDBG_SET()
278 PHPDBG_G(flags) |= PHPDBG_SHOW_REFCOUNTS; in PHPDBG_SET()
280 PHPDBG_G(flags) &= ~PHPDBG_SHOW_REFCOUNTS; in PHPDBG_SET()