Home
last modified time | relevance | path

Searched refs:probefunc (Results 1 – 25 of 62) sorted by relevance

123

/freebsd/sys/compat/linux/
H A Dtrace_futexes.d65 probefunc);
75 probename, probeprov, probemod, probefunc, execname);
109 ++check[probefunc, arg0];
110 @stats[probefunc] = count();
112 ts[probefunc] = timestamp;
113 spec[probefunc] = speculation();
114 printf("Stacktrace of last lock operation of the %s:\n", probefunc);
119 /check[probefunc, arg0] == 0/
121 printf("ERROR: unlock attempt of unlocked %s (%p),", probefunc, arg0);
123 printf(" while the %s was already held (race condition).", probefunc);
[all …]
H A Dcheck_internal_locks.d46 /check[probefunc] > 0/
48 printf("ERROR: recursive lock of %s (%p),", probefunc, arg0);
55 ++check[probefunc];
56 @stats[probefunc] = count();
58 ts[probefunc] = timestamp;
59 spec[probefunc] = speculation();
63 /check[probefunc] == 0/
65 printf("ERROR: unlock attempt of unlocked %s (%p),", probefunc, arg0);
67 printf(" while the %s was already held (race condition).", probefunc);
74 discard(spec[probefunc]);
[all …]
H A Dstats_timing.d47 self->time[probefunc] = vtimestamp;
48 @calls[probeprov, execname, probefunc] = count();
52 /self->time[probefunc] != 0/
54 this->timediff = self->time[probefunc] - vtimestamp;
56 @stats[probeprov, execname, probefunc] = quantize(this->timediff);
57 @longest[probeprov, probefunc] = max(this->timediff);
59 self->time[probefunc] = 0;
72 @lockstats[probefunc] = quantize(this->timediff);
73 @longlock[probefunc] = max(this->timediff);
H A Dcheck_error.d70 printf("ERROR: %s in %s:%s:%s\n", probename, probeprov, probemod, probefunc);
79 …plication %s, maybe an application error?\n", probename, probeprov, probemod, probefunc, execname);
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/
H A Drwinfo.d53 i[probefunc].ts = timestamp;
54 i[probefunc].calls++;
55 i[probefunc].maxbytes = arg2 > i[probefunc].maxbytes ?
56 arg2 : i[probefunc].maxbytes;
61 /i[probefunc].ts != 0 && pid == 100551/
63 i[probefunc].elapsed += timestamp - i[probefunc].ts;
H A Drwtime.d42 ts[probefunc] = timestamp;
47 /(ts[probefunc] != 0) && (pid == 100551)/
49 printf("%d nsecs\n", timestamp - ts[probefunc]);
H A Dtrussrw.d44 printf("%s(%d, 0x%x, %4d)", probefunc, arg0, arg1, arg2);
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Derr.D_PROTO_ARG.lquantizetoofew.d40 @a[pid] = lquantize(probefunc, probefunc, probefunc, probefunc);
H A Derr.D_AGG_SCALAR.maxnoarg.d39 @a[pid] = max(probefunc);
H A Derr.D_AGG_SCALAR.mintoofew.d40 @a[pid] = min(probefunc);
H A Derr.D_AGG_SCALAR.quantizetoofew.d39 @a[pid] = quantize(probefunc);
H A Derr.D_AGG_SCALAR.sumtoofew.d40 @a[pid] = sum(probefunc);
H A Derr.D_AGG_SCALAR.avgtoofew.d41 @a[pid] = avg(probefunc);
H A Derr.D_AGG_SCALAR.stddevtoofew.d39 @a[pid] = stddev(probefunc);
/freebsd/cddl/usr.sbin/dwatch/libexec/
H A Dopen31 * NB: Based on probefunc ending in "at" (e.g., openat(2))
33 this->at = strstr(probefunc, "at") ==
34 (probefunc + strlen(probefunc) - 2) ? 1 : 0;
H A Dchmod38 * NB: Based on probefunc ending in "at" (e.g., fchmodat(2))
40 this->at = strstr(probefunc, "at") ==
41 (probefunc + strlen(probefunc) - 2) ? 1 : 0;
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.weak1.d58 /probefunc == "go"/
65 /probefunc == "_go"/
H A Dtst.weak2.d58 /probefunc == "_go"/
65 /probefunc == "go"/
H A Dtst.newprobes.ksh40 printf("%s:%s\n", probefunc, probename);
/freebsd/cddl/usr.sbin/dtrace/tests/common/providers/
H A DMakefile20 tst.probefunc.d \
21 tst.probefunc.d.out \
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/providers/
H A Dtst.beginprof.d45 printf("%s %s %s %s", probeprov, probemod, probefunc, probename);
H A Dtst.probefunc.d50 printf("probe funct = %s", probefunc);
H A Dtst.probattrs.d50 printf("%s %s %s %s", probeprov, probemod, probefunc, probename);
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/
H A Dtst.return0.d42 printf("%s %x returned 0", probefunc, arg0);
H A Dtst.tailcall.d47 printf("called %s\n", probefunc);

123