| /src/sys/sys/ |
| H A D | lockstat.h | 82 #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 …]
|
| /src/sys/cddl/dev/sdt/ |
| H A D | sdt.c | 142 sdt_create_probe(struct sdt_probe *probe) in sdt_create_probe() argument 153 if (probe->version != (int)sizeof(*probe)) { in sdt_create_probe() 155 probe, probe->version, (int)sizeof(*probe)); in sdt_create_probe() 160 if (strcmp(prov->name, probe->prov->name) == 0) in sdt_create_probe() 166 if (*probe->mod == 0) { in sdt_create_probe() 167 len = strlcpy(mod, probe->sdtp_lf->filename, sizeof(mod)); in sdt_create_probe() 171 strlcpy(mod, probe->mod, sizeof(mod)); in sdt_create_probe() 179 strlcpy(func, probe->func, sizeof(func)); in sdt_create_probe() 183 from = probe->name; in sdt_create_probe() 208 (void)dtrace_probe_create(prov->id, mod, func, name, aframes, probe); in sdt_create_probe() [all …]
|
| /src/lib/libthr/ |
| H A D | plockstat.d | 30 probe mutex__acquire(void *mutex, int rec, int spincount); 31 probe mutex__release(void *mutex, int rec); 32 probe mutex__block(void *mutex); 33 probe mutex__spin(void *mutex); 34 probe mutex__spun(void *mutex, int success, int spincount); 35 probe mutex__blocked(void *mutex, int success); 36 probe mutex__error(void *mutex, int err); 38 probe rw__acquire(void *lock, int wr); 39 probe rw__release(void *lock, int wr); 40 probe rw__block(void *lock, int wr); [all …]
|
| /src/sys/dev/bhnd/bhndb/ |
| H A D | bhndb_pci.c | 101 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 …]
|
| /src/sys/netinet/ |
| H A D | sctp_kdtrace.h | 40 #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 …]
|
| /src/stand/i386/libi386/ |
| H A D | biosmemdisk.c | 72 struct safe_13h_hook *probe; in biosmemdisk_detect() local 90 probe = (struct safe_13h_hook *)PTOV(segment * 16 + offset); in biosmemdisk_detect() 91 if (memcmp(probe->sh_id, "$INT13SF", sizeof(probe->sh_id)) != 0) { in biosmemdisk_detect() 93 probe, segment, offset); in biosmemdisk_detect() 96 if (memcmp(probe->sh_vendor, "MEMDISK ", sizeof(probe->sh_vendor)) != 0) in biosmemdisk_detect() 103 mbft = (ACPI_TABLE_HEADER *)PTOV(probe->sh_mbft); in biosmemdisk_detect() 118 mdi = (struct memdisk_info *)PTOV(probe->sh_mbft + sizeof(*mbft)); in biosmemdisk_detect() 137 offset = probe->sh_next_offset; in biosmemdisk_detect() 138 segment = probe->sh_next_segment; in biosmemdisk_detect()
|
| /src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/ |
| H A 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();
|
| H A 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);
|
| H A 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);
|
| H A D | tst.header.ksh | 41 probe zero(); 42 probe one(uintptr_t); 43 probe u_nder(char *); 44 probe d__ash(int **);
|
| /src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/ |
| H A 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 [
|
| /src/sys/cddl/contrib/opensolaris/uts/common/dtrace/ |
| H A D | fasttrap.c | 754 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 D | dtrace.c | 412 #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) 574 #define DTRACE_ANCHORED(probe) ((probe)->dtpr_func[0] != '\0') argument 1662 dtrace_probe_t *probe = ecb->dte_probe; in dtrace_priv_probe() local 1663 dtrace_provider_t *prov = probe->dtpr_provider; in dtrace_priv_probe() 1672 probe->dtpr_id, probe->dtpr_arg); in dtrace_priv_probe() [all …]
|
| /src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/json/ |
| H A 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);
|
| /src/usr.sbin/ppp/ |
| H A D | probe.c | 39 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 D | probe.h | 29 struct probe { struct 36 extern struct probe probe; argument
|
| /src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/ |
| H A 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 …]
|
| H A 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 …]
|
| H A 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.
|
| H A 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
|
| /src/cddl/usr.sbin/dwatch/libexec/ |
| H A D | proc | 63 $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 D | vop_rename | 20 $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 D | sched | 37 $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 )) */
|
| /src/sys/cam/ |
| H A D | cam.h | 383 #define CAM_PROBE1(group, probe, arg0) \ argument 384 SDT_PROBE1(cam, , group, probe, arg0) 385 #define CAM_PROBE2(group, probe, arg0, arg1) \ argument 386 SDT_PROBE2(cam, , group, probe, arg0, arg1) 387 #define CAM_PROBE3(group, probe, arg0, arg1, arg2) \ argument 388 SDT_PROBE3(cam, , group, probe, arg0, arg1, arg2) 389 #define CAM_PROBE4(group, probe, arg0, arg1, arg2, arg3) \ argument 390 SDT_PROBE4(cam, , group, probe, arg0, arg1, arg2, arg3)
|
| /src/sys/contrib/device-tree/src/arm64/mediatek/ |
| H A D | mt8173-elm-hana.dtsi | 17 status = "fail-needs-probe"; 30 status = "fail-needs-probe"; 40 status = "fail-needs-probe"; 66 status = "fail-needs-probe"; 93 status = "fail-needs-probe"; 97 status = "fail-needs-probe";
|