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

12345678

/freebsd-11-stable/usr.sbin/ppp/
H A Dprobe.h28 * $FreeBSD: stable/11/usr.sbin/ppp/probe.h 330449 2018-03-05 07:26:05Z eadler $
31 struct probe { struct
38 extern struct probe probe;
H A Dprobe.c28 * $FreeBSD: stable/11/usr.sbin/ppp/probe.c 330449 2018-03-05 07:26:05Z eadler $
37 #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-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/json/
H A Dusdt.d21 probe log__trace(char *msg);
22 probe log__debug(char *msg);
23 probe log__info(char *msg);
24 probe log__warn(char *msg);
25 probe log__error(char *msg);
26 probe log__fatal(char *msg);
/freebsd-11-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"
/freebsd-11-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-11-stable/sys/netinet/
H A Din_kdtrace.h31 #define IP_PROBE(probe, arg0, arg1, arg2, arg3, arg4, arg5) \
32 SDT_PROBE6(ip, , , probe, arg0, arg1, arg2, arg3, arg4, arg5)
33 #define UDP_PROBE(probe, arg0, arg1, arg2, arg3, arg4) \
34 SDT_PROBE5(udp, , , probe, arg0, arg1, arg2, arg3, arg4)
35 #define TCP_PROBE1(probe, arg0) \
36 SDT_PROBE1(tcp, , , probe, arg0)
37 #define TCP_PROBE2(probe, arg0, arg1) \
38 SDT_PROBE2(tcp, , , probe, arg0, arg1)
39 #define TCP_PROBE3(probe, arg0, arg1, arg2) \
40 SDT_PROBE3(tcp, , , probe, arg
[all...]
/freebsd-11-stable/sys/sys/
H A Dlockstat.h75 #define LOCKSTAT_RECORD0(probe, lp) \
76 SDT_PROBE1(lockstat, , , probe, lp)
78 #define LOCKSTAT_RECORD1(probe, lp, arg1) \
79 SDT_PROBE2(lockstat, , , probe, lp, arg1)
81 #define LOCKSTAT_RECORD2(probe, lp, arg1, arg2) \
82 SDT_PROBE3(lockstat, , , probe, lp, arg1, arg2)
84 #define LOCKSTAT_RECORD3(probe, lp, arg1, arg2, arg3) \
85 SDT_PROBE4(lockstat, , , probe, lp, arg1, arg2, arg3)
87 #define LOCKSTAT_RECORD4(probe, lp, arg1, arg2, arg3, arg4) \
88 SDT_PROBE5(lockstat, , , probe, l
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzpool/common/
H A Dzfs.d21 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-11-stable/sys/cddl/dev/sdt/
H A Dsdt.c136 sdt_create_probe(struct sdt_probe *probe) argument
146 if (probe->version != (int)sizeof(*probe)) {
147 printf("ignoring probe %p, version %u expected %u\n",
148 probe, probe->version, (int)sizeof(*probe));
153 if (strcmp(prov->name, probe->prov->name) == 0)
156 KASSERT(prov != NULL, ("probe defined without a provider"));
159 if (*probe
207 struct sdt_probe *probe = parg; local
221 struct sdt_probe *probe = parg; local
238 struct sdt_probe *probe = parg; local
278 struct sdt_probe **probe, **p_begin, **p_end; local
[all...]
/freebsd-11-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-11-stable/sys/gdb/
H A Dgdb.h49 #define GDB_DBGPORT(name, probe, init, term, getc, putc) \
52 .gdb_probe = probe, \
/freebsd-11-stable/usr.sbin/rtsold/
H A DMakefile20 SRCS= rtsold.c rtsol.c if.c probe.c dump.c rtsock.c
/freebsd-11-stable/sbin/rtsol/
H A DMakefile21 SRCS= rtsold.c rtsol.c if.c probe.c dump.c rtsock.c
/freebsd-11-stable/contrib/gperf/src/
H A Dhash-table.cc147 unsigned int probe = hash_val & (_size - 1); local
156 while (_table[probe] != NULL)
158 if (equal (_table[probe], item))
159 return _table[probe];
162 probe = (probe + increment) & (_size - 1);
165 _table[probe] = item;
/freebsd-11-stable/contrib/gcc/config/i386/
H A Duwin.asm13 probe: cmpl $0x1000,%eax /* > 4k ?*/ label
17 orl $0x0,(%ecx) /* probe there */
19 jmp probe /* and do it again */
/freebsd-11-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-11-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 182 milliseconds

12345678