| /freebsd-12-stable/sys/sys/ |
| D | lockstat.h | 84 #define LOCKSTAT_RECORD0(probe, lp) \ argument 85 SDT_PROBE1(lockstat, , , probe, lp) 87 #define LOCKSTAT_RECORD1(probe, lp, arg1) \ argument 88 SDT_PROBE2(lockstat, , , probe, lp, arg1) 90 #define LOCKSTAT_RECORD2(probe, lp, arg1, arg2) \ argument 91 SDT_PROBE3(lockstat, , , probe, lp, arg1, arg2) 93 #define LOCKSTAT_RECORD3(probe, lp, arg1, arg2, arg3) \ argument 94 SDT_PROBE4(lockstat, , , probe, lp, arg1, arg2, arg3) 96 #define LOCKSTAT_RECORD4(probe, lp, arg1, arg2, arg3, arg4) \ argument 97 SDT_PROBE5(lockstat, , , probe, lp, arg1, arg2, arg3, arg4) [all …]
|
| /freebsd-12-stable/sys/cddl/dev/sdt/ |
| D | sdt.c | 137 sdt_create_probe(struct sdt_probe *probe) in sdt_create_probe() argument 147 if (probe->version != (int)sizeof(*probe)) { in sdt_create_probe() 149 probe, probe->version, (int)sizeof(*probe)); in sdt_create_probe() 154 if (strcmp(prov->name, probe->prov->name) == 0) in sdt_create_probe() 160 if (*probe->mod == 0) { in sdt_create_probe() 161 len = strlcpy(mod, probe->sdtp_lf->filename, sizeof(mod)); in sdt_create_probe() 165 strlcpy(mod, probe->mod, sizeof(mod)); in sdt_create_probe() 173 strlcpy(func, probe->func, sizeof(func)); in sdt_create_probe() 177 from = probe->name; in sdt_create_probe() 192 (void)dtrace_probe_create(prov->id, mod, func, name, 1, probe); in sdt_create_probe() [all …]
|
| /freebsd-12-stable/sys/netinet/ |
| D | in_kdtrace.h | 33 #define IP_PROBE(probe, arg0, arg1, arg2, arg3, arg4, arg5) \ argument 34 SDT_PROBE6(ip, , , probe, arg0, arg1, arg2, arg3, arg4, arg5) 35 #define UDP_PROBE(probe, arg0, arg1, arg2, arg3, arg4) \ argument 36 SDT_PROBE5(udp, , , probe, arg0, arg1, arg2, arg3, arg4) 37 #define UDPLITE_PROBE(probe, arg0, arg1, arg2, arg3, arg4) \ argument 38 SDT_PROBE5(udplite, , , probe, arg0, arg1, arg2, arg3, arg4) 39 #define TCP_PROBE1(probe, arg0) \ argument 40 SDT_PROBE1(tcp, , , probe, arg0) 41 #define TCP_PROBE2(probe, arg0, arg1) \ argument 42 SDT_PROBE2(tcp, , , probe, arg0, arg1) [all …]
|
| D | sctp_kdtrace.h | 43 #define SCTP_PROBE1(probe, arg0) \ argument 44 SDT_PROBE1(sctp, , , probe, arg0) 45 #define SCTP_PROBE2(probe, arg0, arg1) \ argument 46 SDT_PROBE2(sctp, , , probe, arg0, arg1) 47 #define SCTP_PROBE3(probe, arg0, arg1, arg2) \ argument 48 SDT_PROBE3(sctp, , , probe, arg0, arg1, arg2) 49 #define SCTP_PROBE4(probe, arg0, arg1, arg2, arg3) \ argument 50 SDT_PROBE4(sctp, , , probe, arg0, arg1, arg2, arg3) 51 #define SCTP_PROBE5(probe, arg0, arg1, arg2, arg3, arg4) \ argument 52 SDT_PROBE5(sctp, , , probe, arg0, arg1, arg2, arg3, arg4) [all …]
|
| /freebsd-12-stable/lib/libthr/ |
| D | plockstat.d | 33 probe mutex__acquire(void *mutex, int rec, int spincount); 34 probe mutex__release(void *mutex, int rec); 35 probe mutex__block(void *mutex); 36 probe mutex__spin(void *mutex); 37 probe mutex__spun(void *mutex, int success, int spincount); 38 probe mutex__blocked(void *mutex, int success); 39 probe mutex__error(void *mutex, int err); 41 probe rw__acquire(void *lock, int wr); 42 probe rw__release(void *lock, int wr); 43 probe rw__block(void *lock, int wr); [all …]
|
| /freebsd-12-stable/sys/dev/bhnd/bhndb/ |
| D | bhndb_pci.c | 103 struct bhndb_pci_probe *probe); 108 static int bhndb_pci_probe_alloc(struct bhndb_pci_probe **probe, 110 static void bhndb_pci_probe_free(struct bhndb_pci_probe *probe); 113 struct bhndb_pci_probe *probe, 125 struct bhndb_pci_probe *probe); 152 struct bhndb_pci_probe *probe; /**< borrowed probe reference */ member 267 struct bhndb_pci_probe *probe; in bhndb_pci_probe() local 274 probe = NULL; in bhndb_pci_probe() 301 if ((error = bhndb_pci_probe_alloc(&probe, dev, hostb_devclass))) in bhndb_pci_probe() 305 if ((entry = bhndb_pci_find_core(&probe->hostb_core)) == NULL) { in bhndb_pci_probe() [all …]
|
| /freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/ |
| D | tst.entryreturn.ksh | 53 * 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();
|
| D | tst.linkunpriv.ksh | 58 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);
|
| D | tst.linkpriv.ksh | 56 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);
|
| D | tst.header.ksh | 41 probe zero(); 42 probe one(uintptr_t); 43 probe u_nder(char *); 44 probe d__ash(int **);
|
| /freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/dtrace/ |
| D | fasttrap.c | 750 fasttrap_tracepoint_enable(proc_t *p, fasttrap_probe_t *probe, uint_t index) in fasttrap_tracepoint_enable() argument 758 ASSERT(index < probe->ftp_ntps); in fasttrap_tracepoint_enable() 760 pid = probe->ftp_pid; in fasttrap_tracepoint_enable() 761 pc = probe->ftp_tps[index].fit_tp->ftt_pc; in fasttrap_tracepoint_enable() 762 id = &probe->ftp_tps[index].fit_id; in fasttrap_tracepoint_enable() 764 ASSERT(probe->ftp_tps[index].fit_tp->ftt_pid == pid); in fasttrap_tracepoint_enable() 774 fasttrap_mod_barrier(probe->ftp_gen); in fasttrap_tracepoint_enable() 887 new_tp = probe->ftp_tps[index].fit_tp; in fasttrap_tracepoint_enable() 891 ASSERT(new_tp->ftt_proc == probe->ftp_prov->ftp_proc); in fasttrap_tracepoint_enable() 934 fasttrap_tracepoint_disable(proc_t *p, fasttrap_probe_t *probe, uint_t index) in fasttrap_tracepoint_disable() argument [all …]
|
| D | dtrace.c | 402 #define DTRACE_HASHSTR(hash, probe) \ argument 403 dtrace_hash_str(*((char **)((uintptr_t)(probe) + (hash)->dth_stroffs))) 405 #define DTRACE_HASHNEXT(hash, probe) \ argument 406 (dtrace_probe_t **)((uintptr_t)(probe) + (hash)->dth_nextoffs) 408 #define DTRACE_HASHPREV(hash, probe) \ argument 409 (dtrace_probe_t **)((uintptr_t)(probe) + (hash)->dth_prevoffs) 557 #define DTRACE_ANCHORED(probe) ((probe)->dtpr_func[0] != '\0') argument 1619 dtrace_probe_t *probe = ecb->dte_probe; in dtrace_priv_probe() local 1620 dtrace_provider_t *prov = probe->dtpr_provider; in dtrace_priv_probe() 1629 probe->dtpr_id, probe->dtpr_arg); in dtrace_priv_probe() [all …]
|
| /freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/ |
| D | tst.ProbeData.ksh.out | 1 [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-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/json/ |
| D | usdt.d | 21 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-12-stable/usr.sbin/ppp/ |
| D | probe.c | 41 struct probe probe; variable 72 probe.select_changes_time = select_changes_time() ? 1 : 0; in probe_Init() 74 probe.select_changes_time ? "yes" : "no"); in probe_Init() 76 probe.ipv6_available = ipv6_available() ? 1 : 0; in probe_Init() 78 probe.ipv6_available ? "yes" : "no"); in probe_Init()
|
| D | probe.h | 31 struct probe { struct 38 extern struct probe probe; argument
|
| /freebsd-12-stable/cddl/contrib/opensolaris/lib/libzpool/common/ |
| D | zfs.d | 21 probe probe0(char *probename); 22 probe probe1(char *probename, unsigned long arg1); 23 probe probe2(char *probename, unsigned long arg1, unsigned long arg2); 24 probe probe3(char *probename, unsigned long arg1, unsigned long arg2, 26 probe probe4(char *probename, unsigned long arg1, unsigned long arg2, 29 probe set__error(int err);
|
| /freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/ |
| D | man.TraceNames | 39 * 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 …]
|
| D | man.TraceModule | 39 * 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 …]
|
| D | man.TraceFunctions | 39 * 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.
|
| D | man.TraceProvider | 44 * 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-12-stable/contrib/gperf/src/ |
| D | hash-table.cc | 147 unsigned int probe = hash_val & (_size - 1); in insert() local 156 while (_table[probe] != NULL) in insert() 158 if (equal (_table[probe], item)) in insert() 159 return _table[probe]; in insert() 162 probe = (probe + increment) & (_size - 1); in insert() 165 _table[probe] = item; in insert()
|
| /freebsd-12-stable/cddl/usr.sbin/dwatch/libexec/ |
| D | proc | 64 $PROBE /* probe ID $ID */ 70 proc:::create /* probe ID $(( $ID + 1 )) */ 82 proc:::exec /* probe ID $(( $ID + 2 )) */ 88 proc:::exec-failure /* probe ID $(( $ID + 3 )) */ 99 proc:::exec-success /* probe ID $(( $ID + 4 )) */ 105 proc:::exit /* probe ID $(( $ID + 5 )) */ 111 proc:::signal-clear /* probe ID $(( $ID + 6 )) */ 118 proc:::signal-discard, proc:::signal-send /* probe ID $(( $ID + 7 )) */ 127 proc:::signal-send /* probe ID $(( $ID + 8 )) */ 137 proc:::signal-send, proc:::signal-discard /* probe ID $(( $ID + 9 )) */
|
| D | vop_rename | 21 $PROBE /* probe ID $ID */ 79 this->ffi_name == ""/ /* probe ID $(( $ID + 1 )) */ 87 this->tfi_name == ""/ /* probe ID $(( $ID + 2 )) */ 95 $PROBE /this->fncp/ /* probe ID $(( $ID + 3 )) (depth 1) */ 105 $PROBE /this->tncp/ /* probe ID $(( $ID + 4 )) (depth 1) */ 117 this->fname1 == "/" || this->fname1 == ""/ /* probe ID $(( 127 this->tname1 == "/" || this->tname1 == ""/ /* probe ID $(( 155 $PROBE /this->fdvp/ /* probe ID IDNUM1 (depth DEPTH) */ 164 $PROBE /this->tdvp/ /* probe ID IDNUM2 (depth DEPTH) */ 177 $PROBE /this->fdvp/ /* probe ID $(( $ID + $MAX_DEPTH * 2 + 5 )) */ [all …]
|
| D | sched | 38 $PROBE /* probe ID $ID */ 48 sched:::tick, sched:::wakeup /* probe ID $(( $ID + 1 )) */ 59 sched:::enqueue /* probe ID $(( $ID + 2 )) */ 66 sched:::change-pri, sched:::lend-pri /* probe ID $(( $ID + 3 )) */ 74 sched:::load-change /* probe ID $(( $ID + 4 )) */ 82 $PROBE /* probe ID $(( $ID + 5 )) */
|