Home | History | Annotate | Download | only in linux-tools-perf

Lines Matching defs:comm

72  * Each "pid" entry, has a list of "comm"s.
75 * Each comm has a list of samples that will be used to draw
108 char *comm;
186 static void pid_set_comm(int pid, char *comm)
193 if (c->comm && strcmp(c->comm, comm) == 0) {
197 if (!c->comm) {
198 c->comm = strdup(comm);
207 c->comm = strdup(comm);
219 if (pp->current && pp->current->comm && !p->current)
220 pid_set_comm(pid, pp->current->comm);
288 pid_set_comm(event->comm.tid, event->comm.comm);
335 char comm[TASK_COMM_LEN];
716 task_from = strdup(c->comm);
720 task_to = strdup(c->comm);
729 task_from = strdup(c->comm);
733 task_to = strdup(c->comm);
775 svg_process(sample->cpu, sample->start_time, sample->end_time, "sample", c->comm);
816 if (c->comm) {
817 char comm[256];
819 sprintf(comm, "%s:%i (%2.2fs)", c->comm, p->pid, c->total_time / 1000000000.0);
821 sprintf(comm, "%s:%i (%3.1fms)", c->comm, p->pid, c->total_time / 1000000.0);
823 svg_text(Y, c->start_time, comm);
860 if (strcmp(filt->name, c->comm) == 0)
986 .comm = process_comm_event,