Home
last modified time | relevance | path

Searched refs:probe_name (Results 1 – 12 of 12) sorted by relevance

/external/bcc/src/cc/usdt/
Dusdt.cc277 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/
Dbcc_usdt.h65 const char *probe_name,
68 const char *probe_name,
75 void *ctx, const char* probe_name, const int arg_index
Dusdt.h271 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/
Dbcc_usdt.h65 const char *probe_name,
68 const char *probe_name,
75 void *ctx, const char* probe_name, const int arg_index
Dusdt.h271 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/
Dtplist.py90 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)
Dtrace.py63 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 …]
Dfunccount.py109 def _add_function(self, template, probe_name): argument
113 self.trace_functions[self.matched] = probe_name
/external/linux-kselftest/tools/testing/selftests/bpf/
Dget_cgroup_id_user.c50 const char *probe_name = "syscalls/sys_enter_nanosleep"; in main() local
93 "/sys/kernel/debug/tracing/events/%s/id", probe_name); in main()
Dtest_progs.c1621 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/
Duflow.py100 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/
Dusdt.py176 def get_probe_arg_ctype(self, probe_name, arg_index): argument
178 self.context, probe_name.encode('ascii'), arg_index).decode()