Home
last modified time | relevance | path

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

/test/vts-testcase/hal/script/
Dlaunch_hal_test.py58 dest='test_type',
64 dest='time_out',
70 dest='is_replay',
76 dest='disable_stop_runtime',
82 dest='package_root',
88 dest='path_root',
95 dest='test_binary_file',
100 dest='test_script_file',
105 dest='test_config_dir',
/test/mlts/benchmark/src/com/android/nn/benchmark/core/
DBenchmarkResult.java137 public void writeToParcel(Parcel dest, int flags) { in writeToParcel() argument
138 dest.writeParcelable(mLatencyInference, flags); in writeToParcel()
139 dest.writeParcelable(mLatencyCompileWithoutCache, flags); in writeToParcel()
140 dest.writeParcelable(mLatencySaveToCache, flags); in writeToParcel()
141 dest.writeParcelable(mLatencyPrepareFromCache, flags); in writeToParcel()
142 dest.writeFloat(mSumOfMSEs); in writeToParcel()
143 dest.writeFloat(mMaxSingleError); in writeToParcel()
144 dest.writeString(mTestInfo); in writeToParcel()
145 dest.writeInt(mNumberOfEvaluatorResults); in writeToParcel()
146 dest.writeStringArray(mEvaluatorKeys); in writeToParcel()
[all …]
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()
/test/framework/harnesses/host_controller/command_processor/
Dcommand_release.py114 args.branch, args.target, args.dest,
141 args.target, args.dest, args.additional_files_bucket))
230 def ReleaseCallback(self, schedule_for, account_id, branch, target, dest, argument
246 self.UploadVtslab(fetched_path, dest)
257 (schedule_for, account_id, branch, target, dest, bucket))
Dcommand_config_local.py105 dest='update_build',
Dcommand_repack.py76 self.GetDestURL(args.dest))
Dcommand_sheet.py218 client.import_csv(args.dest, csv_file.getvalue())
Dcommand_upload.py126 dest_path = self.console.FormatString(args.dest)
Dcommand_config.py372 dest='update_build',
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/
DCollectorUtil.java55 public static void pullFromDevice(ITestDevice device, String src, String dest) { in pullFromDevice() argument
65 File destFile = new File(String.format("%s/%s", dest, fileName)); in pullFromDevice()
80 public static void pullFromHost(File src, File dest) { in pullFromHost() argument
83 FileUtil.recursiveCopy(src, dest); in pullFromHost()
/test/vts/script/
Dcreate-test-project.py210 dest='test_name',
215 dest='test_plan',
220 dest='test_dir',
225 dest='test_type',
/test/vts/utils/python/coverage/
Dcoverage_utils.py724 dest="report_prefix",
729 dest="report_path",
733 "--serial", dest="serial", required=True, help="Device serial number.")
736 dest="gcov_rescource_path",
/test/framework/harnesses/host_controller/
Dconsole.py587 dest = self.FormatString(
590 self._logfile_upload_path = dest
608 infra_log_upload_command += " --dest=%s" % dest
627 return (ret != False), dest
/test/vts-testcase/kernel/encryption/
Dutils.cpp286 std::vector<uint8_t> dest(destLen); in VerifyDataRandomness() local
291 ret = LzmaCompress(dest.data(), &destLen, bytes.data(), bytes.size(), in VerifyDataRandomness()