Lines Matching refs:status
275 int status = regexec(®, buf, nmatch, pmatch, 0);
276 EXPECT_EQ(status, 0) << "extended flag error !";
277 if (status == REG_NOMATCH) {
279 } else if (status == 0) {
338 int status = regexec(®, buf, (size_t)0, nullptr, 0);
339 EXPECT_EQ(status, 0) << "nosub flag error !";
352 int status = regcomp(®, pattern2, REG_EXTENDED);
354 size_t len = regerror(status, nullptr, emsg, sizeof(emsg));
358 LOG("status = %d; ErrMsg: %s", status, emsg);
373 int status = regexec(®, buf, (size_t) 0, nullptr, 0);
375 size_t len = regerror(status, ®, emsg, sizeof(emsg));