Home
last modified time | relevance | path

Searched refs:span (Results 1 – 5 of 5) sorted by relevance

/system/media/camera/docs/
Dhtml.mako150 # Number of rows an entry will span
180 <span class="toc_section_header"><a href="#section_${section.name}">${section.name}</a></span>
184 <span class="toc_kind_header">${kind.name}</span>
263 <span class="entry_type_name entry_type_name_enum">${prop.type}</span>
265 <span class="entry_type_name">${prop.type}</span>
268 <span class="entry_type_container">x</span>
272 <span class="entry_type_array">
274 </span>
282 …<span class="entry_type_visibility"> [${prop.applied_visibility}${" as %s" %prop.typedef.name if p…
285 <span class="entry_type_synthetic">[synthetic] </span>
[all …]
/system/logging/logd/
DLogStatistics.cpp812 int span = newest - oldest; in ReportInteresting() local
814 items.emplace_back(std::to_string(span)); in ReportInteresting()
912 uint64_t span = newest - oldest; in Format() local
913 if (span > (monthSec * MS_PER_SEC)) { in Format()
921 if (span > maxSpan) maxSpan = span; in Format()
922 totalSize += span; in Format()
930 formatMsec(span).c_str()); in Format()
931 unsigned permille = ((newest - dropped) * 1000 + (span / 2)) / span; in Format()
/system/apex/apexd/
Dapex_file.cpp246 Result<std::span<const uint8_t>> VerifyVbMetaSignature(const ApexFile& apex, in VerifyVbMetaSignature()
272 return std::span<const uint8_t>(pk, pk_len); in VerifyVbMetaSignature()
294 Result<std::span<const uint8_t>> st = in VerifyVbMeta()
/system/security/ondevice-signing/
DVerityUtils.cpp60 static std::string toHex(std::span<uint8_t> data) { in toHex()
/system/libziparchive/
Dzip_archive.cc218 std::span<uint8_t> scan_buffer, in FindCentralDirectoryInfo()