Searched defs:trace (Results 1 - 19 of 19) sorted by relevance

/ast/src/cmd/cs/vcs_src/
H A Dvcs_message.c40 void trace(int level, ...) function
/ast/src/lib/libast/misc/
H A Dsystrace.c25 * trace systems calls if possible
43 static char* trace[] = { "trace", "truss", "strace", "traces" }; local
48 id = (const char*)trace[0];
50 out += sfsprintf(out, sizeof(buf), "%s/.%s/%s", s, trace[0], id);
53 av[1] = trace[0];
62 for (n = 0; n < elementsof(trace); n++)
63 if (!procfree(procopen(trace[n], av + 1, NiL, ov, PROC_ARGMOD|PROC_GID|PROC_UID|(n == (elementsof(trace) - 1) ? PROC_CLEANUP : 0))))
/ast/src/lib/libexpr/
H A Dextoken.c37 * trace c for op
41 trace(Expr_t* ex, int lev, char* op, int c) function
197 * trace wrapper for extoken()
210 trace(ex, 0, "exlex", c);
216 #define trace(p,a,b,c) macro
247 else trace(ex, -1, "expop sp FAIL", 0);
257 else trace(ex, -1, "expop fp FAIL", 0);
264 trace(ex, -1, "expop sp FORCE", 0);
273 trace(ex, -3, "ex--lex", c);
/ast/src/lib/libpz/
H A Dpzfixed.c60 Error_f trace; local
62 trace = pz && error_info.trace <= -2 ? pz->disc->errorf : 0;
70 if (trace)
71 (*trace)(pz, pz->disc, -2, "pzfixed: siz=%I*d buf=%p z=%I*u", sizeof(siz), siz, buf, sizeof(z), z);
88 if (n && trace)
89 (*trace)(pz, pz->disc, -2, "pzfixed: newline terminated %u byte records", n);
95 if (trace)
96 (*trace)(pz, pz->disc, -2, "pzfixed: LEN REP BEST FREQ");
124 if (trace)
[all...]
/ast/src/lib/libcodex/
H A Dcodexlib.h58 char* trace; member in struct:Codexstate_s
H A Dcodex.c355 "trace",
356 "Debug trace wrapper.",
377 "trace", OPT_TRACE,
394 codexstate.trace = n ? strdup(v) : (char*)0;
443 Codexmeth_t* trace; local
578 if (codexstate.trace && strmatch(name, codexstate.trace))
583 if ((flags & (CODEX_TRACE|CODEX_VERBOSE)) && (trace = memdup(&codex_trace, sizeof(codex_trace))))
586 trace = 0;
596 if (trace)
[all...]
/ast/src/cmd/nmake/
H A Dmain.c112 * debug trace levels are controlled by error_info.trace
118 * level trace
119 * 0 no trace
120 * 1 basic make trace
130 * 11 bindfile() trace
135 * 20 bootstrap trace
177 * 0x00000008 bindfile() directory prune trace
178 * 0x00000010 expand() trace
180 * 0x00000040 bindalias() trace
297 int trace; local
[all...]
/ast/src/lib/libast/include/
H A Derror.h134 int indent; /* debug trace indent level */
137 int mask; /* multi level debug trace mask */
139 int trace; /* debug trace level */ member in struct:Error_info_s
149 unsigned long time; /* debug time trace */
/ast/src/cmd/at/
H A Dat.c178 char* trace = 0; local
248 trace = opt_info.arg;
304 sfprintf(sp, "%c%s", AT_DEBUG, trace);
/ast/src/lib/libast/comp/
H A Domitted.c459 static int trace; local
482 if (!trace)
483 trace = (s = getenv("_AST_exec_trace")) ? *s : 'n';
591 if (trace == 'a' || trace == 'e')
596 if (trace == 'e')
/ast/src/cmd/ksh93/sh/
H A Dargs.c145 int setflag=0, action=0, trace=(int)sh_isoption(SH_XTRACE); local
306 trace = 0;
321 trace = 0;
323 if(trace)
H A Dio.c1132 * flag = SH_SHOWME for trace only
1141 static char io_op[7]; /* used for -x trace info */
1144 char *tname=0, *after="", *trace = shp->st.trap[SH_DEBUGTRAP]; local
1392 if(trace && fname)
1409 sh_debug(shp,trace,(char*)0,(char*)0,av,ARG_NOGLOB);
H A Dxec.c813 int lineno,sig,trace = sh_isoption(SH_XTRACE); local
868 if(trace)
3016 /* make this trace atomic */
3660 register int i, fd, trace = sh_isoption(SH_XTRACE); local
3674 if(trace)
3699 if(trace)
/ast/src/lib/libtksh/src/
H A Dvar.c36 Namval_t *nv; /* Namval trace create with */
366 /* The following is a bad hack to see if the trace returned an
387 if (put_result) /* Error in set trace */
427 if ((result = nv_getval(namval)) == NULL) /* Error in trace */
573 Tcl_Trace_Info trace, *traceinfo; local
588 return; /* Not a trace - call next disc. */
593 trace = traceinfo->nv ? *traceinfo :
598 arrayname = nv_name(trace.nv);
613 traceinfo->clientData = &trace;
614 result = trace
649 Tcl_Trace_Info *traceinfo, trace; local
[all...]
/ast/src/lib/libast/vmalloc/
H A Dmalloc.c114 ** trace=f enables tracing to file f
1271 char* trace = 0; local
1381 case 't': /* trace=<path> */
1382 trace = v;
1417 if (trace)
1420 if ((fd = createfile(trace)) >= 0)
/ast/src/cmd/3d/
H A D3d.h506 } trace; member in struct:__anon7
/ast/src/cmd/warp/
H A Dwarp.c263 int trace; member in struct:__anon241
398 state.trace = 1;
406 if (state.trace)
430 if (state.trace)
1097 if (state.trace)
1106 if (state.trace)
1112 else if (state.trace)
1217 if (state.trace)
1226 if (state.trace)
1232 else if (state.trace)
[all...]
/ast/src/cmd/mailx/
H A Dimap.c1882 unsigned long trace; local
1998 trace = state.trace;
2001 state.trace = trace;
H A Dmailx.h134 #define TRACE(c) (state.trace|=(1<<((c)-'a')))
135 #define TRACING(c) (state.trace&(1<<((c)-'a')))
306 #define DEBUG (1<<0) /* debug trace */
656 unsigned long trace; /* Trace bits */ member in struct:__anon136
873 char* trace; member in struct:__anon136::__anon147

Completed in 65 milliseconds