Searched defs:dex_bytes (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Ddex_file_verifier_test.cc130 std::unique_ptr<uint8_t[]> dex_bytes = DecodeBase64(dex_file_base64_content, &length); local
131 CHECK(dex_bytes != nullptr);
132 // Note: `dex_file` will be destroyed before `dex_bytes`.
134 new DexFile(dex_bytes.get(), length, "tmp", 0, nullptr, nullptr));
161 std::unique_ptr<uint8_t[]> dex_bytes(DecodeBase64(base64, &length));
162 CHECK(dex_bytes.get() != nullptr);
167 if (!file->WriteFully(dex_bytes.get(), length)) {

Completed in 5 milliseconds