Home
last modified time | relevance | path

Searched refs:version (Results 1 – 25 of 799) sorted by relevance

12345678910>>...32

/packages/modules/SdkExtensions/gen_sdk/
Dextensions_db.textpb2 version: 1
5 version {
6 version: 1
11 version {
12 version: 1
17 version {
18 version: 1
23 version {
24 version: 1
29 version {
[all …]
Dgen_sdk.py86 dupe = find_duplicate([v.version for v in database.versions])
90 for version in database.versions:
91 dupe = find_duplicate([r.module for r in version.requirements])
93 return 'Found duplicate module requirement for %s in single version %s' % (dupe, version)
96 for version in sorted(database.versions, key=lambda v: v.version):
97 for requirement in version.requirements:
100 if prev.version > requirement.version.version:
101 return 'Found module requirement moving backwards: %s in %s' % (requirement, version)
102 prev_requirements[requirement.module] = requirement.version
104 for version in database.versions:
[all …]
/packages/modules/SdkExtensions/gen_sdk/testdata/
Dtest_extensions_db.textpb2 version: 1
5 version {
6 version: 1
11 version: 2
14 version {
15 version: 1
20 version {
21 version: 2
26 version {
27 version: 2
[all …]
Dbackward_req.textpb2 version: 1
5 version {
6 version: 2
11 version: 2
14 version {
15 version: 1
20 version {
21 version: 2
26 version {
27 version: 2
/packages/modules/NeuralNetworks/common/types/operations/src/
DReshape.cpp34 Version version; in validateDepthToSpace() local
38 version = kVersionFeatureLevel1; in validateDepthToSpace()
42 version = kVersionFeatureLevel3; in validateDepthToSpace()
46 version = kVersionFeatureLevel1; in validateDepthToSpace()
50 version = kVersionFeatureLevel4; in validateDepthToSpace()
59 version = combineVersions(version, kVersionFeatureLevel3); in validateDepthToSpace()
61 version = combineVersions(version, kVersionFeatureLevel1); in validateDepthToSpace()
64 return version; in validateDepthToSpace()
74 Version version; in validateSpaceToDepth() local
78 version = kVersionFeatureLevel1; in validateSpaceToDepth()
[all …]
DLSTM.cpp40 Version version = kVersionFeatureLevel1; in validate() local
49 version = kVersionFeatureLevel3; in validate()
56 version = combineVersions(version, kVersionFeatureLevel1); in validate()
58 version = combineVersions(version, kVersionFeatureLevel3); in validate()
64 return version; in validate()
/packages/modules/Bluetooth/floss/build/
Dllvm-rename.sh7 version=$1
11 …--install /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-${version} ${priority} \
12 --slave /usr/bin/llvm-ar llvm-ar /usr/bin/llvm-ar-${version} \
13 --slave /usr/bin/llvm-as llvm-as /usr/bin/llvm-as-${version} \
14 --slave /usr/bin/llvm-bcanalyzer llvm-bcanalyzer /usr/bin/llvm-bcanalyzer-${version} \
15 --slave /usr/bin/llvm-cov llvm-cov /usr/bin/llvm-cov-${version} \
16 --slave /usr/bin/llvm-diff llvm-diff /usr/bin/llvm-diff-${version} \
17 --slave /usr/bin/llvm-dis llvm-dis /usr/bin/llvm-dis-${version} \
18 --slave /usr/bin/llvm-dwarfdump llvm-dwarfdump /usr/bin/llvm-dwarfdump-${version} \
19 --slave /usr/bin/llvm-extract llvm-extract /usr/bin/llvm-extract-${version} \
[all …]
/packages/modules/common/build/
Dallowed_deps.txt112 android.net.ipsec.ike.xml(minSdkVersion:(no version))
291 flatbuffer_headers(minSdkVersion:(no version))
309 gemmlowp_headers(minSdkVersion:(no version))
345 libadbconnection_server(minSdkVersion:(no version))
347 libadbd_core(minSdkVersion:(no version))
349 libadbd_services(minSdkVersion:(no version))
361 libapp_processes_protos_lite(minSdkVersion:(no version))
366 libasyncio(minSdkVersion:(no version))
368 libatomic(minSdkVersion:(no version))
399 libbrotli(minSdkVersion:(no version))
[all …]
/packages/modules/Bluetooth/system/gd/hci/
Dcontroller_unittest.cc32 LocalVersionInformation version; in TEST_F() local
33 version.hci_version_ = HciVersion::V_5_3; in TEST_F()
39 Controller::MaskLeEventMask(version.hci_version_, Controller::kDefaultLeEventMask), in TEST_F()
42 Controller::MaskLeEventMask(version.hci_version_, Controller::kDefaultLeEventMask), in TEST_F()
44 version.hci_version_ = HciVersion::V_5_2; in TEST_F()
46 …Controller::MaskLeEventMask(version.hci_version_, Controller::kDefaultLeEventMask), Controller::kL… in TEST_F()
47 version.hci_version_ = HciVersion::V_5_1; in TEST_F()
49 …Controller::MaskLeEventMask(version.hci_version_, Controller::kDefaultLeEventMask), Controller::kL… in TEST_F()
50 version.hci_version_ = HciVersion::V_4_2; in TEST_F()
52 …Controller::MaskLeEventMask(version.hci_version_, Controller::kDefaultLeEventMask), Controller::kL… in TEST_F()
[all …]
/packages/modules/SdkExtensions/derive_sdk/
Dderive_sdk.cpp104 auto version = module_versions.find(requirement.module()); in VersionRequirementsMet() local
105 if (version == module_versions.end()) { in VersionRequirementsMet()
106 LOG(DEBUG) << "Not version " << ext_version.version() << ": Module " in VersionRequirementsMet()
110 if (version->second < requirement.version().version()) { in VersionRequirementsMet()
111 LOG(DEBUG) << "Not version " << ext_version.version() << ": Module " in VersionRequirementsMet()
112 << requirement.module() << " version (" << version->second in VersionRequirementsMet()
113 << ") too low. Needed " << requirement.version().version(); in VersionRequirementsMet()
126 if (ext_version.version() > max && in GetSdkLevel()
129 max = ext_version.version(); in GetSdkLevel()
135 bool SetExtension(const std::string& extension_name, int version) { in SetExtension() argument
[all …]
/packages/modules/NeuralNetworks/runtime/test/fuzzing/operation_signatures/
DNormalization.cpp36 .version = TestHalVersion::V1_0, in DEFINE_OPERATION_SIGNATURE()
46 .version = TestHalVersion::V1_2, in DEFINE_OPERATION_SIGNATURE()
55 .version = TestHalVersion::V1_2, in DEFINE_OPERATION_SIGNATURE()
66 .version = TestHalVersion::V1_2, in DEFINE_OPERATION_SIGNATURE()
76 .version = TestHalVersion::V1_3, in DEFINE_OPERATION_SIGNATURE()
85 .version = TestHalVersion::V1_3, in DEFINE_OPERATION_SIGNATURE()
106 .version = TestHalVersion::V1_0, in DEFINE_OPERATION_SIGNATURE()
115 .version = TestHalVersion::V1_2, in DEFINE_OPERATION_SIGNATURE()
125 .version = TestHalVersion::V1_2, in DEFINE_OPERATION_SIGNATURE()
135 .version = TestHalVersion::V1_2, in DEFINE_OPERATION_SIGNATURE()
[all …]
/packages/modules/StatsD/statsd/tests/
Dstatsd_test_util_test.cpp29 const int64_t version = 1; variable
35 PackageInfo packageInfo = buildPackageInfo(appName, uid, version, versionString, in TEST()
40 EXPECT_THAT(packageInfo.version(), Eq(version)); in TEST()
58 PackageInfo packageInfo = buildPackageInfo(appName, uid, version, versionString, in TEST_P()
69 PackageInfo packageInfo = buildPackageInfo(appName, uid, version, versionString, in TEST()
84 PackageInfo packageInfo = buildPackageInfo(appName, uid, version, versionString, in TEST()
107 PackageInfo packageInfo = buildPackageInfo(appName, uid, version, versionString, in TEST_P()
123 PackageInfo packageInfo = buildPackageInfo(appName, uid, version, versionString, installer, in TEST_P()
134 buildPackageInfo(appName, uid, version, versionString, installer, /* certHash */ {}, in TEST()
145 buildPackageInfo(appName, uid, version, versionString, installer, /* certHash */ {}, in TEST()
[all …]
/packages/modules/NeuralNetworks/common/types/src/
DValidation.cpp74 auto version = kVersionFeatureLevel1; in validateVector() local
76 version = combineVersions(version, NN_TRY(validationFunction(object))); in validateVector()
78 return version; in validateVector()
272 auto version = NN_TRY(validateOperandType(operandPerformance.type)); in validateCapabilitiesOperandPerformance() local
273 return combineVersions(version, in validateCapabilitiesOperandPerformance()
287 auto version = in validateCapabilities() local
290 version = combineVersions(version, in validateCapabilities()
293 version = combineVersions(version, in validateCapabilities()
296 version = combineVersions( in validateCapabilities()
297 version, NN_TRY(validateCapabilitiesPerformanceInfo(capabilities.ifPerformance))); in validateCapabilities()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/model/
DDbDowngradeHelper.java50 public final int version; field in DbDowngradeHelper
52 private DbDowngradeHelper(int version) { in DbDowngradeHelper() argument
53 this.version = version; in DbDowngradeHelper()
88 for (int version = helper.version - 1; version > 0; version--) { in parse()
89 if (obj.has(KEY_DOWNGRADE_TO + version)) { in parse()
90 JSONArray statements = obj.getJSONArray(KEY_DOWNGRADE_TO + version); in parse()
95 helper.mStatements.put(version, parsed); in parse()
103 if (DbDowngradeHelper.parse(schemaFile).version >= expectedVersion) { in updateSchemaFile()
/packages/modules/SdkExtensions/javatests/com/android/sdkext/extensions/apexes/
Dtest_extensions_db.textpb2 version: 12
5 version {
6 version: 45
11 version: 45
14 version {
15 version: 45
20 version {
21 version: 45
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/avrcp/helpers/
DAvrcpVersion.java41 String version = SystemProperties.get(AVRCP_VERSION_PROPERTY); in getCurrentSystemPropertiesValue() local
42 switch (version) { in getCurrentSystemPropertiesValue()
56 public boolean isAtleastVersion(AvrcpVersion version) { in isAtleastVersion() argument
57 if (version == null) return true; in isAtleastVersion()
58 if (major < version.major) return false; in isAtleastVersion()
59 if (major > version.major) return true; in isAtleastVersion()
60 if (minor < version.minor) return false; in isAtleastVersion()
61 if (minor > version.minor) return true; in isAtleastVersion()
/packages/providers/ContactsProvider/tests/assets/testSynced/
Dexpected_raw_contacts.txt8 8 version=1
26 26 version=1
44 44 version=1
62 62 version=1
80 80 version=1
98 98 version=1
116 116 version=1
134 134 version=1
152 152 version=1
170 170 version=1
[all …]
/packages/modules/IPsec/src/java/com/android/internal/net/eap/message/ttls/
DEapTtlsTypeData.java72 public final int version; field in EapTtlsTypeData
82 version = (flags & FLAG_VERSION_MASK); in EapTtlsTypeData()
95 boolean isDataFragmented, boolean isStart, int version, int messageLength, byte[] data) in EapTtlsTypeData() argument
100 if (version != SUPPORTED_EAP_TTLS_VERSION) { in EapTtlsTypeData()
101 throw new EapTtlsParsingException("Unsupported version number: " + version); in EapTtlsTypeData()
103 this.version = version; in EapTtlsTypeData()
122 | (version)); in getFlagByte()
146 boolean packetFragmented, boolean start, int version, int messageLength, byte[] data) { in getEapTtlsTypeData() argument
148 return new EapTtlsTypeData(packetFragmented, start, version, messageLength, data); in getEapTtlsTypeData()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/sdp/
DSdpManager.java86 int l2capPsm, int version, int msgTypes, int features); in sdpCreateMapMasRecordNative() argument
89 int l2capPsm, int version, int features); in sdpCreateMapMnsRecordNative() argument
92 int version); in sdpCreatePbapPceRecordNative() argument
95 int l2capPsm, int version, int repositories, int features); in sdpCreatePbapPseRecordNative() argument
98 int l2capPsm, int version, byte[] formatsList); in sdpCreateOppOpsRecordNative() argument
101 int version); in sdpCreateSapsRecordNative() argument
375 int productId, int version, in sdpDipRecordFoundCallback() argument
392 productId, version, in sdpDipRecordFoundCallback()
545 int version, int msgTypes, int features) { in createMapMasRecord() argument
549 return sdpCreateMapMasRecordNative(serviceName, masId, rfcommChannel, l2capPsm, version, in createMapMasRecord()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DAlbumDataLoader.java236 public long version; field in AlbumDataLoader.UpdateInfo
247 public GetUpdateInfo(long version) { in GetUpdateInfo() argument
248 mVersion = version; in GetUpdateInfo()
258 long version = mVersion; in call() local
259 info.version = mSourceVersion; in call()
264 if (setVersion[index] != version) { in call()
285 mSourceVersion = info.version; in call()
298 mFailedVersion = info.version; in call()
308 mSetVersion[index] = info.version; in call()
371 long version = mSource.reload(); in run() local
[all …]
DAlbumSetDataLoader.java235 public long version; field in AlbumSetDataLoader.UpdateInfo
248 public GetUpdateInfo(long version) { in GetUpdateInfo() argument
249 mVersion = version; in GetUpdateInfo()
252 private int getInvalidIndex(long version) { in getInvalidIndex() argument
257 if (setVersion[i % length] != version) return i; in getInvalidIndex()
267 info.version = mSourceVersion; in call()
287 mSourceVersion = info.version; in call()
297 mSetVersion[pos] = info.version; in call()
354 long version = mSource.reload(); in run() local
355 UpdateInfo info = executeAndWait(new GetUpdateInfo(version)); in run()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/
DSoftApBackupRestore.java164 int version = in.readInt(); in retrieveSoftApConfigurationFromBackupData() local
166 if ((!SdkLevel.isAtLeastT() && version > LAST_SAP_BACKUP_DATA_VERSION_IN_S) in retrieveSoftApConfigurationFromBackupData()
167 || version < 1) { in retrieveSoftApConfigurationFromBackupData()
171 if (version == 1) return null; // Version 1 is a bad dataset. in retrieveSoftApConfigurationFromBackupData()
172 Log.i(TAG, "The backed-up version is " + version); in retrieveSoftApConfigurationFromBackupData()
174 if (version >= SUPPORTED_SAP_BACKUP_XML_DATA_VERSION) { in retrieveSoftApConfigurationFromBackupData()
189 if (version < 4) { in retrieveSoftApConfigurationFromBackupData()
202 if (version < 4 && securityType == WifiConfiguration.KeyMgmt.WPA2_PSK) { in retrieveSoftApConfigurationFromBackupData()
204 } else if (version >= 4 && securityType != SoftApConfiguration.SECURITY_TYPE_OPEN) { in retrieveSoftApConfigurationFromBackupData()
207 if (version >= 3) { in retrieveSoftApConfigurationFromBackupData()
[all …]
/packages/modules/Bluetooth/framework/tests/unit/src/android/bluetooth/
DSdpOppOpsRecordTest.java43 int version = 1; in createSdpOppOpsRecord() local
50 version, in createSdpOppOpsRecord()
57 assertThat(record.getProfileVersion()).isEqualTo(version); in createSdpOppOpsRecord()
66 int version = 1; in writeToParcel() local
73 version, in writeToParcel()
104 int version = 1; in sdpOppOpsRecordToString() local
111 version, in sdpOppOpsRecordToString()
119 + " Profile version: " + version + "\n" in sdpOppOpsRecordToString()
/packages/modules/common/proto/
Dsdk.proto19 // The version of a single module.
21 int32 version = 1; field
24 // All the modules that can be used for version requirements.
61 // A single extension version.
65 SdkVersion version = 2; field
68 // The extension version.
69 int32 version = 1; field
71 // The modules required for this extension version.
/packages/modules/SdkExtensions/javatests/com/android/os/ext/
DSdkExtensionsTest.java65 private static void assertAtLeastBaseVersion(int version) { in assertAtLeastBaseVersion() argument
74 assertThat(version).isAtLeast(minVersion); in assertAtLeastBaseVersion()
75 assertThat(version).isAtMost(CURRENT_TRAIN_VERSION); in assertAtLeastBaseVersion()
78 private static void assertVersion(Expectation expectation, int version) { in assertVersion() argument
81 assertEquals(CURRENT_TRAIN_VERSION, version); in assertVersion()
84 assertAtLeastBaseVersion(version); in assertVersion()
87 assertEquals(0, version); in assertVersion()
96 int version = Integer.parseInt(propValue); in assertVersion() local
97 assertVersion(expectation, version); in assertVersion()
138 int version = SdkExtensions.getExtensionVersion(sdk); in testZeroValues() local
[all …]

12345678910>>...32