Lines Matching refs:tmp
59 std::vector<uint8_t> tmp; in DecodeBase64() local
80 tmp.push_back((t >> 16) & 255); in DecodeBase64()
82 tmp.push_back((t >> 8) & 255); in DecodeBase64()
85 tmp.push_back(t & 255); in DecodeBase64()
94 std::unique_ptr<uint8_t[]> dst(new uint8_t[tmp.size()]); in DecodeBase64()
96 *dst_size = tmp.size(); in DecodeBase64()
100 std::copy(tmp.begin(), tmp.end(), dst.get()); in DecodeBase64()
126 std::vector<std::unique_ptr<const DexFile>> tmp; in OpenDexFileBase64() local
127 bool success = DexFile::Open(location, location, error_msg, &tmp); in OpenDexFileBase64()
129 EXPECT_EQ(1U, tmp.size()); in OpenDexFileBase64()
130 std::unique_ptr<const DexFile> dex_file = std::move(tmp[0]); in OpenDexFileBase64()
153 ScratchFile tmp; in TEST_F() local
155 std::unique_ptr<const DexFile> raw(OpenDexFileBase64(kGoodTestDex, tmp.GetFilename().c_str(), in TEST_F()
192 std::vector<std::unique_ptr<const DexFile>> tmp; in FixChecksumAndOpen() local
193 if (!DexFile::Open(location, location, error_msg, &tmp)) { in FixChecksumAndOpen()
196 EXPECT_EQ(1U, tmp.size()); in FixChecksumAndOpen()
197 std::unique_ptr<const DexFile> dex_file = std::move(tmp[0]); in FixChecksumAndOpen()
222 ScratchFile tmp; in TEST_F() local
224 bool success = !ModifyAndLoad(kGoodTestDex, tmp.GetFilename().c_str(), 220, 0xFFU, &error_msg); in TEST_F()
231 ScratchFile tmp; in TEST_F() local
233 bool success = !ModifyAndLoad(kGoodTestDex, tmp.GetFilename().c_str(), 222, 0xFFU, &error_msg); in TEST_F()
240 ScratchFile tmp; in TEST_F() local
242 bool success = !ModifyAndLoad(kGoodTestDex, tmp.GetFilename().c_str(), 224, 0xFFU, &error_msg); in TEST_F()
300 ScratchFile tmp; in TEST_F() local
303 tmp.GetFilename().c_str(), in TEST_F()
310 ScratchFile tmp; in TEST_F() local
312 bool success = !ModifyAndLoad(kDebugInfoTestDex, tmp.GetFilename().c_str(), 416, 0x14U, in TEST_F()