Home
last modified time | relevance | path

Searched refs:versions (Results 1 – 25 of 45) sorted by relevance

12

/system/libvintf/
DSystemSdk.cpp26 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 ==()
DManifestHal.cpp28 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()
DHalManifest.cpp52 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/
DSystemSdk.h32 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()
DManifestHal.h47 versions(std::move(vs)), in ManifestHal()
55 std::vector<Version> versions; member
/system/tools/aidl/build/
DAndroid.bp73 versions: ["1"],
87 versions: ["1"],
100 versions: ["1"],
113 versions: ["1"],
124 versions: ["1", "2"],
Dapi_preamble.txt12 // with the aidl_interface module type with versions property set. The module
/system/hardware/interfaces/net/netd/testutils/
DAndroid.bp16 // Utility code common for all HAL versions.
34 // Common build settings for all HAL versions.
/system/chre/chre_api/legacy/
DREADME.md1 This folder contains prior versions of the CHRE API, intended for reference
/system/core/libvndksupport/
DAndroid.bp19 versions: ["29"],
/system/sepolicy/prebuilts/api/26.0/public/
Dpreopt2cachename.te3 # This executable translates names from the preopted versions the build system
/system/sepolicy/prebuilts/api/28.0/public/
Dpreopt2cachename.te3 # This executable translates names from the preopted versions the build system
/system/sepolicy/prebuilts/api/27.0/public/
Dpreopt2cachename.te3 # This executable translates names from the preopted versions the build system
/system/sepolicy/prebuilts/api/29.0/private/
Dpreopt2cachename.te3 # This executable translates names from the preopted versions the build system
/system/sepolicy/private/
Dpreopt2cachename.te3 # This executable translates names from the preopted versions the build system
/system/apex/shim/
DREADME.md15 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/
DAndroid.bp47 versions: ["1"],
/system/core/libnativeloader/
DAndroid.bp40 versions: ["1"],
/system/timezone/testing/data/test1/apex/
DAndroid.bp30 // installable: false as we do not want test APEX versions in the system
/system/core/libprocessgroup/cgrouprc/
DAndroid.bp46 versions: ["29"],
/system/netd/server/
DAndroid.bp9 versions: ["1"],
43 versions: [
/system/timezone/apex/
DAndroid.bp15 // Defaults shared between real and test versions of the APEX.
/system/core/bootstat/
DREADME.md41 versions.
/system/extras/perfprofd/tests/
DREADME.txt61 The mockup versions of perfprofd_sleep() and perfprofd_log_* do
/system/core/fastboot/
Dfastboot.cpp2023 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()

12