Home
last modified time | relevance | path

Searched refs:src_stream (Results 1 – 6 of 6) sorted by relevance

/aosp12/art/runtime/
H A Ddex2oat_environment_test.h138 std::ifstream src_stream(src, std::ios::binary); in Copy()
141 dst_stream << src_stream.rdbuf(); in Copy()
H A Dhidden_api_test.cc46 std::ifstream src_stream(src, std::ios::binary); in Copy() local
48 dst_stream << src_stream.rdbuf(); in Copy()
49 src_stream.close(); in Copy()
51 if (src_stream.good() && dst_stream.good()) { in Copy()
55 + (src_stream.good() ? "true" : "false") + ", dst_good=" in Copy()
/aosp12/system/update_engine/payload_consumer/
H A Dpartition_writer.cc518 puffin::UniqueStreamPtr src_stream(new PuffinExtentStream( in PerformPuffDiffOperation() local
530 puffin::PuffPatch(std::move(src_stream), in PerformPuffDiffOperation()
/aosp12/system/core/fs_mgr/libsnapshot/
H A Dmake_cow_from_ab_ota.cpp385 auto src_stream = std::make_unique<PuffInputStream>(src.get(), src_length); in ProcessDiff() local
387 bool ok = PuffPatch(std::move(src_stream), std::move(dest_stream), patch.get(), in ProcessDiff()
/aosp12/art/dex2oat/
H A Ddex2oat_image_test.cc138 std::ifstream src_stream(dex_file, std::ios::binary); in CopyDexFiles() local
140 dst_stream << src_stream.rdbuf(); in CopyDexFiles()
/aosp12/system/apex/apexd/
H A Dapexservice_test.cpp389 std::ifstream src_stream(src, std::ios::binary); in Prepare() local
390 ASSERT_TRUE(src_stream.good()); in Prepare()
394 trg_stream << src_stream.rdbuf(); in Prepare()