Home | History | Annotate | Download | only in testdata

Lines Matching refs:eret

1140 	int	eret;
1145 eret = 0;
1147 else if (!(eret = setjmp(state.gotcha)))
1158 error(preg, eret);
1160 return eret;
1226 int eret;
2127 eret = regnexec(&preg, s, nexec, nmatch, match, eflags);
2134 eret = regexec(&preg, s, nmatch, match, eflags);
2135 else if (!(eret = setjmp(state.gotcha)))
2138 eret = regexec(&preg, s, nmatch, match, eflags);
2143 if ((test & TEST_SUB) && !eret)
2147 eret = regsubexec(&preg, s, nmatch, match);
2148 else if (!(eret = setjmp(state.gotcha)))
2151 eret = regsubexec(&preg, s, nmatch, match);
2158 if (eret)
2160 if (eret != REG_NOMATCH || !streq(ans, "NOMATCH"))
2167 error(&preg, eret);
2178 error(&preg, eret);
2182 else if (eret)
2184 if (eret != REG_NOMATCH || !streq(ans, "NOMATCH"))
2191 if (eret != REG_NOMATCH)
2192 error(&preg, eret);