Searched refs:probe_name (Results 1 – 12 of 12) sorted by relevance
/external/bcc/src/cc/usdt/ |
D | usdt.cc | 277 Probe *Context::get(const std::string &probe_name) { in get() argument 279 if (p->name_ == probe_name) in get() 286 const std::string &probe_name) { in get() argument 288 if (p->provider_ == provider_name && p->name_ == probe_name) in get() 294 bool Context::enable_probe(const std::string &probe_name, in enable_probe() argument 304 if (p->name_ == probe_name) { in enable_probe() 307 probe_name.c_str()); in enable_probe() 435 int bcc_usdt_enable_probe(void *usdt, const char *probe_name, in bcc_usdt_enable_probe() argument 438 return ctx->enable_probe(probe_name, fn_name) ? 0 : -1; in bcc_usdt_enable_probe() 476 void *ctx, const char* probe_name, const int arg_index in bcc_usdt_get_probe_argctype() argument [all …]
|
/external/bcc/src/cc/includes/ |
D | bcc_usdt.h | 65 const char *probe_name, 68 const char *probe_name, 75 void *ctx, const char* probe_name, const int arg_index
|
D | usdt.h | 271 Probe *get(const std::string &probe_name); 272 Probe *get(const std::string &provider_name, const std::string &probe_name); 275 bool enable_probe(const std::string &probe_name, const std::string &fn_name);
|
/external/bcc/src/cc/ |
D | bcc_usdt.h | 65 const char *probe_name, 68 const char *probe_name, 75 void *ctx, const char* probe_name, const int arg_index
|
D | usdt.h | 271 Probe *get(const std::string &probe_name); 272 Probe *get(const std::string &provider_name, const std::string &probe_name); 275 bool enable_probe(const std::string &probe_name, const std::string &fn_name);
|
/external/bcc/tools/ |
D | tplist.py | 90 probe_name = probe.short_name() 91 if not args.filter or fnmatch.fnmatch(probe_name, args.filter): 92 if probe_name in probes_seen: 94 probes_seen.append(probe_name)
|
D | trace.py | 63 self.probe_name = "probe_%s_%d" % \ 65 self.probe_name = re.sub(r'[^A-Za-z0-9_]', '_', 66 self.probe_name) 71 self.probe_name = "syscall__" + self.probe_name[6:] 346 self.events_name = "%s_events" % self.probe_name 347 self.struct_name = "%s_data_t" % self.probe_name 348 self.stacks_name = "%s_stacks" % self.probe_name 461 heading = "int %s(%s)" % (self.probe_name, signature) 590 fn_name=self.probe_name) 593 fn_name=self.probe_name) [all …]
|
D | funccount.py | 109 def _add_function(self, template, probe_name): argument 113 self.trace_functions[self.matched] = probe_name
|
/external/linux-kselftest/tools/testing/selftests/bpf/ |
D | get_cgroup_id_user.c | 50 const char *probe_name = "syscalls/sys_enter_nanosleep"; in main() local 93 "/sys/kernel/debug/tracing/events/%s/id", probe_name); in main()
|
D | test_progs.c | 1621 static void test_task_fd_query_tp_core(const char *probe_name, in test_task_fd_query_tp_core() argument 1638 "/sys/kernel/debug/tracing/events/%s/id", probe_name); in test_task_fd_query_tp_core()
|
/external/bcc/tools/lib/ |
D | uflow.py | 100 def enable_probe(probe_name, func_name, read_class, read_method, is_return): argument 115 usdt.enable_probe_or_bail(probe_name, func_name)
|
/external/bcc/src/python/bcc/ |
D | usdt.py | 176 def get_probe_arg_ctype(self, probe_name, arg_index): argument 178 self.context, probe_name.encode('ascii'), arg_index).decode()
|