Lines Matching defs:match
155 -n Newest match only
156 -o Oldest match only
162 -v Negate the match
176 -n Newest match only
177 -o Oldest match only
183 -v Negate the match
206 pid_t self, match;
459 // process match filter for top/ps/pgrep: Return 0 to discard, nonzero to keep
462 struct ptr_len match[] = {
471 for (i = 0; i < ARRAY_LEN(match); i++) {
472 struct ptr_len *mm = match[i].ptr;
476 for (j = 0; j<mm->len; j++) if (ll[j] == slot[match[i].len]) return 1;
483 // process match filter for ps: Return 0 to discard, nonzero to keep
489 // If we had selections and didn't match them, don't display
745 // Name has (parentheses) around it, and can have embedded ')' so match
1844 regmatch_t match;
1848 // Never match ourselves.
1853 if (regexec(®->reg, name, 1, &match, 0)) continue;
1855 if (match.rm_so || match.rm_eo!=strlen(name)) continue;
1861 // pgrep should return success if there's a match.