Home
last modified time | relevance | path

Searched refs:uprobe (Results 1 – 10 of 10) sorted by relevance

/external/iproute2/ip/
Dipntable.c220 __u32 uprobe; in ipntable_modify() local
224 if (get_u32(&uprobe, *argv, 0)) in ipntable_modify()
228 NDTPA_UCAST_PROBES, uprobe); in ipntable_modify()
526 __u32 uprobe = rta_getattr_u32(tpb[NDTPA_UCAST_PROBES]); in print_ntable() local
528 fprintf(fp, "ucast_probes %u ", uprobe); in print_ntable()
/external/bcc/tools/
Dbpflist_example.txt28 4106 bashreadline uprobe 1
48 4106 bashreadline uprobe 1
Ddeadlock_detector_example.txt250 ("uprobe: Find last occurrence of ':' when parsing uprobe PATH:OFFSET",
/external/bcc/examples/lua/
Duprobe-readline.lua24 local probe = bpf.uprobe('/bin/bash:readline', function (ptregs)
Duprobe-readline-perf.lua27 local probe = bpf.uprobe('/bin/bash:readline', function (ptregs)
Duprobe-tailkt.lua42 local probe = bpf.uprobe('/usr/local/bin/ktserver:kyotocabinet::StashDB::accept',
/external/bcc/docs/
Dtutorial.md366 …ssues/1231) and [1516](https://github.com/iovisor/bcc/issues/1516) where uprobe does not work at a…
375 The `perf_event_open` syscall returns `-EIO`. Digging into kernel uprobe related codes in `/kernel/…
408 …s` (e.g., `ext4_da_aops`), and `ext4_da_aops` defines `readpage`. Hence, uprobe works fine on ext4…
Dreference_guide.md183 These are instrumented by declaring a normal function in C, then associating it as a uprobe probe i…
/external/bcc/src/lua/
DREADME.md89 bpf.uprobe('/bin/bash:readline' function (ptregs)
/external/bcc/src/lua/bpf/
Dbpf.lua1605 uprobe = function(tp, prog, retprobe, pid, cpu, group_fd) function