Searched refs:probe (Results 1 - 25 of 160) sorted by relevance

1234567

/freebsd-13-stable/usr.sbin/ppp/
H A Dprobe.h31 struct probe { struct
38 extern struct probe probe;
H A Dprobe.c37 #include "probe.h"
41 struct probe probe; variable in typeref:struct:probe
72 probe.select_changes_time = select_changes_time() ? 1 : 0;
74 probe.select_changes_time ? "yes" : "no");
76 probe.ipv6_available = ipv6_available() ? 1 : 0;
78 probe.ipv6_available ? "yes" : "no");
/freebsd-13-stable/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-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dforker.d30 probe fire();
H A Dprov.d2 probe entry();
H A Dargs.d30 probe place(int i, int j);
H A Dargmap.d30 probe place(int i, int j) : (int j, int i, int i, int j);
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 **);
H A Dtst.noprobes.ksh45 probe bagnoogle();
53 print -u2 "dtrace succeeded despite having no probe sites"
H A Dtst.onlyenabled.ksh41 probe go();
H A Dtst.static.ksh61 probe probe1();
62 probe probe2();
/freebsd-13-stable/lib/libthr/
H A Dplockstat.d33 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__bloc
[all...]
/freebsd-13-stable/sys/netinet/
H A Din_kdtrace.h33 #define IP_PROBE(probe, arg0, arg1, arg2, arg3, arg4, arg5) \
34 SDT_PROBE6(ip, , , probe, arg0, arg1, arg2, arg3, arg4, arg5)
35 #define UDP_PROBE(probe, arg0, arg1, arg2, arg3, arg4) \
36 SDT_PROBE5(udp, , , probe, arg0, arg1, arg2, arg3, arg4)
37 #define UDPLITE_PROBE(probe, arg0, arg1, arg2, arg3, arg4) \
38 SDT_PROBE5(udplite, , , probe, arg0, arg1, arg2, arg3, arg4)
39 #define TCP_PROBE1(probe, arg0) \
40 SDT_PROBE1(tcp, , , probe, arg0)
41 #define TCP_PROBE2(probe, arg0, arg1) \
42 SDT_PROBE2(tcp, , , probe, arg
[all...]
H A Dsctp_kdtrace.h43 #define SCTP_PROBE1(probe, arg0) \
44 SDT_PROBE1(sctp, , , probe, arg0)
45 #define SCTP_PROBE2(probe, arg0, arg1) \
46 SDT_PROBE2(sctp, , , probe, arg0, arg1)
47 #define SCTP_PROBE3(probe, arg0, arg1, arg2) \
48 SDT_PROBE3(sctp, , , probe, arg0, arg1, arg2)
49 #define SCTP_PROBE4(probe, arg0, arg1, arg2, arg3) \
50 SDT_PROBE4(sctp, , , probe, arg0, arg1, arg2, arg3)
51 #define SCTP_PROBE5(probe, arg0, arg1, arg2, arg3, arg4) \
52 SDT_PROBE5(sctp, , , probe, arg
[all...]
/freebsd-13-stable/sys/sys/
H A Dlockstat.h84 #define LOCKSTAT_RECORD0(probe, lp) \
85 SDT_PROBE1(lockstat, , , probe, lp)
87 #define LOCKSTAT_RECORD1(probe, lp, arg1) \
88 SDT_PROBE2(lockstat, , , probe, lp, arg1)
90 #define LOCKSTAT_RECORD2(probe, lp, arg1, arg2) \
91 SDT_PROBE3(lockstat, , , probe, lp, arg1, arg2)
93 #define LOCKSTAT_RECORD3(probe, lp, arg1, arg2, arg3) \
94 SDT_PROBE4(lockstat, , , probe, lp, arg1, arg2, arg3)
96 #define LOCKSTAT_RECORD4(probe, lp, arg1, arg2, arg3, arg4) \
97 SDT_PROBE5(lockstat, , , probe, l
[all...]
/freebsd-13-stable/sys/cddl/dev/sdt/
H A Dsdt.c138 sdt_create_probe(struct sdt_probe *probe) argument
148 if (probe->version != (int)sizeof(*probe)) {
149 printf("ignoring probe %p, version %u expected %u\n",
150 probe, probe->version, (int)sizeof(*probe));
155 if (strcmp(prov->name, probe->prov->name) == 0)
158 KASSERT(prov != NULL, ("probe defined without a provider"));
161 if (*probe
209 struct sdt_probe *probe = parg; local
226 struct sdt_probe *probe = parg; local
246 struct sdt_probe *probe = parg; local
290 struct sdt_probe **probe, **p_begin, **p_end; local
[all...]
/freebsd-13-stable/contrib/ipfilter/l4check/
H A Dl4check.conf12 # If no probe string is specified, a successful connection implies the
15 probe string GET /\n\n
16 #probe file http.check
/freebsd-13-stable/sys/gdb/
H A Dgdb.h62 #define GDB_DBGPORT(name, probe, init, term, getc, putc) \
65 .gdb_probe = probe, \
/freebsd-13-stable/sys/dev/bhnd/bhndb/
H A Dbhndb_pci.c103 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 in struct:bhndb_pci_eio
159 * May be safely used during probe or early device attach, prior to calling
266 struct bhndb_pci_probe *probe; local
273 probe
361 struct bhndb_pci_probe *probe; local
804 bhndb_pci_srsh_pi_war(struct bhndb_pci_softc *sc, struct bhndb_pci_probe *probe) argument
1287 bhndb_pci_probe_alloc(struct bhndb_pci_probe **probe, device_t dev, bhnd_devclass_t hostb_devclass) argument
1407 bhndb_pci_probe_free(struct bhndb_pci_probe *probe) argument
1430 bhndb_pci_probe_copy_core_table(struct bhndb_pci_probe *probe, struct bhnd_core_info **cores, u_int *ncores) argument
1459 bhndb_pci_probe_has_mapping(struct bhndb_pci_probe *probe, bhnd_addr_t addr, bhnd_size_t size) argument
1499 bhndb_pci_probe_map(struct bhndb_pci_probe *probe, bhnd_addr_t addr, bhnd_size_t offset, bhnd_size_t size, struct resource **res, bus_size_t *res_offset) argument
1586 bhndb_pci_probe_write(struct bhndb_pci_probe *probe, bhnd_addr_t addr, bhnd_size_t offset, uint32_t value, u_int width) argument
1629 bhndb_pci_probe_read(struct bhndb_pci_probe *probe, bhnd_addr_t addr, bhnd_size_t offset, u_int width) argument
1667 bhndb_pci_eio_init(struct bhndb_pci_eio *pio, struct bhndb_pci_probe *probe) argument
[all...]
/freebsd-13-stable/sys/cddl/contrib/opensolaris/uts/common/dtrace/
H A Dfasttrap.c122 * of tracepoints to enable. If a probe is activated, it adds its ID to
185 * Each time a probe is created, fasttrap_total is incremented by the number
186 * of tracepoints that may be associated with that probe; fasttrap_total is capped
754 fasttrap_tracepoint_enable(proc_t *p, fasttrap_probe_t *probe, uint_t index) argument
762 ASSERT(index < probe->ftp_ntps);
764 pid = probe->ftp_pid;
765 pc = probe->ftp_tps[index].fit_tp->ftt_pc;
766 id = &probe->ftp_tps[index].fit_id;
768 ASSERT(probe->ftp_tps[index].fit_tp->ftt_pid == pid);
776 * on the generation in which this probe wa
938 fasttrap_tracepoint_disable(proc_t *p, fasttrap_probe_t *probe, uint_t index) argument
1151 fasttrap_probe_t *probe = parg; local
1285 fasttrap_probe_t *probe = parg; local
1357 fasttrap_probe_t *probe = parg; local
1397 fasttrap_probe_t *probe = parg; local
2248 fasttrap_probe_spec_t *probe; local
[all...]
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/
H A Dtst.providers.ksh110 printf("%s-provided probe\n", errstr);
123 printf("exit probe did not seem to fire\n");
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/
H A Dtst.temporal2.ksh51 * Use two enablings of the same probe, so that cpu 0 will always

Completed in 77 milliseconds

1234567