/bootable/deprecated-ota/updater/include/private/ |
D | commands.h | 51 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/ |
D | rangeset.h | 51 bool Overlaps(const RangeSet& other) const; 119 bool operator==(const RangeSet& other) const { 121 return (ranges_ == other.ranges_); 124 bool operator!=(const RangeSet& other) const { 125 return ranges_ != other.ranges_;
|
/bootable/libbootloader/gbl/smoltcp/ |
D | fixup.rs | 41 fn eq(&self, other: &Self) -> bool { 42 PartialEq::eq(&self.bits(), &other.bits())
|
/bootable/libbootloader/gbl/libabr/src/ |
D | lib.rs | 84 fn other(&self) -> Self { in other() method 500 let other = slot_index.other(); in mark_slot_active() localVariable 501 abr_data.slot_data_mut(other).priority = in mark_slot_active() 502 min(abr_data.slot_data_mut(other).priority, ABR_MAX_PRIORITY - 1); in mark_slot_active() 562 let other = slot_index.other(); in mark_slot_successful() localVariable 563 if abr_data.slot_data(other).is_slot_bootable() { in mark_slot_successful() 564 abr_data.slot_data_mut(other).tries_remaining = ABR_MAX_TRIES_REMAINING; in mark_slot_successful() 565 abr_data.slot_data_mut(other).successful_boot = 0; in mark_slot_successful()
|
/bootable/deprecated-ota/applypatch/include/applypatch/ |
D | imgdiff_image.h | 72 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/libbootloader/gbl/ |
D | bazel.MODULE.bazel | 18 root module. However, rules_rust_tinyjson and other crates needs to be resolved 21 Do not fork this file for other projects!
|
/bootable/libbootloader/gbl/docs/ |
D | efi_protocols.md | 2 and can require other protocols for certain targets or to enable optional features. 59 No other EFI protocols are required: GBL wraps SimpleNetwork to provide TCP.
|
/bootable/recovery/ |
D | NOTICE | 29 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,
|
D | README.md | 145 `0` for other build variants. The value is overridable via `PRODUCT_DEFAULT_PROPERTY_OVERRIDES`. 153 the static images under res-*dpi/images/ is used for other display resolutions and as a
|
/bootable/deprecated-ota/ |
D | NOTICE | 29 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,
|
/bootable/libbootloader/libxbc/ |
D | COPYING | 17 other entities that control, are controlled by, or are under common 34 and conversions to other media types. 43 editorial revisions, annotations, elaborations, or other modifications 95 (a) You must give any other recipients of the Work or 163 other commercial damages or losses), even if such Contributor 169 or other liability obligations and/or rights consistent with this 172 of any other Contributor, and only if You agree to indemnify,
|
/bootable/libbootloader/ |
D | LICENSE | 17 other entities that control, are controlled by, or are under common 34 and conversions to other media types. 43 editorial revisions, annotations, elaborations, or other modifications 95 (a) You must give any other recipients of the Work or 163 other commercial damages or losses), even if such Contributor 169 or other liability obligations and/or rights consistent with this 172 of any other Contributor, and only if You agree to indemnify,
|
/bootable/deprecated-ota/applypatch/ |
D | imgdiff.cpp | 293 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()
|
D | NOTICE | 29 documentation and/or other materials provided with the distribution.
|
/bootable/recovery/fonts/ |
D | OFL.txt | 24 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/otautil/ |
D | rangeset.cpp | 175 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/ |
D | README.md | 33 * If you're using other png compression tools, make sure the final text
|
/bootable/libbootloader/gbl/third_party/libzbi/src/ |
D | lib.rs | 102 fn eq(&self, other: &ZbiItem<C>) -> bool { in eq() 103 self.header.as_bytes() == other.header.as_bytes() in eq() 104 && self.payload.as_bytes() == other.payload.as_bytes() in eq() 615 pub fn extend(&mut self, other: &ZbiContainer<impl ByteSlice + PartialEq>) -> ZbiResult<()> { in extend() 618 .checked_add(other.get_payload_length_usize()) in extend() 624 for b in other.iter() { in extend()
|
/bootable/deprecated-ota/edify/ |
D | README.md | 25 - When used as a boolean, the empty string is "false" and all other
|
/bootable/recovery/tools/image_generator/ |
D | ImageGenerator.java | 232 public void addLines(WrappedTextInfo other) { in addLines() argument 233 mWrappedLines.addAll(other.mWrappedLines); in addLines()
|
/bootable/libbootloader/gbl/toolchain/ |
D | gbl_workspace_util.bzl | 50 # Get the bin directory so that we can access other LLVM tools by path.
|
D | gbl_toolchain.bzl | 280 # other rust_library/cc_library can depend directly on this target.
|
/bootable/recovery/updater_sample/ |
D | README.md | 126 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.
|