oplog              98 sapi/phpdbg/phpdbg.c 	pg->oplog = NULL;
oplog             242 sapi/phpdbg/phpdbg.c 	if (PHPDBG_G(oplog)) {
oplog             243 sapi/phpdbg/phpdbg.c 		fclose(PHPDBG_G(oplog));
oplog             244 sapi/phpdbg/phpdbg.c 		PHPDBG_G(oplog) = NULL;
oplog            1760 sapi/phpdbg/phpdbg.c 			PHPDBG_G(oplog) = fopen(oplog_file, "w+");
oplog            1761 sapi/phpdbg/phpdbg.c 			if (!PHPDBG_G(oplog)) {
oplog            1965 sapi/phpdbg/phpdbg.c 			settings->oplog = PHPDBG_G(oplog);
oplog             274 sapi/phpdbg/phpdbg.h 	FILE *oplog;                                 /* opline log */
oplog             178 sapi/phpdbg/phpdbg_opcode.c 		(PHPDBG_G(oplog)))) {
oplog             192 sapi/phpdbg/phpdbg_opcode.c 		if (!ignore_flags && PHPDBG_G(oplog)) {
oplog             193 sapi/phpdbg/phpdbg_opcode.c 			phpdbg_log_ex(fileno(PHPDBG_G(oplog)), "L%-5u %16p %s %s\n",
oplog             921 sapi/phpdbg/phpdbg_prompt.c 	phpdbg_writeln("info", "oplog=\"%s\"", "Oplog      %s", PHPDBG_G(oplog) ? "on" : "off");
oplog              40 sapi/phpdbg/phpdbg_set.c 	PHPDBG_SET_COMMAND_D(oplog,        "usage: set oplog  [<output>]",            'O', set_oplog,        NULL, "|s", 0),
oplog             202 sapi/phpdbg/phpdbg_set.c PHPDBG_SET(oplog) /* {{{ */
oplog             205 sapi/phpdbg/phpdbg_set.c 		phpdbg_notice("setoplog", "active=\"%s\"", "Oplog %s", PHPDBG_G(oplog) ? "on" : "off");
oplog             209 sapi/phpdbg/phpdbg_set.c 			FILE *old = PHPDBG_G(oplog);
oplog             211 sapi/phpdbg/phpdbg_set.c 			PHPDBG_G(oplog) = fopen(param->str, "w+");
oplog             212 sapi/phpdbg/phpdbg_set.c 			if (!PHPDBG_G(oplog)) {
oplog             214 sapi/phpdbg/phpdbg_set.c 				PHPDBG_G(oplog) = old;
oplog              33 sapi/phpdbg/phpdbg_set.h PHPDBG_SET(oplog);