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

  /src/share/examples/refuse/dmesgfs/
dmesgfs.c 256 regmatch_t matchv[10]; local in function:build_tree
279 if (regexec(&r, buf, 10, matchv, 0) == 0) {
280 add_dev(&buf[matchv[1].rm_so],
281 matchv[1].rm_eo - matchv[1].rm_so,
282 &buf[matchv[2].rm_so],
283 matchv[2].rm_eo - matchv[2].rm_so,
285 matchv[0].rm_eo - matchv[0].rm_so)
    [all...]
  /src/usr.sbin/user/
user.c 953 regmatch_t matchv[10]; local in function:valid_password_length
963 if (regexec(&r, newpasswd, 10, matchv, 0) == 0) {
966 (int)(matchv[pwtp->re_sub].rm_eo -
967 matchv[pwtp->re_sub].rm_so) ==
1306 regmatch_t matchv[10]; local in function:rm_user_from_groups
1353 if (regexec(&r, buf, 10, matchv, 0) == 0) {
1354 if (buf[(int)matchv[1].rm_so] == ',') {
1355 matchv[2].rm_so = matchv[1].rm_so;
1356 } else if (matchv[2].rm_eo != matchv[3].rm_eo)
    [all...]

Completed in 12 milliseconds