Lines Matching full:filt
1314 struct process_filter *filt = malloc(sizeof(*filt));
1316 if (!filt)
1319 filt->name = strdup(string);
1320 filt->pid = pid;
1321 filt->next = process_filter;
1323 process_filter = filt;
1328 struct process_filter *filt;
1332 filt = process_filter;
1333 while (filt) {
1334 if (filt->pid && p->pid == filt->pid)
1336 if (strcmp(filt->name, c->comm) == 0)
1338 filt = filt->next;