Home
last modified time | relevance | path

Searched full:version (Results 1 – 25 of 1149) sorted by relevance

12345678910>>...46

/test/vti/test_serving/gae/frontend/
Dpackage-lock.json3 "version": "0.0.0", string
8 "version": "0.6.8", string
18 "version": "0.6.8", string
77 "version": "0.6.8", string
89 "version": "2.9.2", string
97 "version": "0.6.8", string
109 "version": "0.6.8", string
119 "version": "6.0.6", string
127 "version": "6.2.1", string
135 "version": "6.0.8", string
[all …]
/test/vts/drivers/hal/common/include/utils/
DInterfaceSpecUtil.h4 * Licensed under the Apache License, Version 2.0 (the "License");
39 // Get HAL version (represented by two integers) string to be used to
43 // version_major: int, HAL major version, e.g. 1.10 -> 1.
44 // version_minor: int, HAL minor version, e.g. 1.10 -> 10.
45 // for_macro: bool, if true, it returns version 1.10 as V1_10
48 // string, for version 1.10, if for_macro is true, it returns V1_10,
54 // Get HAL version string to be used to build a relevant dir path.
57 // version: float, HAL version, e.g. 1.10.
58 // for_macro: bool, if true, it returns version 1.10 as V1_10.
61 // string, for version 1.10, if for_macro is true, it returns V1_10,
[all …]
/test/vti/dashboard/
Dbuild.gradle36 id "com.github.sherter.google-java-format" version "0.7.1"
45 version = '4'
66 compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.7'
67 compile group: 'org.apache.commons', name: 'commons-math3', version:'3.6.1'
68 compile group: 'commons-codec', name: 'commons-codec', version:'1.9'
69 compile group: 'com.google.cloud', name: 'google-cloud', version: "${googleCloudVersion}"
70 compile group: 'com.google.code.gson', name: 'gson', version:'2.7'
71 compile group: 'com.googlecode.objectify', name: 'objectify', version: "${objectifyVersion}"
72 compile group: 'org.json', name: 'json', version:'20180130'
73 compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: "${jacksonVersion}"
[all …]
/test/vts-testcase/vndk/golden/
Dvndk_data.py4 # Licensed under the Apache License, Version 2.0 (the "License");
73 """Loads the name of the data directory for devices with no VNDK version.
87 logging.error("Cannot load default VNDK version.")
91 def GetAbiDumpDirectory(data_file_path, version, binder_bitness, abi_name, argument
97 version: A string, the VNDK version.
104 None if there is no directory for the version and ABI.
112 version_dir = (version if version else
149 def GetAbiDumpPathsFromResources(version, binder_bitness, abi_name, abi_bitness): argument
153 version: A string, the VNDK version.
161 If there is no dump for the version and ABI, this function returns an
[all …]
/test/vts/drivers/hal/common/utils/
DInterfaceSpecUtil.cpp4 * Licensed under the Apache License, Version 2.0 (the "License");
64 true) // set flag to true, use macro version, in GetFunctionNamePrefix()
75 true) // set flag to true, use macro version, in GetFunctionNamePrefix()
85 string GetVersionString(float version, bool for_macro) { in GetVersionString() argument
90 long version_long = version * DEFAULT_FACTOR; in GetVersionString()
149 int GetVersionMajor(const string& version, bool for_macro) { in GetVersionMajor() argument
150 if (for_macro) return std::stoi(version.substr(0, version.find("_"))); in GetVersionMajor()
151 return std::stoi(version.substr(0, version.find("."))); in GetVersionMajor()
154 int GetVersionMinor(const string& version, bool for_macro) { in GetVersionMinor() argument
155 if (for_macro) return std::stoi(version.substr(version.find("_") + 1)); in GetVersionMinor()
[all …]
/test/vts/utils/python/common/
Dvts_spec_utils.py4 # Licensed under the Apache License, Version 2.0 (the "License");
25 """Returns hal name and version given hal package name.
31 tuple, hal name and version e.g. ('vibrator', '1.0')
47 """Returns directory name corresponding to hal version."""
71 hal_version: string, version of the hal, e.g '7.4'
87 hal_version: string, version of the hal, e.g '7.4'
110 hal_version: string, version of the hal, e.g '7.4'
131 """Returns list of .vts file names for given hal name and version.
135 hal_version: string, version of the hal, e.g '7.4'
138 list of string, .vts files for given hal name and version,
[all …]
/test/vts/testcases/host/kernel_proc_file_api_test/proc_tests/
DProcQtaguidCtrlTest.py4 # Licensed under the Apache License, Version 2.0 (the "License");
71 (version, patchlevel, sublevel) = self._kernel_version(dut)
72 if version == 4 and patchlevel >= 9 or version > 4:
78 """Gets the kernel version from the device.
83 A tuple of kernel version information
84 in the format of (version, patchlevel, sublevel).
95 raise RuntimeError("Failed to detect kernel version of device. out:%s" % out)
97 version = int(match.group(1))
100 logging.info("Detected kernel version: %s", match.group(0))
101 return (version, patchlevel, sublevel)
DProcVersionTest.py4 # Licensed under the Apache License, Version 2.0 (the "License");
22 '''/proc/version displays the kernel version and build information.'''
25 return self.parse_line("{} version {} ({}@{}) ({}) {}\n", contents)
29 logging.error("Not a valid linux version!")
34 return "/proc/version"
/test/vts-testcase/hal/treble/vintf/
DDeviceManifestTest.cpp4 * Licensed under the Apache License, Version 2.0 (the "License");
38 // Tests that Shipping FCM Version in the device manifest is at least the
39 // minimum Shipping FCM Version as required by Board API level.
52 GTEST_SKIP() << "Kernel FCM version not enforced on target FCM version " in TEST_F()
58 << "Kernel FCM version must be specified for target FCM version '" in TEST_F()
61 << "Kernel FCM version " << kernel_fcm_version in TEST_F()
62 << " must be greater or equal to target FCM version " in TEST_F()
67 // non-deprecated minor version is in the manifest.
DDeviceMatrixTest.cpp4 * Licensed under the Apache License, Version 2.0 (the "License");
28 const string kVndkVersionProp{"ro.vndk.version"};
41 << "VNDK version doesn't need to be set on devices before Android P"; in TEST_F()
49 << "Device compatibility matrix does not declare proper VNDK version."; in TEST_F()
52 << "VNDK version does not match: " << kVndkVersionProp << "=" in TEST_F()
/test/vts-testcase/hal/treble/vintf/libvts_vintf_test_common/
Dcommon.cpp4 * Licensed under the Apache License, Version 2.0 (the "License");
22 // Framework Compatibility Matrix Version (FCM Version) per API level, or
23 // multiple API levels per FCM version.
30 // // Assume devices launch with Android X must implement FCM version >= 9
33 // // FCM version >= 11
37 Level /* FCM Version */>
60 // O / O-MR1 vendor image doesn't have shipping FCM version declared and in TestTargetFcmVersion()
61 // shipping FCM version is inferred from Shipping API level, hence it always in TestTargetFcmVersion()
81 << " requires Shipping FCM Version >= " << required_fcm_version in TestTargetFcmVersion()
/test/vts/utils/python/vndk/
Dvndk_utils.py4 # Licensed under the Apache License, Version 2.0 (the "License");
47 def FormatVndkPath(pattern, bitness, version=""): argument
53 version: A string, the VNDK version.
59 VER=version)
62 def GetVndkDirectory(bitness, version): argument
67 version: A string, the VNDK version.
73 bitness, version)
/test/vts/utils/native/libprofiling/
DVtsProfilingInterface.cpp4 * Licensed under the Apache License, Version 2.0 (the "License");
62 const string& version) { in GetTraceFile() argument
63 string fullname = package + "@" + version; in GetTraceFile()
72 fd = CreateTraceFile(package, version); in GetTraceFile()
77 fd = CreateTraceFile(package, version); in GetTraceFile()
84 const string& version) { in CreateTraceFile() argument
89 property_get("ro.build.version.incremental", build_number, "unknown_build"); in CreateTraceFile()
93 string file_path = trace_file_path_prefix_ + package + "_" + version + "_" + in CreateTraceFile()
110 const char* package, const char* version, const char* interface, in AddTraceEvent() argument
112 std::string version_str = std::string(version); in AddTraceEvent()
[all …]
DVtsProfilingInterface.h4 * Licensed under the Apache License, Version 2.0 (the "License");
46 const char* package, const char* version, const char* interface,
51 // with given package and version.
52 int GetTraceFile(const string& package, const string& version);
54 // the given package and version, the device info and the current time.
55 int CreateTraceFile(const string& package, const string& version);
/test/mlts/models/
DREADME.txt3 Licensed under the Apache License, Version 2.0 (the "License");
25 Apache License, Version 2.0
37 Apache License, Version 2.0
49 Apache License, Version 2.0
61 Apache License, Version 2.0
70 Float version of MobileNet SSD tensorflow model based on:
73 Apache License, Version 2.0
86 Apache License, Version 2.0
100 Apache License, Version 2.0
109 Apache License, Version 2.0
[all …]
/test/vti/dashboard/src/main/java/com/android/vts/entity/
DApiCoverageExcludedEntity.java4 * Licensed under the Apache License, Version 2.0 (the "License"); you
54 /** Major Version. e.g. 1, 2. */
57 /** Minor Version. e.g. 0. */
75 String version, in ApiCoverageExcludedEntity() argument
86 this.setVersions(version); in ApiCoverageExcludedEntity()
89 /** Setting major and minor version from version string */
90 private void setVersions(String version) { in setVersions() argument
91 String[] versionArray = version.split("[.]"); in setVersions()
/test/vts-testcase/hal/treble/platform_version/
Dvts_treble_platform_version_test.py5 # Licensed under the Apache License, Version 2.0 (the "License");
84 """Test that SDK version >= O (26)."""
86 sdkVersion = int(self.getProp("ro.build.version.sdk"))
93 """Test that VNDK version is specified.
95 If ro.vndk.version is not defined on boot, GSI sets LD_CONFIG_FILE to
96 temporary configuration file and ro.vndk.version to default value.
99 vndkVersion = self.getProp("ro.vndk.version")
101 asserts.fail("VNDK version is not defined")
DVtsTreblePlatformVersionTest.py5 # Licensed under the Apache License, Version 2.0 (the "License");
91 """Test that SDK version >= O (26)."""
93 sdkVersion = int(self.getProp("ro.build.version.sdk"))
100 """Test that VNDK version is specified.
102 If ro.vndk.version is not defined on boot, GSI sets LD_CONFIG_FILE to
103 temporary configuration file and ro.vndk.version to default value.
106 vndkVersion = self.getProp("ro.vndk.version")
108 asserts.fail("VNDK version is not defined")
/test/vts/testcases/host/fastboot_getvar/src/com/android/tests/
DFastbootGetvarUserspaceTest.java4 * Licensed under the Apache License, Version 2.0 (the "License");
107 /* Devices launching in R and after must export version-os. */
110 String osVersion = sDevice.getFastbootVariable("version-os"); in testOsVersion()
111 CLog.d("os version: '%s'", osVersion); in testOsVersion()
112 // The value of osVersion is derived from "ro.build.version.release", in testOsVersion()
113 // which is a user-visible version string. The value does not have in testOsVersion()
119 /* Devices launching in R and after must export version-vndk. */
122 String vndkVersion = sDevice.getFastbootVariable("version-vndk"); in testVndkVersion()
123 CLog.d("vndk version: '%s'", vndkVersion); in testVndkVersion()
132 fail("ro.vndk.version should be a number. But the current value is " + vndkVersion); in testVndkVersion()
[all …]
/test/vti/test_serving/gae/script/
Ddeploy-webapp.sh5 # Licensed under the Apache License, Version 2.0 (the "License");
64 echo "Fetching endpoints service version of $SERVICE ..."
72 VERSION=${arr[2]}
75 echo "ENDPOINTS_SERVICE_VERSION: $VERSION"
81 sed -i "" "s/ENDPOINTS_SERVICE_VERSION:.*/ENDPOINTS_SERVICE_VERSION: $VERSION/g" app.yaml
84 sed -i "s/ENDPOINTS_SERVICE_VERSION:.*/ENDPOINTS_SERVICE_VERSION: $VERSION/g" app.yaml
/test/vts/utils/python/mirror/
Dmirror_tracker.py4 # Licensed under the Apache License, Version 2.0 (the "License");
313 float, the target component version (e.g., 1.0).
322 int, the target component major version (e.g., 1.0 -> 1).
324 int, the target component minor version (e.g., 1.0 -> 0).
326 parse it from the float version of target_version.
331 USERError if user doesn't provide a version of the HAL service.
366 float, the target component version (e.g., 1.0).
376 int, the target component major version (e.g., 1.0 -> 1).
378 int, the target component minor version (e.g., 1.0 -> 0).
380 parse it from the float version of target_version.
[all …]
/test/vts/drivers/hal/common/include/driver_manager/
DVtsHalDriverManager.h4 * Licensed under the Apache License, Version 2.0 (the "License");
47 // version_major: int, hal major version, e.g. 1.0 -> 1.
48 // version_minor: int, hal minor version, e.g. 1.0 -> 0.
72 // package name, version and component (interface) name. If found, returns
77 // version_major: int, hal major version, e.g. 1.0 -> 1.
78 // version_minor: int, hal minor version, e.g. 1.0 -> 0.
97 // version_major: int, hal major version, e.g. 1.0 -> 1.
98 // version_minor: int, hal minor version, e.g. 1.0 -> 0.
148 const int component_type, const string& version,
/test/vts/testcases/host/firmware_test/src/com/android/tests/firmware/
DBootImageInfo.java4 * Licensed under the Apache License, Version 2.0 (the "License");
36 // Offset of recovery dtbo size in boot header of version 1.
41 // Definitions specific to boot header version 3.
46 // Definitions specific to boot header version 4.
155 * Get image header version of boot image.
157 * @return the value of host image header version.
163 public void setImgHeaderVer(int version) { in setImgHeaderVer() argument
164 mImgHeaderVer = version; in setImgHeaderVer()
/test/vts/drivers/hal/common/include/binder/
DVtsFuzzerBinderService.h4 * Licensed under the Apache License, Version 2.0 (the "License");
55 // int, the target component major HAL version
57 // int, the target component minor HAL version
83 // int, the target component major HAL version
85 // int, the target component minor HAL version
/test/app_compat/csuite/instrumentation/launch/
DAndroid.bp3 // Licensed under the Apache License, Version 2.0 (the "License");
24 // The value of min sdk version chosen here is the oldest sdk version we
25 // have tested. Lower version numbers should also work.

12345678910>>...46