Home
last modified time | relevance | path

Searched refs:dst_stream (Results 1 – 3 of 3) sorted by relevance

/art/runtime/
Ddex2oat_environment_test.h135 std::ofstream dst_stream(dst, std::ios::binary); in Copy()
137 dst_stream << src_stream.rdbuf(); in Copy()
Dhidden_api_test.cc468 std::ofstream dst_stream(dst, std::ios::binary); in Copy() local
469 dst_stream << src_stream.rdbuf(); in Copy()
471 dst_stream.close(); in Copy()
472 if (src_stream.good() && dst_stream.good()) { in Copy()
477 + (dst_stream.good() ? "true" : "false") + ")"; in Copy()
/art/dex2oat/
Ddex2oat_image_test.cc139 std::ofstream dst_stream(new_location, std::ios::binary); in CopyDexFiles() local
140 dst_stream << src_stream.rdbuf(); in CopyDexFiles()