Searched refs:bpf_get_current_comm (Results 1 – 7 of 7) sorted by relevance
122 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()
35 tool's code to include bpf_get_current_comm() in the key structs, so that it's
24 - [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));
272 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.
40 static int (*bpf_get_current_comm)(void *buf, int buf_size) = variable
180 bpf_get_current_comm(&(key.comm), 16);
137 * `comm(var)` - write current process name (uses `bpf_get_current_comm`)