Home
last modified time | relevance | path

Searched refs:first (Results 1 – 15 of 15) 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()
263 if (it->first <= to_insert.second) { in Insert()
[all …]
/bootable/recovery/
DAndroid.mk36 LOCAL_MULTILIB := first
DREADME.md49 - Execute the test on an A/B device first. The test should fail but it will log
/bootable/recovery/fastboot/
Dfastboot.cpp69 [](const auto& entry) { return entry.first; }); in StartFastboot()
/bootable/recovery/recovery_ui/
Ddevice.cpp50 [](const auto& entry) { return entry.first; }); in PopulateMenuItems()
Dscreen_ui.cpp565 text_y += DrawTextLine(text_x, text_y, p.first, false); in SelectAndShowBackgroundText()
/bootable/recovery/minadbd/
DREADME.md17 - When requested to start `minadbd`, `recovery` stops `adbd` first, if it's running; it then forks
/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.cpp324 size_t blocks = it->second - it->first; in MoveRange()
326 memmove(to + (it->first * block_size), from + (start * block_size), blocks * block_size); in MoveRange()
Dblockimg.cpp306 off64_t offset = static_cast<off64_t>(range.first) * BLOCKSIZE; in SeekToOutputRange()
307 current_range_left_ = (range.second - range.first) * BLOCKSIZE; in SeekToOutputRange()
970 size_t blocks = it->second - it->first; in MoveRange()
972 memmove(to + (it->first * BLOCKSIZE), from + (start * BLOCKSIZE), blocks * BLOCKSIZE); in MoveRange()
/bootable/recovery/tests/unit/host/
Dupdate_simulator_test.cpp57 ASSERT_EQ(0, writer.StartEntry(pair.first.c_str(), 0)); in AddZipEntries()
/bootable/recovery/applypatch/
Dimgdiff.cpp706 if (!AddZipEntryToChunks(handle, entry.first, &entry.second)) { in InitializeChunks()
707 LOG(ERROR) << "Failed to add " << entry.first << " to source chunks"; in InitializeChunks()
739 std::string entry_name = temp_entries[nextentry].first; in InitializeChunks()
1072 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/unit/
Dupdater_test.cpp98 ASSERT_EQ(0, zip_writer.StartEntry(entry.first.c_str(), 0)); in BuildUpdatePackage()