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

Lines Matching full:filt

835 	struct process_filter *filt;
839 filt = malloc(sizeof(struct process_filter));
840 if (!filt)
843 filt->name = strdup(string);
844 filt->pid = pid;
845 filt->next = process_filter;
847 process_filter = filt;
852 struct process_filter *filt;
856 filt = process_filter;
857 while (filt) {
858 if (filt->pid && p->pid == filt->pid)
860 if (strcmp(filt->name, c->comm) == 0)
862 filt = filt->next;