Home
last modified time | relevance | path

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

/bootable/recovery/tests/component/
Dapplypatch_test.cpp161 patches.push_back(patch1); in SetUpTestCase()
169 patches.push_back(patch2); in SetUpTestCase()
173 for (auto it = patches.begin(); it != patches.end(); ++it) { in TearDownTestCase()
177 patches.clear(); in TearDownTestCase()
180 static std::vector<Value*> patches; member in ApplyPatchFullTest
208 std::vector<Value*> ApplyPatchFullTest::patches; member in ApplyPatchFullTest
295 patches.data(), in TEST_F()
306 patches.data(), in TEST_F()
322 patches.data(), in TEST_F()
332 patches.data(), in TEST_F()
[all …]
/bootable/recovery/applypatch/
Dmain.cpp127 std::vector<Value> patches(files.size()); in PatchMode() local
130 patches[i].type = VAL_BLOB; in PatchMode()
131 patches[i].size = files[i].data.size(); in PatchMode()
132 patches[i].data = reinterpret_cast<char*>(files[i].data.data()); in PatchMode()
133 patch_ptrs[i] = &patches[i]; in PatchMode()
/bootable/recovery/updater/
Dinstall.cpp1215 std::vector<std::unique_ptr<Value, decltype(&FreeValue)>> patches; in ApplyPatchFn() local
1219 patches.emplace_back(arg_values.get()[i+1], FreeValue); in ApplyPatchFn()
1227 if (patches[i]->type != VAL_BLOB) { in ApplyPatchFn()
1237 patch_ptrs.push_back(patches[i].get()); in ApplyPatchFn()