/test/vts/proto/ |
D | VtsFuzzTaskMessage.proto | 54 // To specify details of the test suite target 56 // target product (e.g., VTS) 62 // target product (e.g., aosp_arm64) 98 // To specify details of a fuzz task per target 115 // specification of fuzz task device target 121 // specification of test suite (e.g., VTS) build target 131 // specification of fuzz task per target
|
D | AndroidSystemControlMessage.proto | 37 // To read the VTS spec of a target component. 104 // The name of a target. 107 // Whether a target driver binary is 64-bits or 32-bits. 110 // target class 112 // target type 114 // target version (should be divided by 100) - float has a compatibility issue 125 // the name of a target component (currently used for HIDL HALs only). 129 // HAL major version of the target component (e.g. 1.0 -> 1). 131 // HAL minor version of the target component (e.g. 1.0 -> 0).
|
D | VtsDriverControlMessage.proto | 80 // The name of a target. 82 // target class 84 // target type 86 // target version (should be divided by 100) - float has a compatibility issue 94 // the name of a target component (currently used for HIDL HALs only). 98 // HAL major version of target component (e.g. 1.0 -> 1). 100 // HAL minor version of target component (e.g. 1.0 -> 0).
|
D | ComponentSpecificationMessage.proto | 21 // Class of a target component. 45 // Type of a target component. 152 // Type of a target processor architecture. 394 // To specify an existing handle object registered in target-side driver. 396 // the handle object from target-side driver, instead of creating a new one. 401 // an existing hidl_handle object stored in target-side driver. 555 // Class, type, and version of a target component. 562 // The name of a target component (used for HIDL HALs). 565 // for the target processor architecture. 574 // The package path of a target component (e.g., android.hardware.name).
|
D | VtsResourceControllerMessage.proto | 54 // This is an operation that is used in the target-side 57 // target. 130 // It is not used for communication between host and target. 145 // signal if the operation succeeds on target side
|
D | VtsProfilingMessage.proto | 63 // HAL major version of the target component (e.g. 1.0 -> 1). 65 // HAL minor version of the target component (e.g. 1.0 -> 0).
|
D | Android.bp | 46 target: {
|
/test/vts-testcase/security/avb/ |
D | VtsSecurityAvbTest.cpp | 911 const android::dm::DeviceMapper::TargetInfo &target = table[0]; in TEST() local 920 target.spec.sector_start, target.spec.sector_start + target.spec.length, in TEST() 921 target.spec.target_type, target.data.c_str()); in TEST() 922 EXPECT_EQ(strcmp(target.spec.target_type, "verity"), 0); in TEST() 943 size_t begin_pos = NextWord(target.data, &next_pos); in TEST() 946 EXPECT_EQ(target.data.compare(begin_pos, next_pos - begin_pos, in TEST() 955 size_t begin_pos = NextWord(target.data, &next_pos); in TEST() 958 std::stoul(target.data.substr(begin_pos, next_pos - begin_pos)); in TEST() 976 size_t begin_pos = NextWord(target.data, &next_pos); in TEST() 978 const std::string param_name(target.data, begin_pos, next_pos - begin_pos); in TEST() [all …]
|
/test/vti/test_serving/gae/webapp/src/testing/ |
D | unittest_base.py | 262 for target in targets: 264 build.artifact_type = target 266 if target == "device": 271 elif target == "gsi": 275 elif target == "test": 280 build_dict[target] = build
|
/test/vti/test_serving/proto/ |
D | TestScheduleConfigMessage.proto | 44 // build target name (e.g., aosp_taimen-userdebug) 50 // whether the build target has bootloader.img 53 // whether the build target has radio.img 89 // if GSI (General System Image) is used, GSI build target name. 105 // Test package's build target name.
|
D | GreenBuildScheduleConfigMessage.proto | 50 // Test package's build target name. 73 // Device build target if different. 79 // GSI's build target name.
|
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/ |
D | show_coverage.jsp | 47 var cmd = $(evt.target).text(); 48 var testRunId = $(evt.target).data("id"); 53 var detachedLi = $(evt.target).parent().parent().detach(); 55 $(evt.target).text("disable"); 56 $(evt.target).parent().removeClass("grey"); 59 $(evt.target).text("enable"); 60 $(evt.target).parent().addClass("grey");
|
/test/vts-testcase/kernel/encryption/ |
D | metadata_encryption_tests.cpp | 191 std::unique_ptr<DmTargetDefaultKey> target = in CreateTestDevice() local 195 target->SetSetDun(); in CreateTestDevice() 196 if (is_wrapped_key) target->SetWrappedKeyV0(); in CreateTestDevice() 199 if (!table.AddTarget(std::move(target))) { in CreateTestDevice()
|
/test/vts/utils/python/coverage/ |
D | sancov_utils.py | 332 'w+b') as target: 333 shutil.copyfileobj(source, target) 334 target.seek(0) 335 self._InitializeFileVectors(serial, target.name) 338 args = ['addr2line', '-pe', target.name]
|
/test/vti/test_serving/gae/webapp/src/scheduler/ |
D | schedule_worker.py | 142 def FindBuildId(self, artifact_type, manifest_branch, target, argument 156 if "-" in target: 157 build_target, build_type = target.split("-") 159 build_target = target 244 if any([lab in target for target in schedule.device 363 target=build_target,
|
D | periodic.py | 48 target="worker",
|
/test/vti/dashboard/src/main/java/com/android/vts/servlet/ |
D | ShowGreenReleaseServlet.java | 242 String target = entity.getProperty(DeviceInfoEntity.BUILD_FLAVOR).toString(); in getTestPlanDispatcher() local 244 paramInfoMap.get(branch).add(target); in getTestPlanDispatcher() 246 paramInfoMap.put(branch, new LinkedList<>(Arrays.asList(target))); in getTestPlanDispatcher() 430 String target = testSuiteResultEntity.getTarget(); in getTestSuiteDispatcher() local 432 paramInfoMap.get(branch).add(target); in getTestSuiteDispatcher() 434 paramInfoMap.put(branch, new LinkedList<>(Arrays.asList(target))); in getTestSuiteDispatcher()
|
/test/vti/dashboard/src/main/java/com/android/vts/entity/ |
D | TestSuiteResultEntity.java | 204 @Index @Getter @Setter String target; field in TestSuiteResultEntity 244 String target, in TestSuiteResultEntity() argument 264 this.target = target; in TestSuiteResultEntity() 299 this.target, in save() 500 valuesMap.put("target", target); in getCrashSecurityDescription()
|
/test/vts/drivers/hal/common/driver_base/ |
D | DriverBase.cpp | 182 string target = string(component_filename_) + "_intermediates"; in FunctionCallBegin() local 195 if (string(dent->d_name) == target) { in FunctionCallBegin() 205 (char*)malloc(strlen(module_basepath) + target.length() + 2); in FunctionCallBegin() 210 sprintf(gcov_output_basepath_, "%s/%s", module_basepath, target.c_str()); in FunctionCallBegin()
|
/test/vts/utils/python/build/api/ |
D | artifact_fetcher.py | 143 target=build_target, 260 target=build_target,
|
/test/mlts/benchmark/ |
D | README.txt | 24 * Connect a target device to your workstation, make sure it's 25 reachable through adb. Export target device ANDROID_SERIAL 43 It is also possible to run additional tests without specified target accelerator to let NNAPI
|
/test/vti/dashboard/ |
D | .gitignore | 27 target/
|
/test/vti/dashboard/src/main/webapp/js/ |
D | test_results.js | 311 $(evt.target).removeClass('grey'); 312 $(evt.target).addClass('blue');
|
/test/mlts/benchmark/crashtest/ |
D | README.txt | 24 …adb install -r out/target/product/flame/testcases/NeuralNetworksApiStressTest/arm64/NeuralNetworks…
|
/test/vti/dashboard/src/main/java/com/android/vts/api/ |
D | DatastoreRestServlet.java | 264 BuildTargetEntity target = new BuildTargetEntity(deviceInfoEntity.getBuildFlavor()); in insertTestReport() local 265 if (buildTargetKeys.add(target.getKey())) { in insertTestReport() 266 buildTargetEntityList.add(target); in insertTestReport()
|