oplog              70 sapi/phpdbg/phpdbg.c 	pg->oplog = NULL;
oplog             205 sapi/phpdbg/phpdbg.c 	if (PHPDBG_G(oplog)) {
oplog             207 sapi/phpdbg/phpdbg.c 				PHPDBG_G(oplog));
oplog             208 sapi/phpdbg/phpdbg.c 		PHPDBG_G(oplog) = NULL;
oplog            1383 sapi/phpdbg/phpdbg.c 			PHPDBG_G(oplog) = fopen(oplog_file, "w+");
oplog            1384 sapi/phpdbg/phpdbg.c 			if (!PHPDBG_G(oplog)) {
oplog             205 sapi/phpdbg/phpdbg.h 	FILE *oplog;                                 /* opline log */
oplog             149 sapi/phpdbg/phpdbg_opcode.c 		(PHPDBG_G(oplog)))) {
oplog             164 sapi/phpdbg/phpdbg_opcode.c 		if (!ignore_flags && PHPDBG_G(oplog)) {
oplog             165 sapi/phpdbg/phpdbg_opcode.c 			phpdbg_log_ex(PHPDBG_G(oplog), "L%-5u %16p %-30s %s %s",
oplog             745 sapi/phpdbg/phpdbg_prompt.c 	phpdbg_writeln("Oplog\t\t%s", PHPDBG_G(oplog) ? "on" : "off");
oplog              39 sapi/phpdbg/phpdbg_set.c 	PHPDBG_SET_COMMAND_D(oplog,        "usage: set oplog  [<output>]",            'O', set_oplog,        NULL, "|s"),
oplog             169 sapi/phpdbg/phpdbg_set.c PHPDBG_SET(oplog) /* {{{ */
oplog             172 sapi/phpdbg/phpdbg_set.c 		phpdbg_notice("Oplog %s", PHPDBG_G(oplog) ? "enabled" : "disabled");
oplog             176 sapi/phpdbg/phpdbg_set.c 			FILE *old = PHPDBG_G(oplog);
oplog             178 sapi/phpdbg/phpdbg_set.c 			PHPDBG_G(oplog) = fopen(param->str, "w+");
oplog             179 sapi/phpdbg/phpdbg_set.c 			if (!PHPDBG_G(oplog)) {
oplog             181 sapi/phpdbg/phpdbg_set.c 				PHPDBG_G(oplog) = old;
oplog              33 sapi/phpdbg/phpdbg_set.h PHPDBG_SET(oplog);