Home
last modified time | relevance | path

Searched refs:ReadStreamToString (Results 1 – 4 of 4) sorted by relevance

/external/cronet/base/files/
Dfile_util.h257 BASE_EXPORT bool ReadStreamToString(FILE* stream, std::string* contents);
Dfile_util.cc300 bool ReadStreamToString(FILE* stream, std::string* contents) { in ReadStreamToString() function
Dfile_util_unittest.cc3918 TEST_F(FileUtilTest, ReadStreamToString) { in TEST_F() argument
3928 EXPECT_TRUE(ReadStreamToString(stream.get(), &contents)); in TEST_F()
3959 EXPECT_TRUE(ReadStreamToString(read_file.get(), &contents)); in TEST_F()
3980 EXPECT_FALSE(ReadStreamToString(nullptr, &contents)); in TEST_F()
/external/cronet/base/test/launcher/
Dtest_launcher.cc741 CHECK(ReadStreamToString(output_file.get(), &result.output_file_contents) || in DoLaunchChildTestProcess()