Home
last modified time | relevance | path

Searched refs:trace (Results 1 – 25 of 339) sorted by relevance

12345678910>>...14

/titanic_51/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Dtst.signedkeys.d39 * the behavior is preserved. Consistency with trace() output is also
48 trace((char)-2);
49 trace("\n");
50 trace((char)-1);
51 trace("\n");
52 trace((char)0);
53 trace("\n");
54 trace((char)1);
55 trace("\n");
56 trace((cha
[all...]
/titanic_51/usr/src/cmd/dtrace/test/tst/common/privs/
H A Dtst.func_access.ksh37 BEGIN { trace(mutex_owned(&`pidlock)); }
38 BEGIN { trace(mutex_owner(&`pidlock)); }
39 BEGIN { trace(mutex_type_adaptive(&`pidlock)); }
40 BEGIN { trace(mutex_type_spin(&`pidlock)); }
42 BEGIN { trace(rw_read_held(&`ksyms_lock)); }
43 BEGIN { trace(rw_write_held(&`ksyms_lock)); }
44 BEGIN { trace(rw_iswriter(&`ksyms_lock)); }
46 BEGIN { x = alloca(10); bcopy(`initname, x, 10); trace(stringof(x)); }
49 BEGIN { trace(strlen(`initname)); }
50 BEGIN { trace(strch
[all...]
H A Dtst.op_access.ksh37 BEGIN { trace(`utsname); }
38 BEGIN { trace(`kmem_flags); }
41 BEGIN /`initname == "/sbin/init"/ { trace("bad"); }
44 BEGIN { p = `p0; trace(p); }
47 BEGIN { self->p = `p0; trace(self->p); }
50 BEGIN { a[stringof(`initname)] = 42; trace(a["/sbin/init"]); }
53 BEGIN { self->a[stringof(`initname)] = 42; trace(self->a["/sbin/init"]); }
60 trace("pass");
H A Dtst.unpriv_funcs.ksh38 BEGIN { trace("trace\n"); }
43 trace(stringof(x)); }
58 BEGIN { trace(strjoin("str", "join\n")); }
59 BEGIN { trace(basename("dirname/basename")); trace("/"); }
60 BEGIN { trace(dirname("dirname/basename")); }
H A Dtst.procpriv.ksh44 trace(what->field); printf("\n"); }
47 BEGIN { errmsg = ""; trace(what->field); \
51 BEGIN { errmsg = ""; printf("field: "); trace(what->field); printf("\n"); }
55 trace(vname); printf("\n"); }
58 BEGIN { errmsg = ""; trace(vname); \
62 BEGIN { errmsg = ""; printf("vname: "); trace(vname); printf("\n"); }
/titanic_51/usr/src/cmd/captoinfo/
H A Dcaptoinfo.c51 #define trace stderr /* send trace messages to stderr */ macro
189 (void) fprintf(trace, "termcap string '%c%c' " in checktermcap()
202 (void) fprintf(trace, "looking at termcap string " in checktermcap()
219 (void) fprintf(trace, "type of '%.2s' is %s.\n", tbuf, in checktermcap()
284 (void) fprintf(trace, "bp="); in filltables()
285 (void) cpr(trace, bp); in filltables()
286 (void) fprintf(trace, ".\n"); in filltables()
298 (void) fprintf(trace, "boolcodes=%s, ", boolcodes[i]); in filltables()
299 (void) fprintf(trace, "boolname in filltables()
[all...]
/titanic_51/usr/src/cmd/vi/port/
H A Dex_vget.c202 if (trace) { in getbr()
206 fprintf(trace, "*** Input: "); in getbr()
535 if (trace)
536 fprintf(trace,"map(%c): ",c);
549 if (trace)
550 fprintf(trace,"\ntry '%s', ",maps[d].cap);
555 if (trace)
556 fprintf(trace,"q->b[%d], ",q-b);
569 if (trace)
570 fprintf(trace,"fp
[all...]
H A Dex_vadj.c60 if (trace != NULL) in vopen()
61 tfixnl(), fprintf(trace, "vopen(%d, %d)\n", lineno(tp), p); in vopen()
256 if (trace) in vinslin()
257 tfixnl(), fprintf(trace, "vinslin(%d, %d, %d)\n", p, cnt, l); in vinslin()
336 if (trace) in vopenup()
337 tfixnl(), fprintf(trace, "vopenup(%d, %d, %d)\n", cnt, could, l); in vopenup()
380 if (trace) in vadjAL()
381 tfixnl(), fprintf(trace, "vadjal(%d, %d)\n", p, cnt); in vadjAL()
408 if (trace) in vrollup()
409 tfixnl(), fprintf(trace, "vrollu in vrollup()
[all...]
/titanic_51/usr/src/cmd/fs.d/autofs/
H A Dns_ldap.c216 if (trace > 1) in init_ldap()
242 if (trace > 1) in init_ldap()
246 if (trace > 1) { in init_ldap()
267 if (trace > 1) in getmapent_ldap()
270 if (trace > 1) { in getmapent_ldap()
318 if (trace > 1) in getmapent_ldap()
335 if (trace > 1) { in ldap_match()
349 if (trace > 1) { in ldap_match()
355 if (trace > 1) in ldap_match()
362 if (trace > in ldap_match()
[all...]
/titanic_51/usr/src/cmd/dtrace/test/tst/common/trace/
H A Dtst.misc.d31 * Test a variety of trace() action invocations.
33 * SECTION: Actions and Subroutines/trace();
34 * Output Formatting/trace()
50 trace("test trace"); /* DT_TYPE_STRING */
51 trace(12345); /* DT_TYPE_INT (constant) */
52 trace(x++); /* DT_TYPE_INT (derived) */
53 trace(timestamp); /* DT_TYPE_INT (variable) */
54 trace(`kmem_flags); /* CTF type (by value) */
55 trace(*`rootv
[all...]
/titanic_51/usr/src/contrib/ast/src/lib/libast/misc/
H A Dsystrace.c25 * trace systems calls if possible
43 static char* trace[] = { "trace", "truss", "strace", "traces" }; in systrace() local
48 id = (const char*)trace[0]; in systrace()
50 out += sfsprintf(out, sizeof(buf), "%s/.%s/%s", s, trace[0], id); in systrace()
53 av[1] = trace[0]; in systrace()
62 for (n = 0; n < elementsof(trace); n++) in systrace()
63 if (!procfree(procopen(trace[n], av + 1, NiL, ov, PROC_ARGMOD|PROC_GID|PROC_UID|(n == (elementsof(trace) - 1) ? PROC_CLEANUP : 0)))) in systrace()
/titanic_51/usr/src/lib/libast/common/misc/
H A Dsystrace.c43 static char* trace[] = { "trace", "truss", "strace", "traces" }; in systrace() local
48 id = (const char*)trace[0]; in systrace()
50 out += sfsprintf(out, sizeof(buf), "%s/.%s/%s", s, trace[0], id); in systrace()
53 av[1] = trace[0]; in systrace()
62 for (n = 0; n < elementsof(trace); n++) in systrace()
63 …if (!procfree(procopen(trace[n], av + 1, NiL, ov, PROC_ARGMOD|PROC_GID|PROC_UID|(n == (elementsof( in systrace()
/titanic_51/usr/src/cmd/dtrace/test/tst/common/safety/
H A Dtst.hton.d41 trace(htons(0x1122));
47 trace(htonl(0x11223344));
53 trace(htonll(0x1122334455667788));
59 trace(ntohs(0x1122));
65 trace(ntohl(0x11223344));
71 trace(ntohll(0x1122334455667788));
/titanic_51/usr/src/cmd/dtrace/demo/ip/
H A Dtcprst.d65 tcp-trace-*
99 tcp-trace-*
120 tcp-trace-*
144 tcp-trace-send
150 tcp-trace-recv
156 tcp-trace-*
165 tcp-trace-*
174 tcp-trace-*
183 tcp-trace-*
192 tcp-trace
[all...]
/titanic_51/usr/src/common/ficl/
H A Ddictionary.c661 char *trace; in ficlDictionarySee() local
669 trace = buffer; in ficlDictionarySee()
671 *trace++ = '>'; in ficlDictionarySee()
673 *trace++ = ' '; in ficlDictionarySee()
674 trace += sprintf(trace, "%3ld ", (long)(cell - param0)); in ficlDictionarySee()
682 sprintf(trace, "%s (instruction %ld)", in ficlDictionarySee()
688 sprintf(trace, "%s (instruction %ld), with " in ficlDictionarySee()
694 sprintf(trace, in ficlDictionarySee()
705 sprintf(trace, " in ficlDictionarySee()
[all...]
/titanic_51/usr/src/cmd/smbsrv/dtrace/
H A Dsmbd-all.d24 self int trace; variable
37 self->trace++;
49 /self->trace > 0 && self->mask == 0/
84 /self->trace > 0 && self->mask == 0/
90 /self->trace > 0 && self->mask == 0/
96 /self->trace > 0 && self->mask == 0/
123 /self->trace > 0 && self->mask == 0/
135 self->trace--;
H A Dsmbsrv.d24 self int trace; variable
32 self->trace++;
39 /self->trace > 0 && self->mask == 0/
81 /self->trace > 0 && self->mask == 0/
88 self->trace--;
H A Dsmbd-pipesvc.d24 self int trace; variable
35 self->trace++;
46 /self->trace > 0 && self->mask == 0/
98 /self->trace > 0 && self->mask == 0/
108 /self->trace > 0 && self->mask == 0/
115 self->trace--;
/titanic_51/usr/src/cmd/dtrace/test/tst/common/drops/
H A Ddrp.DTRACEDROP_PRINCIPAL.end.d39 trace("Harding");
40 trace("Hoover");
41 trace("Nixon");
42 trace("Bush");
H A Ddrp.DTRACEDROP_PRINCIPAL.d34 trace("Harding");
35 trace("Hoover");
36 trace("Nixon");
37 trace("Bush");
/titanic_51/usr/src/cmd/infocmp/
H A Dinfocmp.c122 #define trace stderr /* send trace messages to stderr */ macro
171 (void) fprintf(trace, "There are %d boolean capabilities.\n", in allocvariables()
173 (void) fprintf(trace, "There are %d numeric capabilities.\n", in allocvariables()
175 (void) fprintf(trace, "There are %d string capabilities.\n", in allocvariables()
414 (void) fprintf(trace, "looking at 'bs'\n"); in pr_bcaps()
420 (void) fprintf(trace, "looking at 'pt'\n"); in pr_bcaps()
426 (void) fprintf(trace, "looking at 'nc'\n"); in pr_bcaps()
432 (void) fprintf(trace, "looking at 'ns'\n"); in pr_bcaps()
446 (void) fprintf(trace, "lookin in pr_ncaps()
[all...]
/titanic_51/usr/src/cmd/dtrace/demo/user/
H A Duserfunc.d29 self->trace = 1;
33 /self->trace/
35 self->trace = 0;
40 /self->trace/
/titanic_51/usr/src/cmd/dtrace/test/tst/common/docsExamples/
H A Duserfunc.d42 self->trace = 1;
46 /self->trace/
48 self->trace = 0;
53 /self->trace/
/titanic_51/usr/src/uts/common/io/nxge/npi/
H A Dnpi.c151 rt_buf_t *trace; in npi_trace_dump() local
165 trace = &rt->buf[cursor]; in npi_trace_dump()
166 if (trace->ctl_addr == 0) in npi_trace_dump()
169 trace->name, trace->ctl_addr, in npi_trace_dump()
170 trace->val_h32, trace->val_l32, in npi_trace_dump()
171 trace->ctl_addr & TRACE_CTL_WR ? 'W' : 'R'); in npi_trace_dump()
/titanic_51/usr/src/cmd/dtrace/test/tst/common/stop/
H A Dtst.stop2.d50 trace("looks like it's still going");
58 trace("stopped");
69 trace("looks like it really stopped");
76 trace("timed out");

12345678910>>...14