| /src/sys/kern/ |
| kern_sdt.c | 84 * Hook for the DTrace probe function. The 'sdt' provider will set this 90 * This is a stub for probe calls in case kernel DTrace support isn't 99 struct sdt_probe * const * probe; local 106 __link_set_foreach(probe, sdt_probes_set) 107 printf("%s ", (*probe)->name); 115 * initialize the SDT dtrace probe function 125 * Disable the SDT dtrace probe function
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| probe.h | 1 /* Generic SDT probe support for GDB. 43 These methods do not go into the 'class probe' because they do not 44 act on a single probe; instead, they are used to operate on many 45 probes at once, or to provide information about the probe backend 46 itself, instead of a single probe. 48 Each probe backend needs to inherit this class and implement all of 51 ALL_STATIC_PROBE_OPS vector so that the frontend probe interface 52 can use it in the generic probe functions. */ 58 for a probe breakpoint. It should return true if it is, or false 61 example, if the option is `-probe', and the LINESPECP is `-prob 114 class probe class 118 probe (std::string &&name_, std::string &&provider_, CORE_ADDR address_, function in class:probe [all...] |
| break-catch-throw.c | 32 #include "probe.h" 41 two names: the SDT probe point and the function name. This 46 /* The name of the probe point to try, in the form accepted by 49 const char *probe; member in struct:exception_names 56 /* Names of the probe points and functions on which to break. This is 60 { "-probe-stap libstdcxx:throw", "__cxa_throw" }, 61 { "-probe-stap libstdcxx:rethrow", "__cxa_rethrow" }, 62 { "-probe-stap libstdcxx:catch", "__cxa_begin_catch" } 122 /* A helper function that fetches exception probe arguments. This 136 error (_("did not find exception probe (does libstdcxx have SDT probes?)")) [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| probe.h | 1 /* Generic SDT probe support for GDB. 43 These methods do not go into the 'class probe' because they do not 44 act on a single probe; instead, they are used to operate on many 45 probes at once, or to provide information about the probe backend 46 itself, instead of a single probe. 48 Each probe backend needs to inherit this class and implement all of 51 ALL_STATIC_PROBE_OPS vector so that the frontend probe interface 52 can use it in the generic probe functions. */ 58 for a probe breakpoint. It should return true if it is, or false 61 example, if the option is `-probe', and the LINESPECP is `-prob 114 class probe class 118 probe (std::string &&name_, std::string &&provider_, CORE_ADDR address_, function in class:probe [all...] |
| break-catch-throw.c | 29 #include "probe.h" 37 two names: the SDT probe point and the function name. This 42 /* The name of the probe point to try, in the form accepted by 45 const char *probe; member in struct:exception_names 52 /* Names of the probe points and functions on which to break. This is 56 { "-probe-stap libstdcxx:throw", "__cxa_throw" }, 57 { "-probe-stap libstdcxx:rethrow", "__cxa_rethrow" }, 58 { "-probe-stap libstdcxx:catch", "__cxa_begin_catch" } 118 /* A helper function that fetches exception probe arguments. This 132 error (_("did not find exception probe (does libstdcxx have SDT probes?)")) [all...] |
| /src/external/gpl3/gdb/dist/gnulib/import/ |
| alloca.c | 134 auto char probe; /* Probes stack depth: */ local 135 register char *depth = &probe;
|
| /src/external/gpl3/gdb.old/dist/gnulib/import/ |
| alloca.c | 134 auto char probe; /* Probes stack depth: */ local 135 register char *depth = &probe;
|
| /src/external/cddl/osnet/dev/lockstat/ |
| lockstat.c | 72 lockstat_probe_t *probe = parg; local 74 ASSERT(!lockstat_probemap[LS_COMPRESS(probe->lsp_probe)]); 81 atomic_store_relaxed(&lockstat_probemap[LS_COMPRESS(probe->lsp_probe)], 91 lockstat_probe_t *probe = parg; local 93 ASSERT(lockstat_probemap[LS_COMPRESS(probe->lsp_probe)]); 95 atomic_store_relaxed(&lockstat_probemap[LS_COMPRESS(probe->lsp_probe)], 103 * Wait for all lockstat dtrace probe on all CPUs to 117 lockstat_probe_t *probe = &lockstat_probes[i]; local 120 __UNCONST(probe->lsp_func), __UNCONST(probe->lsp_name) 135 lockstat_probe_t *probe = parg; local [all...] |
| /src/sys/dev/ic/ |
| tpmvar.h | 72 int (*probe)(bus_space_tag_t, bus_space_handle_t); member in struct:tpm_intf
|
| /src/external/bsd/unbound/dist/validator/ |
| autotrust.h | 93 /** rbtree node for probe sort, key is struct trust_anchor */ 107 /** next probe time */ 128 /** rbtree of autotrust anchors sorted by next probe time. 130 rbtree_type probe; member in struct:autr_global_data 153 * Process probe timer. Add new probes if needed. 155 * @return time of next probe (in seconds from now). 156 * If 0, then there is no next probe anymore (trust points deleted). 160 /** probe tree compare function */ 207 /** callback for query answer to 5011 probe */
|
| /src/external/cddl/osnet/dist/lib/libdtrace/common/ |
| dt_map.c | 117 dtrace_probedesc_t *probe; local 196 if ((probe = malloc(sizeof (dtrace_probedesc_t))) == NULL) { 201 probe->dtpd_id = enabled->dtepd_probeid; 203 if (dt_ioctl(dtp, DTRACEIOC_PROBES, probe) == -1) { 228 dtp->dt_pdesc[id] = probe; 241 free(probe);
|
| /src/external/cddl/osnet/dist/uts/powerpc/dtrace/ |
| fasttrap_isa.c | 94 * Decode the instruction to fill in the probe flags. We can have 172 * it's used as part of a function return probe, we need to indicate 174 * site. If it's part of a return probe, it's always going to be a 238 fasttrap_usdt_args(fasttrap_probe_t *probe, struct reg *rp, int argc, 241 int i, x, cap = MIN(argc, probe->ftp_nargs); 244 x = probe->ftp_argmap[i]; 346 * return probe fasttrap. In this case we need to kill the process 391 fasttrap_probe_t *probe = id->fti_probe; local 396 * probe to help ustack() find the 401 dtrace_probe(probe->ftp_id, rp->fixreg[3] [all...] |
| /src/external/gpl3/gcc/dist/gcc/cp/ |
| friend.cc | 450 tree probe = TREE_VALUE (classes); local 454 if (friend_type == probe) 458 "%qD is already a friend of %qT", probe, type); 462 else if (TREE_CODE (probe) != TEMPLATE_DECL) 464 if (same_type_p (probe, friend_type)) 468 "%qT is already a friend of %qT", probe, type);
|
| /src/external/gpl3/gcc/dist/libgcc/ |
| libgcov-driver-system.c | 274 const char *probe = fname; local 278 if (IS_DIR_SEPARATOR (*probe)) 279 probe++; 283 for (level = gf->strip; *probe && level; probe++) 284 if (IS_DIR_SEPARATOR (*probe)) 286 fname = probe;
|
| /src/external/gpl3/gcc.old/dist/gcc/cp/ |
| friend.cc | 448 tree probe = TREE_VALUE (classes); local 452 if (friend_type == probe) 456 "%qD is already a friend of %qT", probe, type); 460 else if (TREE_CODE (probe) != TEMPLATE_DECL) 462 if (same_type_p (probe, friend_type)) 466 "%qT is already a friend of %qT", probe, type);
|
| /src/external/gpl3/gcc.old/dist/libgcc/ |
| libgcov-driver-system.c | 273 const char *probe = fname; local 277 if (IS_DIR_SEPARATOR (*probe)) 278 probe++; 282 for (level = gf->strip; *probe && level; probe++) 283 if (IS_DIR_SEPARATOR (*probe)) 285 fname = probe;
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| known_tcp_ports.c | 154 struct probe { struct 164 struct probe probes[10]; 172 /* probe */ {{"smtp", "25"}, {"1", "1"}, {"x", "x"}, {"lmtp", "24"}, 0} 190 /* probe */ {{"smtp", "smtp"}, {"1", "1"}, {"x", "x"}, 0} 200 struct probe *pp;
|
| /src/sys/arch/hpcmips/vr/ |
| vrc4172pwm.c | 89 1, /* probe broken */ 101 1, /* probe broken */ 151 int probe = 0; local 153 int probe = 1; local 172 probe = 0; 174 if (probe) {
|
| /src/sys/external/bsd/drm2/include/linux/ |
| i2c.h | 163 int (*probe)(struct i2c_client *, const struct i2c_device_id *); member in struct:i2c_driver
|
| /src/sys/sys/ |
| sdt.h | 470 struct sdt_probe *probe; /* Ptr to the probe structure. */ member in struct:sdt_argtype 477 probe_entry; /* SDT probe list entry. */ 482 id_t id; /* DTrace probe ID. */
|
| /src/external/cddl/osnet/dev/dtrace/ |
| dtrace_ioctl.c | 610 dtrace_probe_t *probe; local 636 if ((probe = dtrace_probes[desc->dtargd_id - 1]) == NULL) { 647 prov = probe->dtpr_provider; 651 * There isn't any typed information for this probe. 661 probe->dtpr_id, probe->dtpr_arg, desc); 674 dtrace_probe_t *probe = NULL; local 692 * Before we attempt to match this probe, we want to give 713 if ((probe = dtrace_probes[i - 1]) != NULL && 714 (m = dtrace_match_probe(probe, &pkey [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| gcov-io.cc | 467 const char *probe; local 480 for (; *base; base = probe) 484 for (probe = base; *probe; probe++) 485 if (*probe == '/') 487 len = probe - base; 495 if (*probe) 498 probe++;
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| gcov-io.cc | 432 const char *probe; local 445 for (; *base; base = probe) 449 for (probe = base; *probe; probe++) 450 if (*probe == '/') 452 len = probe - base; 460 if (*probe) 463 probe++;
|
| /src/external/zlib/pigz/dist/ |
| yarn.c | 198 /* structure in which to pass the probe and its payload to ignition() */ 200 void (*probe)(void *); member in struct:capsule 248 capsule->probe(capsule->payload); 260 thread *launch(void (*probe)(void *), void *payload) 272 capsule->probe = probe;
|
| /src/external/bsd/jemalloc/dist/test/stress/pa/ |
| pa_data_preprocessor.cpp | 16 * HPA: shard_ind_int,addr_int,nsecs_int,probe,size_int 36 std::string probe; member in struct:TraceEvent 110 is_alloc_operation(const std::string &probe) { 111 return (probe == "hpa_alloc" || probe == "sec_alloc"); 115 is_dalloc_operation(const std::string &probe) { 116 return (probe == "hpa_dalloc" || probe == "sec_dalloc"); 142 /* Parse probe */ 146 event.probe = token [all...] |