Searched refs:comm_str (Results 1 – 5 of 5) sorted by relevance
/linux/tools/perf/util/ |
A D | comm.c | 12 struct comm_str { struct 22 static struct comm_str *comm_str__get(struct comm_str *cs) in comm_str__get() argument 30 static void comm_str__put(struct comm_str *cs) in comm_str__put() 43 struct comm_str *cs; in comm_str__alloc() 65 struct comm_str *iter, *new; in __comm_str__findnew() 99 struct comm_str *cs; in comm_str__findnew() 119 if (!comm->comm_str) { in comm__new() 129 struct comm_str *new, *old = comm->comm_str; in comm__override() 136 comm->comm_str = new; in comm__override() 146 comm_str__put(comm->comm_str); in comm__free() [all …]
|
A D | comm.h | 9 struct comm_str; 12 struct comm_str *comm_str; member
|
A D | thread.c | 41 char *comm_str; in thread__new() local 56 comm_str = malloc(32); in thread__new() 57 if (!comm_str) in thread__new() 60 snprintf(comm_str, 32, ":%d", tid); in thread__new() 61 comm = comm__new(comm_str, 0, false); in thread__new() 62 free(comm_str); in thread__new()
|
/linux/tools/perf/scripts/python/ |
A D | export-to-postgresql.py | 991 def comm_table(comm_id, comm_str, thread_id, time, exec_flag, *x): argument 992 comm_str = toserverstr(comm_str) 993 n = len(comm_str) 995 value = struct.pack(fmt, 5, 8, comm_id, n, comm_str, 8, thread_id, 8, time, 1, exec_flag)
|
/linux/tools/perf/tests/ |
A D | dlfilter-test.c | 120 static int write_comm(int fd, pid_t pid, pid_t tid, const char *comm_str) in write_comm() argument 131 strncpy(comm.comm, comm_str, 16); in write_comm()
|
Completed in 12 milliseconds