/system/libvintf/ |
D | SystemSdk.cpp | 26 std::set_difference(versions().begin(), versions().end(), other.versions().begin(), in removeVersions() 27 other.versions().end(), std::inserter(ret.mVersions, ret.mVersions.end())); in removeVersions() 32 return versions() == other.versions(); in operator ==()
|
D | ManifestHal.cpp | 28 for (const auto &v : versions) { in isValid() 42 if (versions != other.versions) in operator ==() 52 for (const auto& v : versions) { in forEachInstance() 92 ret->insert(versions.begin(), versions.end()); in appendAllVersions()
|
D | HalManifest.cpp | 52 for (const auto& v : it->second.versions) { in shouldAdd() 57 for (const auto& v : hal.versions) { in shouldAdd() 83 auto& existingVersions = existingHal.versions; in removeHals() 99 for (const Version& versionToAdd : halToAdd.versions) { in add() 190 std::set<Version> versions; in checkIncompatibleHals() local 197 manifestHal->appendAllVersions(&versions); in checkIncompatibleHals() 200 if (!matrixHal.isCompatible(manifestInstances, versions)) { in checkIncompatibleHals() 206 multilineIndent(oss, 8, versions); in checkIncompatibleHals() 281 base::Join(notSupported.versions(), ", ") + "]. Supported versions are: [" + in checkSystemSdkCompatibility() 282 base::Join(manifestSystemSdk.versions(), ", ") + "]."; in checkSystemSdkCompatibility()
|
/system/libvintf/include/vintf/ |
D | SystemSdk.h | 32 SystemSdk(std::set<std::string>&& versions) : mVersions(std::move(versions)) {} in SystemSdk() argument 33 SystemSdk(const std::set<std::string>& versions) : mVersions(versions) {} in SystemSdk() argument 34 const std::set<std::string>& versions() const { return mVersions; } in versions() function 35 bool empty() const { return versions().empty(); } in empty()
|
D | ManifestHal.h | 47 versions(std::move(vs)), in ManifestHal() 55 std::vector<Version> versions; member
|
/system/tools/aidl/build/ |
D | Android.bp | 73 versions: ["1"], 87 versions: ["1"], 100 versions: ["1"], 113 versions: ["1"], 124 versions: ["1", "2"],
|
D | api_preamble.txt | 12 // with the aidl_interface module type with versions property set. The module
|
/system/hardware/interfaces/net/netd/testutils/ |
D | Android.bp | 16 // Utility code common for all HAL versions. 34 // Common build settings for all HAL versions.
|
/system/chre/chre_api/legacy/ |
D | README.md | 1 This folder contains prior versions of the CHRE API, intended for reference
|
/system/core/libvndksupport/ |
D | Android.bp | 19 versions: ["29"],
|
/system/sepolicy/prebuilts/api/26.0/public/ |
D | preopt2cachename.te | 3 # This executable translates names from the preopted versions the build system
|
/system/sepolicy/prebuilts/api/28.0/public/ |
D | preopt2cachename.te | 3 # This executable translates names from the preopted versions the build system
|
/system/sepolicy/prebuilts/api/27.0/public/ |
D | preopt2cachename.te | 3 # This executable translates names from the preopted versions the build system
|
/system/sepolicy/prebuilts/api/29.0/private/ |
D | preopt2cachename.te | 3 # This executable translates names from the preopted versions the build system
|
/system/sepolicy/private/ |
D | preopt2cachename.te | 3 # This executable translates names from the preopted versions the build system
|
/system/apex/shim/ |
D | README.md | 15 file called `hash.txt` with a whitelist of SHA512 hashes of versions shim 17 * `apex_payload.img` of all other versions contains SHA512 hash of
|
/system/core/libnativebridge/ |
D | Android.bp | 47 versions: ["1"],
|
/system/core/libnativeloader/ |
D | Android.bp | 40 versions: ["1"],
|
/system/timezone/testing/data/test1/apex/ |
D | Android.bp | 30 // installable: false as we do not want test APEX versions in the system
|
/system/core/libprocessgroup/cgrouprc/ |
D | Android.bp | 46 versions: ["29"],
|
/system/netd/server/ |
D | Android.bp | 9 versions: ["1"], 43 versions: [
|
/system/timezone/apex/ |
D | Android.bp | 15 // Defaults shared between real and test versions of the APEX.
|
/system/core/bootstat/ |
D | README.md | 41 versions.
|
/system/extras/perfprofd/tests/ |
D | README.txt | 61 The mockup versions of perfprofd_sleep() and perfprofd_log_* do
|
/system/core/fastboot/ |
D | fastboot.cpp | 2023 std::vector<std::string> versions = android::base::Split(arg, "."); in ParseOsVersion() local 2024 if (versions.size() < 1 || versions.size() > 3 || in ParseOsVersion() 2025 (versions.size() >= 1 && !android::base::ParseUint(versions[0], &major)) || in ParseOsVersion() 2026 (versions.size() >= 2 && !android::base::ParseUint(versions[1], &minor)) || in ParseOsVersion() 2027 (versions.size() == 3 && !android::base::ParseUint(versions[2], &patch)) || in ParseOsVersion()
|