Home
last modified time | relevance | path

Searched refs:probe (Results 1 – 25 of 348) sorted by relevance

12345678910>>...14

/freebsd/sys/sys/
H A Dlockstat.h82 #define LOCKSTAT_RECORD0(probe, lp) \ argument
83 SDT_PROBE1(lockstat, , , probe, lp)
85 #define LOCKSTAT_RECORD1(probe, lp, arg1) \ argument
86 SDT_PROBE2(lockstat, , , probe, lp, arg1)
88 #define LOCKSTAT_RECORD2(probe, lp, arg1, arg2) \ argument
89 SDT_PROBE3(lockstat, , , probe, lp, arg1, arg2)
91 #define LOCKSTAT_RECORD3(probe, lp, arg1, arg2, arg3) \ argument
92 SDT_PROBE4(lockstat, , , probe, lp, arg1, arg2, arg3)
94 #define LOCKSTAT_RECORD4(probe, lp, arg1, arg2, arg3, arg4) \ argument
95 SDT_PROBE5(lockstat, , , probe, lp, arg1, arg2, arg3, arg4)
[all …]
/freebsd/sys/cddl/dev/sdt/
H A Dsdt.c138 sdt_create_probe(struct sdt_probe *probe) in sdt_create_probe() argument
149 if (probe->version != (int)sizeof(*probe)) { in sdt_create_probe()
151 probe, probe->version, (int)sizeof(*probe)); in sdt_create_probe()
156 if (strcmp(prov->name, probe->prov->name) == 0) in sdt_create_probe()
162 if (*probe->mod == 0) { in sdt_create_probe()
163 len = strlcpy(mod, probe->sdtp_lf->filename, sizeof(mod)); in sdt_create_probe()
167 strlcpy(mod, probe->mod, sizeof(mod)); in sdt_create_probe()
175 strlcpy(func, probe->func, sizeof(func)); in sdt_create_probe()
179 from = probe->name; in sdt_create_probe()
204 (void)dtrace_probe_create(prov->id, mod, func, name, aframes, probe); in sdt_create_probe()
[all …]
/freebsd/sys/dev/bhnd/bhndb/
H A Dbhndb_pci.c101 struct bhndb_pci_probe *probe);
106 static int bhndb_pci_probe_alloc(struct bhndb_pci_probe **probe,
108 static void bhndb_pci_probe_free(struct bhndb_pci_probe *probe);
111 struct bhndb_pci_probe *probe,
123 struct bhndb_pci_probe *probe);
150 struct bhndb_pci_probe *probe; /**< borrowed probe reference */ member
264 struct bhndb_pci_probe *probe; in bhndb_pci_probe() local
271 probe = NULL; in bhndb_pci_probe()
298 if ((error = bhndb_pci_probe_alloc(&probe, dev, hostb_devclass))) in bhndb_pci_probe()
302 if ((entry = bhndb_pci_find_core(&probe->hostb_core)) == NULL) { in bhndb_pci_probe()
[all …]
/freebsd/sys/netinet/
H A Dsctp_kdtrace.h40 #define SCTP_PROBE1(probe, arg0) \ argument
41 SDT_PROBE1(sctp, , , probe, arg0)
42 #define SCTP_PROBE2(probe, arg0, arg1) \ argument
43 SDT_PROBE2(sctp, , , probe, arg0, arg1)
44 #define SCTP_PROBE3(probe, arg0, arg1, arg2) \ argument
45 SDT_PROBE3(sctp, , , probe, arg0, arg1, arg2)
46 #define SCTP_PROBE4(probe, arg0, arg1, arg2, arg3) \ argument
47 SDT_PROBE4(sctp, , , probe, arg0, arg1, arg2, arg3)
48 #define SCTP_PROBE5(probe, arg0, arg1, arg2, arg3, arg4) \ argument
49 SDT_PROBE5(sctp, , , probe, arg0, arg1, arg2, arg3, arg4)
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dtst.entryreturn.ksh53 * Unfortunately, a "return" probe is not currently possible due to
62 probe entry();
63 probe __entry();
64 probe foo__entry();
65 probe carpentry();
66 probe miniatureturn();
67 probe foo__return();
68 probe __return();
69 probe done();
H A Dtst.linkpriv.ksh56 probe zero();
57 probe one(uintptr_t);
58 probe two(uintptr_t, uintptr_t);
59 probe three(uintptr_t, uintptr_t, uintptr_t);
60 probe four(uintptr_t, uintptr_t, uintptr_t, uintptr_t);
61 probe five(uintptr_t, uintptr_t, uintptr_t, uintptr_t, uintptr_t);
H A Dtst.linkunpriv.ksh58 probe zero();
59 probe one(uintptr_t);
60 probe two(uintptr_t, uintptr_t);
61 probe three(uintptr_t, uintptr_t, uintptr_t);
62 probe four(uintptr_t, uintptr_t, uintptr_t, uintptr_t);
63 probe five(uintptr_t, uintptr_t, uintptr_t, uintptr_t, uintptr_t);
H A Dtst.header.ksh41 probe zero();
42 probe one(uintptr_t);
43 probe u_nder(char *);
44 probe d__ash(int **);
/freebsd/sys/cddl/contrib/opensolaris/uts/common/dtrace/
H A Dfasttrap.c754 fasttrap_tracepoint_enable(proc_t *p, fasttrap_probe_t *probe, uint_t index) in fasttrap_tracepoint_enable() argument
762 ASSERT(index < probe->ftp_ntps); in fasttrap_tracepoint_enable()
764 pid = probe->ftp_pid; in fasttrap_tracepoint_enable()
765 pc = probe->ftp_tps[index].fit_tp->ftt_pc; in fasttrap_tracepoint_enable()
766 id = &probe->ftp_tps[index].fit_id; in fasttrap_tracepoint_enable()
768 ASSERT(probe->ftp_tps[index].fit_tp->ftt_pid == pid); in fasttrap_tracepoint_enable()
778 fasttrap_mod_barrier(probe->ftp_gen); in fasttrap_tracepoint_enable()
891 new_tp = probe->ftp_tps[index].fit_tp; in fasttrap_tracepoint_enable()
895 ASSERT(new_tp->ftt_proc == probe->ftp_prov->ftp_proc); in fasttrap_tracepoint_enable()
938 fasttrap_tracepoint_disable(proc_t *p, fasttrap_probe_t *probe, uint_t index) in fasttrap_tracepoint_disable() argument
[all …]
H A Ddtrace.c412 #define DTRACE_HASHSTR(hash, probe) \ argument
413 dtrace_hash_str(*((char **)((uintptr_t)(probe) + (hash)->dth_stroffs)))
415 #define DTRACE_HASHNEXT(hash, probe) \ argument
416 (dtrace_probe_t **)((uintptr_t)(probe) + (hash)->dth_nextoffs)
418 #define DTRACE_HASHPREV(hash, probe) \ argument
419 (dtrace_probe_t **)((uintptr_t)(probe) + (hash)->dth_prevoffs)
572 #define DTRACE_ANCHORED(probe) ((probe)->dtpr_func[0] != '\0') argument
1634 dtrace_probe_t *probe = ecb->dte_probe; in dtrace_priv_probe() local
1635 dtrace_provider_t *prov = probe->dtpr_provider; in dtrace_priv_probe()
1644 probe->dtpr_id, probe->dtpr_arg); in dtrace_priv_probe()
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/
H A Dtst.ProbeData.ksh.out1 [probe 1 pid$target:tst.ProbeData.exe:fN:entry [
6 [probe 1 pid$target:tst.ProbeData.exe:fN:entry [
11 [probe 2 pid$target:tst.ProbeData.exe:fN2:entry [
16 [probe 1 pid$target:tst.ProbeData.exe:fN:entry [
21 [probe 2 pid$target:tst.ProbeData.exe:fN2:entry [
26 [probe 1 pid$target:tst.ProbeData.exe:fN:entry [
31 [probe 1 pid$target:tst.ProbeData.exe:fN:entry [
36 [probe 1 pid$target:tst.ProbeData.exe:fN:entry [
41 [probe 1 pid$target:tst.ProbeData.exe:fN:entry [
46 [probe 1 pid$target:tst.ProbeData.exe:fN:entry [
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/json/
H A Dusdt.d21 probe log__trace(const char *msg);
22 probe log__debug(const char *msg);
23 probe log__info(const char *msg);
24 probe log__warn(const char *msg);
25 probe log__error(const char *msg);
26 probe log__fatal(const char *msg);
/freebsd/usr.sbin/ppp/
H A Dprobe.c39 struct probe probe; variable
70 probe.select_changes_time = select_changes_time() ? 1 : 0; in probe_Init()
72 probe.select_changes_time ? "yes" : "no"); in probe_Init()
74 probe.ipv6_available = ipv6_available() ? 1 : 0; in probe_Init()
76 probe.ipv6_available ? "yes" : "no"); in probe_Init()
H A Dprobe.h29 struct probe { struct
36 extern struct probe probe; argument
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/
H A Dman.TraceNames39 * RESULT: invalid probe specifier
43 * RESULT: invalid probe specifier
47 * RESULT: invalid probe specifier
51 * RESULT: trace of one probe with name BEGIN.
55 * RESULT: invalid probe specifier
59 * RESULT: invalid probe specifier
67 * RESULT: invalid probe specifier
80 * RESULT: invalid probe specifier
97 * RESULT: Count of mathching read probes and invalid probe specifier
102 * RESULT: invalid probe specifier
[all …]
H A Dman.TraceModule39 * RESULT: invalid probe specifier
51 * RESULT: invalid probe specifier
59 * RESULT: invalid probe specifier
63 * RESULT: not a valid probe description.
72 * and an invalid probe specifier for foounix.
76 * RESULT: invalid probe specifier for foounix.
80 * RESULT: invalid probe description.
99 * RESULT: invalid probe specifier.
103 * RESULT: invalid probe specifier.
107 * RESULT: invalid probe specifier.
[all …]
H A Dman.TraceFunctions39 * RESULT: invalid probe specifier
43 * RESULT: invalid probe specifier
51 * RESULT: invalid probe specifier
59 * RESULT: invalid probe specifier
76 * RESULT: invalid probe specifier
80 * RESULT: invalid probe specifier.
88 * RESULT: Count of matching read probes and invalid probe specifier
93 * RESULT: invalid probe specifier.
97 * RESULT: invalid probe specifier.
109 * RESULT: invalid probe specifier.
H A Dman.TraceProvider44 * RESULT: invalid probe specifier
48 * RESULT: invalid probe specifier
52 * RESULT: invalid probe specifier
61 * probe specifier for foofile and no tracing.
65 * RESULT: invalid probe specifier
74 * RESULT: invalid probe specifier
79 * RESULT: Traces of the matching profile probe with the
/freebsd/cddl/usr.sbin/dwatch/libexec/
H A Dproc63 $PROBE /* probe ID $ID */
69 proc:::create /* probe ID $(( $ID + 1 )) */
81 proc:::exec /* probe ID $(( $ID + 2 )) */
87 proc:::exec-failure /* probe ID $(( $ID + 3 )) */
98 proc:::exec-success /* probe ID $(( $ID + 4 )) */
104 proc:::exit /* probe ID $(( $ID + 5 )) */
110 proc:::signal-clear /* probe ID $(( $ID + 6 )) */
117 proc:::signal-discard, proc:::signal-send /* probe ID $(( $ID + 7 )) */
126 proc:::signal-send /* probe ID $(( $ID + 8 )) */
136 proc:::signal-send, proc:::signal-discard /* probe ID $(( $ID + 9 )) */
H A Dvop_rename20 $PROBE /* probe ID $ID */
78 this->ffi_name == ""/ /* probe ID $(( $ID + 1 )) */
86 this->tfi_name == ""/ /* probe ID $(( $ID + 2 )) */
94 $PROBE /this->fncp/ /* probe ID $(( $ID + 3 )) (depth 1) */
104 $PROBE /this->tncp/ /* probe ID $(( $ID + 4 )) (depth 1) */
116 this->fname1 == "/" || this->fname1 == ""/ /* probe ID $((
126 this->tname1 == "/" || this->tname1 == ""/ /* probe ID $((
154 $PROBE /this->fdvp/ /* probe ID IDNUM1 (depth DEPTH) */
163 $PROBE /this->tdvp/ /* probe ID IDNUM2 (depth DEPTH) */
176 $PROBE /this->fdvp/ /* probe ID $(( $ID + $MAX_DEPTH * 2 + 5 )) */
[all …]
H A Dsched37 $PROBE /* probe ID $ID */
47 sched:::tick, sched:::wakeup /* probe ID $(( $ID + 1 )) */
58 sched:::enqueue /* probe ID $(( $ID + 2 )) */
65 sched:::change-pri, sched:::lend-pri /* probe ID $(( $ID + 3 )) */
73 sched:::load-change /* probe ID $(( $ID + 4 )) */
81 $PROBE /* probe ID $(( $ID + 5 )) */
H A Dvop_readdir20 $PROBE /* probe ID $ID */
55 this->fi_fs == "devfs" || this->fi_fs == ""/ /* probe ID $((
65 $PROBE /this->ncp/ /* probe ID $(( $ID + 2 )) (depth 1) */
77 this->name1 == "/" || this->name1 == ""/ /* probe ID $(( $ID + 3 )) */
101 $PROBE /this->dvp/ /* probe ID IDNUM (depth DEPTH) */
114 $PROBE /this->dvp/ /* probe ID $(( $ID + $MAX_DEPTH + 3 )) */
130 $PROBE /this->fi_mount != 0/ /* probe ID $(( $ID + $MAX_DEPTH + 4 )) */
H A Dvop_create20 $PROBE /* probe ID $ID */
60 this->fi_name == ""/ /* probe ID $(( $ID + 1 )) */
68 $PROBE /this->ncp/ /* probe ID $(( $ID + 2 )) (depth 1) */
80 this->name1 == "/" || this->name1 == ""/ /* probe ID $(( $ID + 3 )) */
104 $PROBE /this->dvp/ /* probe ID IDNUM (depth DEPTH) */
117 $PROBE /this->dvp/ /* probe ID $(( $ID + $MAX_DEPTH + 3 )) */
133 $PROBE /this->fi_mount != 0/ /* probe ID $(( $ID + $MAX_DEPTH + 4 )) */
H A Dvop_symlink20 $PROBE /* probe ID $ID */
61 this->fi_name == ""/ /* probe ID $(( $ID + 1 )) */
69 $PROBE /this->ncp/ /* probe ID $(( $ID + 2 )) (depth 1) */
81 this->name1 == "/" || this->name1 == ""/ /* probe ID $(( $ID + 3 )) */
105 $PROBE /this->dvp/ /* probe ID IDNUM (depth DEPTH) */
118 $PROBE /this->dvp/ /* probe ID $(( $ID + $MAX_DEPTH + 3 )) */
134 $PROBE /this->fi_mount != 0/ /* probe ID $(( $ID + $MAX_DEPTH + 4 )) */
/freebsd/sys/cddl/contrib/opensolaris/uts/powerpc/dtrace/
H A Dfasttrap_isa.c238 fasttrap_usdt_args(fasttrap_probe_t *probe, struct reg *rp, int argc, in fasttrap_usdt_args() argument
241 int i, x, cap = MIN(argc, probe->ftp_nargs); in fasttrap_usdt_args()
244 x = probe->ftp_argmap[i]; in fasttrap_usdt_args()
400 fasttrap_probe_t *probe = id->fti_probe; in fasttrap_pid_probe() local
410 dtrace_probe(probe->ftp_id, rp->fixreg[3], in fasttrap_pid_probe()
424 } else if (probe->ftp_argmap == NULL) { in fasttrap_pid_probe()
425 dtrace_probe(probe->ftp_id, rp->fixreg[3], in fasttrap_pid_probe()
431 fasttrap_usdt_args(probe, rp, in fasttrap_pid_probe()
434 dtrace_probe(probe->ftp_id, t[0], t[1], in fasttrap_pid_probe()

12345678910>>...14