Home
last modified time | relevance | path

Searched refs:d (Results 1 – 25 of 57) 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.java708 CLog.d("Using default test case template at %s.", template); in run()
753 CLog.d("Populating default fields to json object from %s", DEFAULT_TESTCASE_CONFIG_PATH); in populateDefaultJsonFields()
810 CLog.d("Load original test config %s %s", mTestCaseDir, mTestConfigPath); in updateVtsRunnerTestConfig()
816 CLog.d("Loaded original test config %s", content); in updateVtsRunnerTestConfig()
823 CLog.d("Built a Json object using the loaded original test config"); in updateVtsRunnerTestConfig()
870 CLog.d("Setting test module name as %s", testName); in updateVtsRunnerTestConfig()
897 CLog.d("Added %s = %s to the Json object", DATA_FILE_PATH, mTestCaseDir); in updateVtsRunnerTestConfig()
903 CLog.d("Added %s to the Json object", BUILD); in updateVtsRunnerTestConfig()
908 CLog.d("Added include filter to test suite: %s", mIncludeFilters); in updateVtsRunnerTestConfig()
910 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.java132 CLog.d("Python virtualenv path is: " + mVenvDir); in setUp()
154 CLog.d("Deleted the virtual env's temp working dir, %s.", mVenvDir); in tearDown()
174 CLog.d(String.format("Loaded %s: %s", LOCAL_PYPI_PATH_KEY, mLocalPypiPath)); in setLocalPypiPath()
184 CLog.d("Checking whether local pypi packages directory exists"); in setLocalPypiPath()
187 CLog.d("Local pypi packages directory not specified by env var %s", in setLocalPypiPath()
191 CLog.d("Set local pypi packages directory to %s", pypiPath); in setLocalPypiPath()
196 CLog.d("Failed to set local pypi packages path. Therefore internet connection to " in setLocalPypiPath()
207 CLog.d("Directory %s does not exist.", pathDir); in dirExistsAndHaveReadAccess()
214 CLog.d(String.format("Failed to read dir: %s. Result %s. stdout: %s, stderr: %s", in dirExistsAndHaveReadAccess()
223 CLog.d("Failed to read dir: %s. Please check access permission.", pathDir); 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()
DVtsCoveragePreparer.java117 CLog.d("Coverage disabled."); in setUp()
121 CLog.d("Sanitizer coverage processing enabled."); in setUp()
124 CLog.d("Gcov coverage processing enabled."); in setUp()
DVtsTraceCollectPreparer.java149 CLog.d("No files found in %s", profilerLibDir.getAbsolutePath()); in pushProfilerLib()
157 CLog.d("Pushing %s", fileName); in pushProfilerLib()
/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… function
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/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()
DProcessHelper.java133 CLog.d(newReadPrint); in run()
191 CLog.d("Process terminates normally."); in run()
213 CLog.d("Execution thread has not started."); in cancel()
/test/vts-testcase/kernel/api/rootdir/
DVtsKernelRootDirTest.py205 for d in self._ListDir(dir_path, "dir"):
206 if d in _ALLOWED_DIRS and _ALLOWED_DIRS[d] == "check_content":
207 dirs.extend(self._TraverseRootDir(d))
219 error_msg.extend("Unexpected dir: " + d for d in unexpected_dirs)
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
DJarHostTest.java80 CLog.d("HostTestListener.testRunStarted(%s, %d)", name, numTests); in testRunStarted()
88 CLog.d("HostTestListener.testRunEnded(%d, %s)", elapsedTime, metrics.toString()); in testRunEnded()
97 CLog.d("HostTestListener.testRunEnded(%d, %s)", elapsedTime, metrics.toString()); in testRunEnded()
DModuleDef.java254 CLog.d("Running module %s", toString()); in run()
257 CLog.d("Test: %s", mTest.getClass().getSimpleName()); in run()
275 CLog.d("Cleaner: %s", cleaner.getClass().getSimpleName()); in runPreparerTeardowns()
343 CLog.d("Skipping Preparer: %s since it is not in the whitelist %s", in runPreparerSetup()
347 CLog.d("Preparer: %s", preparer.getClass().getSimpleName()); in runPreparerSetup()
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/suite/
DCertificationSuiteResultReporter.java173 CLog.d("Saved logs for %s in %s", name, logFile.getAbsolutePath()); in testLog()
246 CLog.d("Initializing result directory"); in initializeResultDirectories()
267 CLog.d("Results Directory: %s", mResultDir.getAbsolutePath()); in initializeResultDirectories()
277 CLog.d("Created log dir %s", mLogDir.getAbsolutePath()); in initializeResultDirectories()
476 CLog.d("Result XML URL: %s", logFile.getUrl()); in saveLog()
490 CLog.d("Result zip URL: %s", logFile.getUrl()); in saveLog()
522 CLog.d("Result Server: %d", mUploader.uploadResult(resultFile, mReferenceUrl)); in uploadResult()
DPreviousSessionFileCopier.java99 CLog.d("Copying %s to new session.", oldChild.getName()); in copyRetryFiles()
133 CLog.d("Results Directory: %s", resultDir.getAbsolutePath()); in getResultDirectory()
/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/mlts/models/assets/mobilenet_quantized/
Dcup_v2_1.0_224.output1 …KiJPD-+1SD??EL4(N@9?X)d+5>*=-:9FI;B@A>D3BD?A<BL�B2D10T@YY5C/<L6IF\]R__U3QI>!G'AA5ACR0@a=F>.<C`=<L…
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
DSettingsPreparer.java100 CLog.d("Changing value for %s from %s to %s", in run()
109 CLog.d("Setting %s to value %s", mSettingName, mSetValue); in run()
DBusinessLogicPreparer.java202 CLog.d("BusinessLogic connection failure message: %s\nRetrying...", e.getMessage()); in setUp()
274 CLog.d("Built param string: \"%s\"", paramString); in buildRequestParams()
489 CLog.d("Business Logic Service Response Code : %s", responseCode); in doPost()
526 CLog.d("Unable to fetch the service key because neither environment variable " + in getToken()
533 CLog.d("API scope not set, use flag --business-logic-api-scope."); in getToken()
/test/vts-testcase/hal/treble/vintf/
DSystemVendorTest.cpp108 static void insert(D *d, const S &s) { in insert() argument
109 d->insert(s.begin(), s.end()); in insert()
/test/mlts/models/assets/ssd_mobilenet_v1_coco_quantized/
Dtarmac.output71d^k[[]d\PFVQg^NRTJSSEYVF^|FFbcXS]aV{aU^c_`EVUXYSNfYOWQ[QHQQq_YeFeFFUFJVUNQMHKLVWFcPX\MS\F�Z`Zdg^`[…

123