Home | History | Annotate | Download | only in dexlayout

Lines Matching refs:base64

232 static void WriteBase64ToFile(const char* base64, File* file) {
233 // Decode base64.
234 CHECK(base64 != nullptr);
236 std::unique_ptr<uint8_t[]> bytes(DecodeBase64(base64, &length));
239 PLOG(FATAL) << "Failed to write base64 as file";
243 static void WriteFileBase64(const char* base64, const char* location) {
247 WriteBase64ToFile(base64, file.get());