Home | History | Annotate | Download | only in perf

Lines Matching defs:comm

66  * Each "pid" entry, has a list of "comm"s.
69 * Each comm has a list of samples that will be used to draw
102 char *comm;
179 static void pid_set_comm(int pid, char *comm)
186 if (c->comm && strcmp(c->comm, comm) == 0) {
190 if (!c->comm) {
191 c->comm = strdup(comm);
199 c->comm = strdup(comm);
211 if (pp->current && pp->current->comm && !p->current)
212 pid_set_comm(pid, pp->current->comm);
279 pid_set_comm(event->comm.tid, event->comm.comm);
328 char comm[TASK_COMM_LEN];
706 task_from = strdup(c->comm);
710 task_to = strdup(c->comm);
719 task_from = strdup(c->comm);
723 task_to = strdup(c->comm);
765 svg_process(sample->cpu, sample->start_time, sample->end_time, "sample", c->comm);
806 if (c->comm) {
807 char comm[256];
809 sprintf(comm, "%s:%i (%2.2fs)", c->comm, p->pid, c->total_time / 1000000000.0);
811 sprintf(comm, "%s:%i (%3.1fms)", c->comm, p->pid, c->total_time / 1000000.0);
813 svg_text(Y, c->start_time, comm);
848 if (strcmp(filt->name, c->comm) == 0)
976 .comm = process_comm_event,