Home
last modified time | relevance | path

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

/bootable/recovery/updater/include/private/
Dcommands.h51 bool operator==(const TargetInfo& other) const {
52 return hash_ == other.hash_ && ranges_ == other.ranges_;
85 bool operator==(const StashInfo& other) const {
86 return id_ == other.id_ && ranges_ == other.ranges_;
142 bool operator==(const SourceInfo& other) const {
143 return hash_ == other.hash_ && ranges_ == other.ranges_ && location_ == other.location_ &&
144 stashes_ == other.stashes_;
180 bool operator==(const PatchInfo& other) const {
181 return offset_ == other.offset_ && length_ == other.length_;
219 bool operator==(const HashTreeInfo& other) const {
[all …]
/bootable/recovery/otautil/include/otautil/
Drangeset.h50 bool Overlaps(const RangeSet& other) const;
112 bool operator==(const RangeSet& other) const {
114 return (ranges_ == other.ranges_);
117 bool operator!=(const RangeSet& other) const {
118 return ranges_ != other.ranges_;
/bootable/recovery/applypatch/include/applypatch/
Dimgdiff_image.h72 bool operator==(const ImageChunk& other) const;
73 bool operator!=(const ImageChunk& other) const {
74 return !(*this == other);
91 bool IsAdjacentNormal(const ImageChunk& other) const;
92 void MergeAdjacentNormal(const ImageChunk& other);
/bootable/recovery/
DNOTICE29 other entities that control, are controlled by, or are under common
46 and conversions to other media types.
55 editorial revisions, annotations, elaborations, or other modifications
107 (a) You must give any other recipients of the Work or
175 other commercial damages or losses), even if such Contributor
181 or other liability obligations and/or rights consistent with this
184 of any other Contributor, and only if You agree to indemnify,
DREADME.md133 `0` for other build variants. The value is overridable via `PRODUCT_DEFAULT_PROPERTY_OVERRIDES`.
/bootable/recovery/fonts/
DOFL.txt24 however, cannot be released under any other type of license. The
45 writer or other person who contributed to the Font Software.
76 distributed under any other license. The requirement for fonts to
/bootable/recovery/applypatch/
Dimgdiff.cpp293 bool ImageChunk::operator==(const ImageChunk& other) const { in operator ==()
294 if (type_ != other.type_) { in operator ==()
297 return (raw_data_len_ == other.raw_data_len_ && in operator ==()
298 memcmp(GetRawData(), other.GetRawData(), raw_data_len_) == 0); in operator ==()
320 bool ImageChunk::IsAdjacentNormal(const ImageChunk& other) const { in IsAdjacentNormal()
321 if (type_ != CHUNK_NORMAL || other.type_ != CHUNK_NORMAL) { in IsAdjacentNormal()
324 return (other.start_ == start_ + raw_data_len_); in IsAdjacentNormal()
327 void ImageChunk::MergeAdjacentNormal(const ImageChunk& other) { in MergeAdjacentNormal() argument
328 CHECK(IsAdjacentNormal(other)); in MergeAdjacentNormal()
329 raw_data_len_ = raw_data_len_ + other.raw_data_len_; in MergeAdjacentNormal()
DNOTICE29 documentation and/or other materials provided with the distribution.
/bootable/recovery/otautil/
Drangeset.cpp175 bool RangeSet::Overlaps(const RangeSet& other) const { in Overlaps()
177 for (const auto& [other_begin, other_end] : other.ranges_) { in Overlaps()
/bootable/recovery/tools/recovery_l10n/
DREADME.md33 * If you're using other png compression tools, make sure the final text
/bootable/recovery/edify/
DREADME.md25 - When used as a boolean, the empty string is "false" and all other
/bootable/recovery/tools/image_generator/
DImageGenerator.java236 public void addLines(WrappedTextInfo other) { in addLines() argument
237 mWrappedLines.addAll(other.mWrappedLines); in addLines()
/bootable/recovery/updater_sample/
DREADME.md126 no other update is running. The extra `key_value_pair_headers` will be
129 `key_value_pair_headers` argument also accepts properties other than HTTP Headers.