Lines Matching defs:filt
1306 struct process_filter *filt = malloc(sizeof(*filt));
1308 if (!filt)
1311 filt->name = strdup(string);
1312 filt->pid = pid;
1313 filt->next = process_filter;
1315 process_filter = filt;
1320 struct process_filter *filt;
1324 filt = process_filter;
1325 while (filt) {
1326 if (filt->pid && p->pid == filt->pid)
1328 if (strcmp(filt->name, c->comm) == 0)
1330 filt = filt->next;