Searched refs:ofs (Results 1 – 5 of 5) sorted by relevance
33 std::ofstream ofs(file_path_); in WriteFile() local35 ofs << "<odrefresh_metrics>"; in WriteFile()36 ofs << metrics_version_; in WriteFile()37 ofs << "<art_apex_version>81966764218039518</art_apex_version>"; in WriteFile()38 ofs << "<trigger>16909060</trigger>"; in WriteFile()39 ofs << "<stage_reached>286397204</stage_reached>"; in WriteFile()40 ofs << status_; in WriteFile()41 ofs << "<cache_space_free_start_mib>1633837924</cache_space_free_start_mib>"; in WriteFile()42 ofs << "<cache_space_free_end_mib>1903326068</cache_space_free_end_mib>"; in WriteFile()43 ofs << "<primary_bcp_compilation_millis>825373492</primary_bcp_compilation_millis>"; in WriteFile()[all …]
124 std::ofstream ofs(log_path_, std::ofstream::trunc); in Write() local125 if (!ofs.good()) { in Write()129 ofs << kLogVersion << std::endl; in Write()131 ofs << entry; in Write()132 if (ofs.fail()) { in Write()
743 std::ofstream ofs(path.c_str(), std::ofstream::out | std::ofstream::binary); in WriteTo() local744 ofs.write(reinterpret_cast<const char*>(output.data()), output.size()); in WriteTo()745 ofs.flush(); in WriteTo()746 CHECK(ofs.good()); in WriteTo()747 ofs.close(); in WriteTo()
135 std::ofstream ofs(file.GetFilename(), std::ofstream::out); in OpenStream() local136 if (ofs.fail()) { in OpenStream()140 return ofs; in OpenStream()
1679 std::ofstream ofs(scratch_path_ + "/foo.jar"); in TEST_F() local1680 ASSERT_TRUE(ofs); in TEST_F()