Home
last modified time | relevance | path

Searched refs:d (Results 1 – 25 of 70) sorted by relevance

123

/test/vts/runners/host/
Drecords.py171 d = self.getDict()
172 l = ["%s = %s" % (k, v) for k, v in d.items()]
187 d = {}
188 d[TestResultEnums.RECORD_NAME] = self.test_name
189 d[TestResultEnums.RECORD_CLASS] = self.test_class
190 d[TestResultEnums.RECORD_BEGIN_TIME] = self.begin_time
191 d[TestResultEnums.RECORD_END_TIME] = self.end_time
192 d[TestResultEnums.RECORD_RESULT] = self.result
193 d[TestResultEnums.RECORD_UID] = self.uid
194 d[TestResultEnums.RECORD_EXTRAS] = self.extras
[all …]
/test/vts/harnesses/tradefed/src/com/android/tradefed/testtype/
DVtsMultiDeviceTest.java706 CLog.d("Using default test case template at %s.", template); in run()
751 CLog.d("Populating default fields to json object from %s", DEFAULT_TESTCASE_CONFIG_PATH); in populateDefaultJsonFields()
808 CLog.d("Load original test config %s %s", mTestCaseDir, mTestConfigPath); in updateVtsRunnerTestConfig()
814 CLog.d("Loaded original test config %s", content); in updateVtsRunnerTestConfig()
821 CLog.d("Built a Json object using the loaded original test config"); in updateVtsRunnerTestConfig()
868 CLog.d("Setting test module name as %s", testName); in updateVtsRunnerTestConfig()
895 CLog.d("Added %s = %s to the Json object", DATA_FILE_PATH, mTestCaseDir); in updateVtsRunnerTestConfig()
901 CLog.d("Added %s to the Json object", BUILD); in updateVtsRunnerTestConfig()
906 CLog.d("Added include filter to test suite: %s", mIncludeFilters); in updateVtsRunnerTestConfig()
908 CLog.d("Added exclude filter to test suite: %s", mExcludeFilters); in updateVtsRunnerTestConfig()
[all …]
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/
DModuleListener.java56 CLog.d("ModuleListener.invocationStarted(%s)", context.getBuildInfos()); in invocationStarted()
65 CLog.d("ModuleListener.testRunStarted(%s, %d)", name, numTests); in testRunStarted()
74 CLog.d("ModuleListener.testStarted(%s)", test.toString()); in testStarted()
83 CLog.d("ModuleListener.testEnded(%s, %s)", test.toString(), metrics.toString()); in testEnded()
92 CLog.d("ModuleListener.testIgnored(%s)", test.toString()); in testIgnored()
101 CLog.d("ModuleListener.testFailed(%s, %s)", test.toString(), trace); in testFailed()
110 CLog.d("ModuleListener.testAssumptionFailure(%s, %s)", test.toString(), trace); in testAssumptionFailure()
119 CLog.d("ModuleListener.testRunStopped(%d)", elapsedTime); in testRunStopped()
128 CLog.d("ModuleListener.testRunEnded(%d, %s)", elapsedTime, metrics.toString()); in testRunEnded()
145 CLog.d("ModuleListener.testRunFailed(%s)", errorMessage); in testRunFailed()
[all …]
/test/mlts/benchmark/src/com/android/nn/benchmark/util/
DSequenceUtils.java17 int[][] d = new int[m + 1][n + 1]; in calculateEditDistance() local
20 d[i][0] = i; in calculateEditDistance()
24 d[0][j] = j; in calculateEditDistance()
30 d[i][j] = Math.min( in calculateEditDistance()
31 Math.min(d[i - 1][j] + 1, d[i][j - 1] + 1), in calculateEditDistance()
32 d[i - 1][j - 1] + substitutionCost); in calculateEditDistance()
35 return d[m][n]; in calculateEditDistance()
/test/vts/harnesses/tradefed/src/com/android/tradefed/targetprep/
DVtsPythonVirtualenvPreparer.java134 CLog.d("Preparing python dependencies..."); in setUp()
139 CLog.d("Python virtualenv path is: " + mVenvDir); in setUp()
152 CLog.d("Python virtualenv path is: " + mVenvDir); in setUp()
178 CLog.d(String.format("Loaded %s: %s", LOCAL_PYPI_PATH_KEY, mLocalPypiPath)); in setLocalPypiPath()
188 CLog.d("Checking whether local pypi packages directory exists"); in setLocalPypiPath()
191 CLog.d("Local pypi packages directory not specified by env var %s", in setLocalPypiPath()
195 CLog.d("Set local pypi packages directory to %s", pypiPath); in setLocalPypiPath()
200 CLog.d("Failed to set local pypi packages path. Therefore internet connection to " in setLocalPypiPath()
211 CLog.d("Directory %s does not exist.", pathDir); in dirExistsAndHaveReadAccess()
218 CLog.d(String.format("Failed to read dir: %s. Result %s. stdout: %s, stderr: %s", in dirExistsAndHaveReadAccess()
[all …]
DVtsDevicePreparer.java260 CLog.d("Radio modem log configured but the setting is not available " in radioLogPreRebootSetup()
268 CLog.d("Turing on radio modem log."); in radioLogPreRebootSetup()
290 CLog.d("Turing off radio modem log."); in radioLogPreTearDown()
294 CLog.d("Turing on radio modem log."); in radioLogPreTearDown()
/test/mlts/benchmark/results/
DChart.bundle.min.js10d=i[o]={exports:{}};e[o][0].call(d.exports,function(t){var i=e[o][1][t];return a(i||t)},d,d.export… property
Dgenerate_result.py233 val=v, diff=d, span=get_diff_span(d, 1.0, positive_is_better=True))
234 for v, d in zip(val, diff)]
256 val=v, diff=d, span=get_diff_span(d, 1.0, positive_is_better=False))
257 for v, d in zip(val, diff)]
278 val=v, diff=d, span=get_diff_span(d, 1.0, positive_is_better=False))
279 for v, d in zip(val, diff)]
/test/vts/testcases/host/firmware_dtbo_test/src/com/android/tests/firmwaredtbo/
DFirmwareDtboVerification.java79 CLog.d("mTemptFolder: %s", mTemptFolder); in oneTimeSetup()
106 CLog.d("DTBO path %s", dtboPaths); in testCheckDTBOPartition()
111 CLog.d("hostDtboImage is %s", hostDtboImage); in testCheckDTBOPartition()
147 CLog.d("dtboItems[%s] is %s", i, dtboItems[i]); in decompressDTEntries()
154 CLog.d("Checking %s", dt_entry_file.getAbsolutePath()); in decompressDTEntries()
160 CLog.d("compression_format= %s", compression_format); in decompressDTEntries()
170 CLog.d("Decompressing %s with ZLIB_COMPRESSION", in decompressDTEntries()
178 CLog.d("Decompressing %s with GZIP_COMPRESSION", in decompressDTEntries()
189 CLog.d("fdt_magic: 0x%s", Integer.toHexString(fdt_magic)); in decompressDTEntries()
214 CLog.d("overlay_idx_string=%s", overlay_idx_string); in testVerifyOverlay()
[all …]
/test/vts/tools/vts-core-tradefed/src/com/android/tradefed/testtype/suite/module/
DKernelTestModuleController.java58 CLog.d("Skipping module %s because %s is False.", getModuleName(), lowMemProp); in shouldRun()
63 CLog.d("Skipping module %s because the test is not for low memory device.", in shouldRun()
71 CLog.d("Skipping module %s because %s is not ended with _hwasan.", getModuleName(), in shouldRun()
77 CLog.d("Skipping module %s because the test is for device of hwasan.", in shouldRun()
86 CLog.d("Skipping module %s running on abi %s, which doesn't match any required setting " in shouldRun()
103 CLog.d("Cannot get the prop of %s.", lowMemProp); in deviceLowMem()
129 CLog.d("Cannot get the prop of %s.", productNameProp); in deviceWithHwasan()
/test/app_compat/csuite/harness/src/main/java/com/android/compatibility/
DAppCompatibilityTest.java173 CLog.d("Start of launch test run method. base-dir: %s", mBaseDir); in run()
194 CLog.d("apkDir: %s.", apkDir); in run()
203 CLog.d("Completed sharding apkList. Number of items: %s", apkList.size()); in run()
207 CLog.d("Completed filtering apkList. Number of items: %s", apkList.size()); in run()
238 CLog.d("Started downloading and testing apks.");
259 CLog.d("Completed downloading and testing apks.");
273 CLog.d("apkInfo or apkFile is null.");
277 CLog.d(
332 CLog.d("Completed testing package: %s.", apkInfo.packageName);
349 CLog.d("Parsing apk file: %s.", apkFile.getAbsolutePath());
[all …]
/test/vts/testcases/host/fastboot_getvar/src/com/android/tests/
DFastbootGetvarUserspaceTest.java85 CLog.d("cpuAbi: '%s'", cpuAbi); in testCpuAbiInfo()
93 CLog.d("os version: '%s'", osVersion); in testOsVersion()
108 CLog.d("vndk version: '%s'", vndkVersion); in testVndkVersion()
123 CLog.d("dynamic_partition: '%s'", dynamic_partition); in testDynamicPartition()
131 CLog.d("treble_enabled: '%s'", treble_enabled); in testTrebleEnable()
139 CLog.d("first_api_level: '%s'", first_api_level); in testFirstApiLevel()
152 CLog.d("SPL: '%s'", SPL); in testSecurityPatchLevel()
165 CLog.d("system fingerprint: '%s'", systemFingerprint); in testSystemFingerprint()
173 CLog.d("vendor fingerprint: '%s'", vendorFingerprint); in testVendorFingerprint()
/test/vts/harnesses/tradefed/src/com/android/tradefed/util/
DCmdUtil.java77 CLog.d("Running a command: %s", cmd); in retry()
79 CLog.d("Command output: %s", out); in retry()
117 CLog.d("Running a command: %s", cmd); in retry()
142 CLog.d("validating cmd output: %s", out); in validateCmdSuccess()
144 CLog.d("Exit condition satisfied."); in validateCmdSuccess()
147 CLog.d("Exit condition not satisfied. Waiting for %s more seconds.", in validateCmdSuccess()
DVtsVendorConfigFileUtil.java76 CLog.d("Loading vendor test config %s", configPath); in LoadVendorConfig()
79 CLog.d("Vendor test config file %s does not exist", configPath); in LoadVendorConfig()
88 CLog.d("Loaded vendor test config %s", content); in LoadVendorConfig()
124 CLog.d("No default vendor test configuration provided. Defaulting to prod."); in LoadVendorConfig()
/test/app_compat/csuite/harness/src/main/java/com/android/compatibility/testtype/
DAppLaunchTest.java135 CLog.d("Start of run method."); in run()
136 CLog.d("Include filters: %s", mIncludeFilters); in run()
137 CLog.d("Exclude filters: %s", mExcludeFilters); in run()
144 CLog.d("Test case %s doesn't match any filter", testDescription); in run()
147 CLog.d("Complete filtering test case: %s", testDescription); in run()
177 CLog.d("Started testing package: %s.", mPackageName); in testPackage()
207 CLog.d("Completed testing package: %s.", mPackageName); in testPackage()
222 CLog.d("Launching package: %s.", result.packageName); in launchPackage()
235 CLog.d("Stack Trace: %s", failureListener.getStackTrace()); in launchPackage()
245 CLog.d("Completed launching package: %s", result.packageName); in launchPackage()
/test/vts/testcases/host/firmware_test/src/com/android/tests/firmware/
DFirmwareBootHeaderVerification.java136 CLog.d("Boot path %s", bootPaths); in testBootImageHeader()
141 CLog.d("Remote boot path %s", bootPaths); in testBootImageHeader()
142 CLog.d("Local boot path %s", localBootImg.getAbsolutePath()); in testBootImageHeader()
154 CLog.d("Recovery path %s", recoveryPaths); in testRecoveryImageHeader()
160 CLog.d("Remote boot path %s", recoveryPaths); in testRecoveryImageHeader()
161 CLog.d("Local boot path %s", localRecoveryImg.getAbsolutePath()); in testRecoveryImageHeader()
/test/app_compat/csuite/instrumentation/launch/src/main/java/com/android/compatibilitytest/
DAppCompatibility.java145 Log.d(TAG, "Launching app " + packageName); in testAppStability()
186 Log.d( in testAppStability()
278 Log.d( in launchActivity()
333 Log.d(TAG, "activity starting: " + intent.getComponent().toShortString()); in activityStarting()
339 Log.d(TAG, "activity resuming: " + pkg); in activityResuming()
352 Log.d(TAG, "app crash: " + processName); in appCrashed()
368 Log.d(TAG, "app ANR: " + processName); in appNotResponding()
/test/vts-testcase/kernel/encryption/
Dadiantum.cpp104 #define CHACHA_QUARTERROUND(a, b, c, d) \ argument
107 d = rol32(d ^ a, 16); \
108 c += d; \
111 d = rol32(d ^ a, 8); \
112 c += d; \
/test/vts-testcase/hal/usb/gadget/V1_0/host/src/com/android/tests/usbgadget/
DHalUsbGadgetV1_0HostTest.java82 for (InterfaceDescriptor d : descriptors) { in checkProtocol()
83 if (Byte.toUnsignedInt(d.bInterfaceClass) == usbClass in checkProtocol()
84 && Byte.toUnsignedInt(d.bInterfaceSubClass) == usbSubClass in checkProtocol()
85 && Byte.toUnsignedInt(d.bInterfaceProtocol) == usbProtocol) { in checkProtocol()
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
DJarHostTest.java82 CLog.d("HostTestListener.testRunStarted(%s, %d)", name, numTests); in testRunStarted()
90 CLog.d("HostTestListener.testRunEnded(%d, %s)", elapsedTime, metrics.toString()); in testRunEnded()
99 CLog.d("HostTestListener.testRunEnded(%d, %s)", elapsedTime, metrics.toString()); in testRunEnded()
DModuleDef.java257 CLog.d("Running module %s", toString()); in run()
260 CLog.d("Test: %s", mTest.getClass().getSimpleName()); in run()
278 CLog.d("Cleaner: %s", cleaner.getClass().getSimpleName()); in runPreparerTeardowns()
346 CLog.d("Skipping Preparer: %s since it is not in the whitelist %s", in runPreparerSetup()
350 CLog.d("Preparer: %s", preparer.getClass().getSimpleName()); in runPreparerSetup()
/test/mlts/benchmark/dogfood/src/com/android/nn/dogfood/
DBenchmarkJobService.java63 Log.d(TAG, String.format("NN API Benchmarking job %d/%d started", getNumRuns(), NUM_RUNS)); in onStartJob()
72 Log.d(TAG, String.format("NN API Benchmarking job %d/%d stopped", getNumRuns(), NUM_RUNS)); in onStopJob()
108 Log.d(TAG, "NN API Benchmarking job finished"); in onBenchmarkFinish()
113 Log.d( in onStatusUpdate()
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowCoverageOverviewServlet.java169 return d -> d.getBranch().equals(branch) && d.getBuildFlavor().equals(device); in isBranchAndDevice()
173 return d -> d.getBranch().equals(branch); in isBranch()
177 return d -> d.getBuildFlavor().equals(device); in isDevice()
/test/vti/dashboard/src/test/java/com/android/vts/job/
DVtsProfilingStatsJobServletTest.java82 Date d = new Date(); in createProfilingRun() local
83 long time = TimeUnit.MILLISECONDS.toMicros(d.getTime()); in createProfilingRun()
214 Date d = new Date(); in testNewSummary() local
215 long time = TimeUnit.MILLISECONDS.toMicros(d.getTime()); in testNewSummary()
295 Date d = new Date(); in testUpdateSummary() local
296 long time = TimeUnit.MILLISECONDS.toMicros(d.getTime()); in testUpdateSummary()
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/suite/
DCertificationSuiteResultReporter.java227 CLog.d("Saved logs for %s in %s", name, logFile.getAbsolutePath()); in testLog()
294 CLog.d("Initializing result directory"); in initializeResultDirectories()
312 CLog.d("Results Directory: %s", mResultDir.getAbsolutePath()); in initializeResultDirectories()
321 CLog.d("Created log dir %s", mLogDir.getAbsolutePath()); in initializeResultDirectories()
541 CLog.d("Result XML URL: %s", logFile.getUrl()); in saveLog()
555 CLog.d("Result zip URL: %s", logFile.getUrl()); in saveLog()
587 CLog.d("Result Server: %d", mUploader.uploadResult(resultFile, mReferenceUrl)); in uploadResult()

123