Home
last modified time | relevance | path

Searched refs:bpf_get_current_comm (Results 1 – 7 of 7) sorted by relevance

/external/bcc/tools/
Ddeadlock_detector.c122 bpf_get_current_comm(&edge_leaf.comm, sizeof(edge_leaf.comm)); in trace_mutex_acquire()
194 bpf_get_current_comm(&thread_created_leaf.comm, in trace_clone()
Dtcptop_example.txt35 tool's code to include bpf_get_current_comm() in the key structs, so that it's
/external/bcc/docs/
Dreference_guide.md24 - [6. bpf_get_current_comm()](#6-bpf_get_current_comm)
342 ### 6. bpf_get_current_comm()
344 Syntax: ```bpf_get_current_comm(char *buf, int size_of_buf)```
355 bpf_get_current_comm(&comm, sizeof(comm));
360 [search /examples](https://github.com/iovisor/bcc/search?q=bpf_get_current_comm+path%3Aexamples&typ…
361 [search /tools](https://github.com/iovisor/bcc/search?q=bpf_get_current_comm+path%3Atools&type=Code)
467 bpf_get_current_comm(&data.comm, sizeof(data.comm));
Dtutorial_bcc_python_developer.md272 bpf_get_current_comm(&data.comm, sizeof(data.comm));
317 1. ```bpf_get_current_comm()```: Populates the first argument address with the current process name.
/external/linux-kselftest/tools/testing/selftests/bpf/
Dbpf_helpers.h40 static int (*bpf_get_current_comm)(void *buf, int buf_size) = variable
/external/adeb/
DBCC.md180 bpf_get_current_comm(&(key.comm), 16);
/external/bcc/src/lua/
DREADME.md137 * `comm(var)` - write current process name (uses `bpf_get_current_comm`)