Home | History | Annotate | Download | only in src

Lines Matching refs:flagfile

301     flagfile,
302 internal::StringFromGTestEnv("flagfile", ""),
303 "This flag specifies the flagfile to read command-line flags from.");
5252 FILE* flagfile = posix::FOpen(path.c_str(), "r");
5253 if (!flagfile) {
5256 GTEST_FLAG(flagfile).c_str());
5260 std::string contents(ReadEntireFile(flagfile));
5261 posix::FClose(flagfile);
5290 } else if (ParseStringFlag(arg, kFlagfileFlag, &GTEST_FLAG(flagfile))) {
5291 LoadFlagsFromFile(GTEST_FLAG(flagfile));