Home
last modified time | relevance | path

Searched refs:pinfo (Results 1 – 4 of 4) sorted by relevance

/system/security/keystore/
Dkeystore_attestation_id.cpp147 status_t build_attestation_package_info(const KeyAttestationPackageInfo& pinfo, in build_attestation_package_info() argument
156 if (!pinfo.packageName) { in build_attestation_package_info()
161 std::string pkg_name(String8(pinfo.packageName).c_str()); in build_attestation_package_info()
172 if (BN_set_u64(bn_version, static_cast<uint64_t>(pinfo.versionCode)) != 1) { in build_attestation_package_info()
207 for (auto pinfo = key_attestation_id.packageInfos.begin(); in build_attestation_application_id() local
208 pinfo != key_attestation_id.packageInfos.end(); ++pinfo) { in build_attestation_application_id()
209 if (!pinfo->packageName) { in build_attestation_application_id()
213 std::string package_name(String8(pinfo->packageName).c_str()); in build_attestation_application_id()
215 auto rc = build_attestation_package_info(*pinfo, &attestation_package_info); in build_attestation_application_id()
235 const auto& pinfo = *key_attestation_id.packageInfos.begin(); in build_attestation_application_id() local
[all …]
/system/logging/liblog/
Dproperties.cpp57 const prop_info* pinfo; member
67 return cache->pinfo && __system_property_serial(cache->pinfo) != cache->serial; in check_cache()
76 if (!cache->cache.pinfo) { in refresh_cache()
77 cache->cache.pinfo = __system_property_find(key); in refresh_cache()
78 if (!cache->cache.pinfo) { in refresh_cache()
82 cache->cache.serial = __system_property_serial(cache->cache.pinfo); in refresh_cache()
83 __system_property_read(cache->cache.pinfo, 0, buf); in refresh_cache()
155 tag_cache[i].cache.pinfo = NULL; in __android_log_level()
169 temp_cache.cache.pinfo = NULL; in __android_log_level()
205 if (temp_cache.cache.pinfo != cache->cache.pinfo) { // check atomic in __android_log_level()
[all …]
/system/core/fastboot/fuzzy_fastboot/
Dextensions.h72 friend ::std::ostream& operator<<(::std::ostream& os, const PartitionInfo& pinfo) {
73 return os << "<hashable=" << pinfo.hashable << " slots=" << pinfo.slots
74 << " parsed=" << pinfo.parsed << ">";
84 friend ::std::ostream& operator<<(::std::ostream& os, const PackedInfoTest& pinfo) {
86 << "expect=" << EXPECTS_STR.at(pinfo.expect)
87 << " packed_img=" << pinfo.packed_img
88 << " unpacked_dir=" << pinfo.unpacked_dir << ">";
/system/memory/libmeminfo/
Dprocmeminfo.cpp469 PageAcct& pinfo = PageAcct::Instance(); in ReadVmaStats() local
470 if (get_wss && use_pageidle && !pinfo.InitPageAcct(true)) { in ReadVmaStats()
526 if (!pinfo.PageFlags(page_frame, &cur_page_flags)) { in ReadVmaStats()
540 if (!pinfo.PageMapCount(page_frame, &cur_page_counts)) { in ReadVmaStats()
555 bool is_referenced = use_pageidle ? (pinfo.IsPageIdle(page_frame) == 1) in ReadVmaStats()