/ast/src/lib/libexpr/ |
H A D | exopen.c | 39 int debug; local 44 debug = getenv("VMDEBUG") != 0; 47 !(program->vm = (debug ? vmopen(Vmdcsbrk, Vmdebug, VM_DBCHECK|VM_DBABORT) : vmopen(Vmdcheap, Vmbest, 0))) || 48 !(program->ve = (debug ? vmopen(Vmdcsbrk, Vmdebug, VM_DBCHECK|VM_DBABORT) : vmopen(Vmdcheap, Vmbest, 0))))
|
/ast/src/cmd/cs/vcs_src/ |
H A D | vcs_rscs.c | 26 int debug; /* take away ? */ variable
|
/ast/src/lib/libast/include/ |
H A D | debug.h | 24 * common ast debug definitions 40 #define debug(x) x macro 63 #define debug(x) macro
|
/ast/src/cmd/std/ |
H A D | pss-ps.c | 46 int debug; member in struct:State_s 76 state->debug = 1; 218 if (state->debug && pss->disc->errorf)
|
/ast/src/lib/libast/misc/ |
H A D | procopen.c | 81 "debug", PROC_OPT_VERBOSE, 426 int debug = PROC_OPT_EXEC; local 595 stropt(getenv(PROC_ENV_OPTIONS), options, sizeof(*options), setopt, &debug); local 597 if (debug & PROC_OPT_TRACE) 725 if (!(debug & PROC_OPT_EXEC) || (debug & PROC_OPT_VERBOSE)) 727 if ((debug & PROC_OPT_ENVIRONMENT) && (p = environ)) 736 if (!(debug & PROC_OPT_EXEC))
|
H A D | translate.c | 48 int debug; /* special debug locale */ member in struct:__anon295 377 cp->debug = streq(cp->locale, "debug"); 379 cp->debug = 0; 381 sfprintf(sfstderr, "AHA#%d:%s cp->cat %p cp->debug %d NOCAT %p\n", __LINE__, __FILE__, cp->cat, cp->debug, NOCAT); 386 if (cp->debug) 426 if (r == (char*)msg && (!cp && streq(loc, "debug") || cp && cp->debug)) [all...] |
/ast/src/cmd/mam/ |
H A D | shmam.awk | 39 #changing this debug level will print more stuff. 79 debug(1, "%s \n", "pass 1: begin", 0); 132 debug(1, "%s \n", "pass 2: begin", 0); 166 debug(9, "L:%s\n", $0) 170 debug(1, "idi=%d $idi=%s\n", idi, $idi); 175 debug(1, "cmd=%s type=%s idi=%d\n", cmd, cmdtype, idi) 204 debug(1, "internal error\n"); 218 debug(9, "get_cmds %s\n", str) 292 debug(2, "cmd=%s opt=%s starti=%d\n", cmd, opt, starti) 310 debug( 2033 function debug(level, con_str, a,b,c,d,e,f,g,h,i,j,k,l) function [all...] |
/ast/src/cmd/sortlib/sum/ |
H A D | sortsum.c | 60 "[d:debug?List the field operations on the standard error.]" 435 int debug; local 448 debug = 0; 458 debug = 1; 721 if (debug || key->verbose)
|
/ast/src/lib/libast/regex/ |
H A D | regcomp.c | 41 #define DEBUG_TEST(f,y,n) ((debug&(debug_flag=f))?(y):(n)) 42 #define DEBUG_CODE(f,y,n) do if(debug&(f)){y}else{n} while(0) 43 #define DEBUG_INIT() do { char* t; if (!debug) { debug = 0x80000000; if (t = getenv("_AST_regex_comp_debug")) debug |= strtoul(t, NiL, 0); } } while (0) 45 static unsigned long debug; variable
|
H A D | regnexec.c | 33 #define DEBUG_TEST(f,y,n) ((debug&(debug_flag=f))?(y):(n)) 34 #define DEBUG_CODE(f,y,n) do if(debug&(f)){y}else{n} while(0) 35 #define DEBUG_INIT() do { char* t; if (!debug) { debug = 0x80000000; if (t = getenv("_AST_regex_exec_debug")) debug |= strtoul(t, NiL, 0); } } while (0) 37 static unsigned long debug; variable
|
/ast/src/lib/libpp/ |
H A D | pplib.h | 419 #define debug(x) do { if (tracing) error x; } while (0) macro 421 #define debug(x) macro 576 debug((-7, "PUSH in=%s next=%s", ppinstr(pp.in), pptokchr(*pp.in->nextchr))); \ 590 debug((-7, "PUSH in=%s next=%s", ppinstr(pp.in), pptokchr(*pp.in->nextchr))); \ 609 debug((-7, "PUSH in=%s next=%s", ppinstr(pp.in), pptokchr(*pp.in->nextchr))); \ 621 debug((-7, "PUSH in=%s next=%s", ppinstr(pp.in), pptokchr(*pp.in->nextchr))); \ 644 debug((-7, "PUSH in=%s next=%s", ppinstr(pp.in), pptokchr(*pp.in->nextchr))); \ 656 debug((-7, "PUSH in=%s next=%s", ppinstr(pp.in), pptokchr(*pp.in->nextchr))); \ 671 debug((-7, "PUSH in=%s next=%s", ppinstr(pp.in), pptokchr(*pp.in->nextchr))); \ 681 debug(( [all...] |
/ast/src/cmd/INIT/ |
H A D | mamake.c | 76 "[D:?Set the debug trace level to \alevel\a. Higher levels produce more" 82 "[G:debug-symbols?Compile and link with debugging symbol options enabled.]" 229 int debug; /* negative of debug level */ member in struct:__anon22 235 int indent; /* debug indent */ 290 * <0 debug 302 if (level >= state.debug) 308 fprintf(stderr, "debug%d: ", level); 328 if (stamp && state.debug <= -2) 1274 if (state.debug) [all...] |
/ast/src/cmd/coshell/ |
H A D | service.h | 81 #include <debug.h> 159 #define SETDEBUG (1<<1) /* global.debug was set */ 213 int debug; member in struct:__anon58::__anon59
|
/ast/src/cmd/mailx/ |
H A D | mailx.h | 306 #define DEBUG (1<<0) /* debug trace */ 796 char* debug; member in struct:__anon136::__anon147
|
/ast/src/cmd/nmake/ |
H A D | make.h | 46 #define debug(x) do if (error_info.trace < 0) { error x; } while (0) macro 49 #define debug(x) macro 69 #define CMDTRACE (-6) /* coshell trace debug level */ 70 #define EXPTRACE (-5) /* explanation trace debug lev */
|