Home
last modified time | relevance | path

Searched refs:dest (Results 1 – 7 of 7) sorted by relevance

/test/vts-testcase/kernel/ltp/testcase/tools/
Dgen_ltp_config.py42 dest='arch',
48 dest='bitness',
54 dest='is_low_mem',
60 dest='is_hwasan',
66 dest='run_staging',
/test/mlts/benchmark/src/com/android/nn/benchmark/core/
DLatencyResult.java91 public void writeToParcel(Parcel dest, int flags) { in writeToParcel() argument
92 dest.writeFloat(mTotalTimeSec); in writeToParcel()
93 dest.writeInt(mIterations); in writeToParcel()
94 dest.writeFloat(mTimeStdDeviation); in writeToParcel()
95 dest.writeFloat(mTimeFreqStartSec); in writeToParcel()
96 dest.writeFloat(mTimeFreqStepSec); in writeToParcel()
97 dest.writeInt(mTimeFreqSec.length); in writeToParcel()
98 dest.writeFloatArray(mTimeFreqSec); in writeToParcel()
DBenchmarkResult.java138 public void writeToParcel(Parcel dest, int flags) { in writeToParcel() argument
139 dest.writeParcelable(mLatencyInference, flags); in writeToParcel()
140 dest.writeParcelable(mLatencyCompileWithoutCache, flags); in writeToParcel()
141 dest.writeParcelable(mLatencySaveToCache, flags); in writeToParcel()
142 dest.writeParcelable(mLatencyPrepareFromCache, flags); in writeToParcel()
143 dest.writeFloat(mSumOfMSEs); in writeToParcel()
144 dest.writeFloat(mMaxSingleError); in writeToParcel()
145 dest.writeString(mTestInfo); in writeToParcel()
146 dest.writeInt(mNumberOfEvaluatorResults); in writeToParcel()
147 dest.writeStringArray(mEvaluatorKeys); in writeToParcel()
[all …]
/test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/util/
DCollectorUtilTest.java70 File dest = new File(tempDir, "dest"); in testMerge() local
72 FileUtil.writeToFile(reformatedBaseJson2, dest); in testMerge()
74 CollectorUtil.merge(src, dest); in testMerge()
75 String mergedJson = FileUtil.readStringFromFile(dest); in testMerge()
/test/app_compat/csuite/harness/src/main/java/com/android/csuite/core/
DApkInstaller.java202 String dest = in createObbInstallCommands()
206 "adb", "-s", deviceSerial, "shell", "rm", "-f", dest in createObbInstallCommands()
210 "adb", "-s", deviceSerial, "push", path.toString(), dest in createObbInstallCommands()
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/
DCollectorUtil.java57 public static void pullFromHost(File src, File dest) { in pullFromHost() argument
61 File destReportLog = new File(dest, srcReportLog.getName()); in pullFromHost()
/test/vts-testcase/kernel/encryption/
Dutils.cpp316 std::vector<uint8_t> dest(destLen); in VerifyDataRandomness() local
321 ret = LzmaCompress(dest.data(), &destLen, bytes.data(), bytes.size(), in VerifyDataRandomness()