/freebsd/sys/compat/linux/ |
H A D | trace_futexes.d | 65 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 D | check_internal_locks.d | 46 /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 D | stats_timing.d | 47 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 D | check_error.d | 70 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 D | rwinfo.d | 53 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 D | rwtime.d | 42 ts[probefunc] = timestamp; 47 /(ts[probefunc] != 0) && (pid == 100551)/ 49 printf("%d nsecs\n", timestamp - ts[probefunc]);
|
H A D | trussrw.d | 44 printf("%s(%d, 0x%x, %4d)", probefunc, arg0, arg1, arg2);
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/ |
H A D | err.D_PROTO_ARG.lquantizetoofew.d | 40 @a[pid] = lquantize(probefunc, probefunc, probefunc, probefunc);
|
H A D | err.D_AGG_SCALAR.maxnoarg.d | 39 @a[pid] = max(probefunc);
|
H A D | err.D_AGG_SCALAR.mintoofew.d | 40 @a[pid] = min(probefunc);
|
H A D | err.D_AGG_SCALAR.quantizetoofew.d | 39 @a[pid] = quantize(probefunc);
|
H A D | err.D_AGG_SCALAR.sumtoofew.d | 40 @a[pid] = sum(probefunc);
|
H A D | err.D_AGG_SCALAR.avgtoofew.d | 41 @a[pid] = avg(probefunc);
|
H A D | err.D_AGG_SCALAR.stddevtoofew.d | 39 @a[pid] = stddev(probefunc);
|
/freebsd/cddl/usr.sbin/dwatch/libexec/ |
H A D | open | 31 * 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 D | chmod | 38 * 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 D | tst.weak1.d | 58 /probefunc == "go"/ 65 /probefunc == "_go"/
|
H A D | tst.weak2.d | 58 /probefunc == "_go"/ 65 /probefunc == "go"/
|
H A D | tst.newprobes.ksh | 40 printf("%s:%s\n", probefunc, probename);
|
/freebsd/cddl/usr.sbin/dtrace/tests/common/providers/ |
H A D | Makefile | 20 tst.probefunc.d \ 21 tst.probefunc.d.out \
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/providers/ |
H A D | tst.beginprof.d | 45 printf("%s %s %s %s", probeprov, probemod, probefunc, probename);
|
H A D | tst.probefunc.d | 50 printf("probe funct = %s", probefunc);
|
H A D | tst.probattrs.d | 50 printf("%s %s %s %s", probeprov, probemod, probefunc, probename);
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/ |
H A D | tst.return0.d | 42 printf("%s %x returned 0", probefunc, arg0);
|
H A D | tst.tailcall.d | 47 printf("called %s\n", probefunc);
|