HomeSort by: relevance | last modified time | path
    Searched defs:regmatch (Results 1 - 8 of 8) sorted by relevancy

  /src/usr.bin/pkill/
pkill.c 129 regmatch_t regmatch; local
335 rv = regexec(&reg, buf, 1, &regmatch, 0);
338 if (regmatch.rm_so == 0 &&
339 regmatch.rm_eo ==
pkill.c 129 regmatch_t regmatch; local
335 rv = regexec(&reg, buf, 1, &regmatch, 0);
338 if (regmatch.rm_so == 0 &&
339 regmatch.rm_eo ==
  /src/lib/libcompat/regexp/
regexp.c 782 STATIC int regmatch __P((char *));
879 if (regmatch((char *)prog->program + 1)) { /* XXX */
890 - regmatch - main matching routine
900 regmatch(prog) function
992 if (regmatch(next)) {
1019 if (regmatch(next)) {
1039 if (regmatch(OPERAND(scan)))
1069 if (regmatch(next))
regexp.c 782 STATIC int regmatch __P((char *));
879 if (regmatch((char *)prog->program + 1)) { /* XXX */
890 - regmatch - main matching routine
900 regmatch(prog) function
992 if (regmatch(next)) {
1019 if (regmatch(next)) {
1039 if (regmatch(OPERAND(scan)))
1069 if (regmatch(next))
  /src/external/bsd/less/dist/
regexp.c 715 STATIC int regmatch();
819 if (regmatch(prog->program + 1)) {
828 - regmatch - main matching routine
838 regmatch(prog) function
913 if (regmatch(next)) {
942 if (regmatch(next)) {
964 if (regmatch(OPERAND(scan)))
995 if (regmatch(next))
regexp.c 715 STATIC int regmatch();
819 if (regmatch(prog->program + 1)) {
828 - regmatch - main matching routine
838 regmatch(prog) function
913 if (regmatch(next)) {
942 if (regmatch(next)) {
964 if (regmatch(OPERAND(scan)))
995 if (regmatch(next))
  /src/external/bsd/tmux/dist/
window-copy.c 3364 regmatch_t regmatch; local
3396 if (regexec(reg, buf, 1, &regmatch, eflags) == 0 &&
3397 regmatch.rm_so != regmatch.rm_eo) {
3401 buf + regmatch.rm_so);
3406 buf + regmatch.rm_eo);
3520 regmatch_t regmatch; local
3525 while (regexec(preg, buf + px, 1, &regmatch, eflags) == 0) {
3526 if (regmatch.rm_so == regmatch.rm_eo
    [all...]
window-copy.c 3364 regmatch_t regmatch; local
3396 if (regexec(reg, buf, 1, &regmatch, eflags) == 0 &&
3397 regmatch.rm_so != regmatch.rm_eo) {
3401 buf + regmatch.rm_so);
3406 buf + regmatch.rm_eo);
3520 regmatch_t regmatch; local
3525 while (regexec(preg, buf + px, 1, &regmatch, eflags) == 0) {
3526 if (regmatch.rm_so == regmatch.rm_eo
    [all...]

Completed in 58 milliseconds