Home
last modified time | relevance | path

Searched refs:first (Results 1 – 13 of 13) sorted by relevance

/bootable/recovery/otautil/
Drangeset.cpp74 size_t first; in Parse() local
76 if (!android::base::ParseUint(pieces[i + 1], &first, static_cast<size_t>(INT_MAX)) || in Parse()
80 pairs.emplace_back(first, second); in Parse()
86 if (range.first >= range.second) { in PushBack()
87 LOG(ERROR) << "Empty or negative range: " << range.first << ", " << range.second; in PushBack()
90 size_t sz = range.second - range.first; in PushBack()
127 size_t range_blocks = range.second - range.first; in Split()
130 buffer.PushBack({ range.first, range.first + needed }); in Split()
131 range.first = range.first + needed; in Split()
211 if (it->first <= to_insert.second) { in Insert()
[all …]
/bootable/recovery/
DAndroid.mk33 LOCAL_MULTILIB := first
DREADME.md37 - Execute the test on an A/B device first. The test should fail but it will log
/bootable/recovery/recovery_ui/
Ddevice.cpp49 [](const auto& entry) { return entry.first; }); in PopulateMenuItems()
Dscreen_ui.cpp562 text_y += DrawTextLine(text_x, text_y, p.first, false); in SelectAndShowBackgroundText()
/bootable/recovery/fastboot/
Dfastboot.cpp68 [](const auto& entry) { return entry.first; }); in StartFastboot()
/bootable/recovery/edify/
DREADME.md36 - ";" is a binary operator; evaluating it just means to first evaluate
66 one of the second and third, depending on whether the first one is
/bootable/recovery/updater/
Dcommands.cpp325 size_t blocks = it->second - it->first; in MoveRange()
327 memmove(to + (it->first * block_size), from + (start * block_size), blocks * block_size); in MoveRange()
Dblockimg.cpp301 off64_t offset = static_cast<off64_t>(range.first) * BLOCKSIZE; in SeekToOutputRange()
302 current_range_left_ = (range.second - range.first) * BLOCKSIZE; in SeekToOutputRange()
965 size_t blocks = it->second - it->first; in MoveRange()
967 memmove(to + (it->first * BLOCKSIZE), from + (start * BLOCKSIZE), blocks * BLOCKSIZE); in MoveRange()
/bootable/recovery/applypatch/
Dimgdiff.cpp707 if (!AddZipEntryToChunks(handle, entry.first, &entry.second)) { in InitializeChunks()
708 LOG(ERROR) << "Failed to add " << entry.first << " to source chunks"; in InitializeChunks()
734 std::string entry_name = temp_entries[nextentry].first; in InitializeChunks()
1046 src_content.insert(src_content.end(), src_image.file_content_.begin() + r.first * BLOCK_SIZE, in AddSplitImageFromChunkList()
/bootable/recovery/tools/image_generator/
DImageGenerator.java411 int start = lineBoundary.first(); in wrapText()
/bootable/recovery/updater_sample/
DREADME.md73 state - `UpdaterState`. To solve the first problem, sample app persists
/bootable/recovery/tests/component/
Dupdater_test.cpp94 ASSERT_EQ(0, zip_writer.StartEntry(entry.first.c_str(), 0)); in BuildUpdatePackage()