Home
last modified time | relevance | path

Searched refs:src (Results 1 – 25 of 108) sorted by relevance

12345

/test/vts/testcases/template/binary_test/
Dbinary_test.py254 for src, dst, tag in source_list:
255 if src:
256 if os.path.isdir(src):
257 src = os.path.join(src, '.')
258 logging.debug('Pushing from %s to %s.', src, dst)
259 self._dut.adb.push('{src} {dst}'.format(src=src, dst=dst))
266 for src, dst, tag in source_list:
336 self.ParseTestSource(src) for src in self.binary_test_source
339 paths = [dst for src, dst, tag in sources if src and dst]
378 src = path
[all …]
/test/vti/test_serving/gae/webapp/src/
Dwebapp_main.py22 from webapp.src.handlers import base
23 from webapp.src.scheduler import device_heartbeat
24 from webapp.src.scheduler import job_heartbeat
25 from webapp.src.scheduler import periodic
26 from webapp.src.tasks import indexing
27 from webapp.src.tasks import removing_outdated_devices
Dendpoint_main.py20 from webapp.src.endpoint import build_info
21 from webapp.src.endpoint import host_info
22 from webapp.src.endpoint import job_queue
23 from webapp.src.endpoint import lab_info
24 from webapp.src.endpoint import schedule_info
Dworker_main.py18 from webapp.src.tasks import indexing
19 from webapp.src.scheduler import schedule_worker
/test/vti/test_serving/gae/script/
Ddeploy-endpoint.sh29src.endpoint.build_info.BuildInfoApi webapp.src.endpoint.host_info.HostInfoApi webapp.src.endpoint…
Dbuild.sh32 python lib/endpoints/endpointscfg.py get_openapi_spec webapp.src.endpoint.build_info.BuildInfoApi -…
33 python lib/endpoints/endpointscfg.py get_openapi_spec webapp.src.endpoint.host_info.HostInfoApi --h…
34 python lib/endpoints/endpointscfg.py get_openapi_spec webapp.src.endpoint.schedule_info.ScheduleInf…
35 python lib/endpoints/endpointscfg.py get_openapi_spec webapp.src.endpoint.lab_info.LabInfoApi --hos…
/test/framework/harnesses/host_controller/command_processor/
Dcommand_sheet.py133 src_path = self.console.FormatString(args.src)
266 def _GetResultAsXml(src, temp_dir): argument
281 original_src = src
282 if src.startswith("gs://"):
283 src = _DownloadResultZipFromGcs(src, os.path.join(temp_dir, "zipped"))
284 if not src:
287 if zipfile.is_zipfile(src):
288 with zipfile.ZipFile(src, mode="r") as zip_file:
289 src = result_utils.ExtractResultZip(
291 if not src:
[all …]
/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
57 if (device.doesFileExist(src)) { in pullFromDevice()
58 String listCommand = String.format("ls %s", src); in pullFromDevice()
64 String srcPath = String.format("%s%s", src, fileName); in pullFromDevice()
80 public static void pullFromHost(File src, File dest) { in pullFromHost() argument
82 if (src.listFiles() != null) { in pullFromHost()
83 FileUtil.recursiveCopy(src, dest); in pullFromHost()
85 FileUtil.recursiveDelete(src); in pullFromHost()
/test/mlts/benchmark/
DAndroid.mk27 LOCAL_SRC_FILES := $(call all-java-files-under, src)
44 LOCAL_SRC_FILES := $(call all-java-files-under, src/com/android/nn/benchmark/core) \
45 $(call all-java-files-under, src/com/android/nn/benchmark/evaluators) \
46 $(call all-java-files-under, src/com/android/nn/benchmark/imageprocessors) \
47 $(call all-java-files-under, src/com/android/nn/benchmark/util)
/test/mlts/benchmark/dogfood/
DAndroid.mk27 LOCAL_SRC_FILES := $(call all-java-files-under, src) \
28 $(call all-java-files-under, ../src/com/android/nn/benchmark/core) \
29 $(call all-java-files-under, ../src/com/android/nn/benchmark/evaluators) \
30 $(call all-java-files-under, ../src/com/android/nn/benchmark/imageprocessors) \
31 $(call all-java-files-under, ../src/com/android/nn/benchmark/util)
/test/vts-testcase/kernel/ltp/testcase/
DAndroid.bp19 src: "phony_ltp_test_arm64.sh",
35 src: "phony_ltp_test_arm64_lowmem.sh",
51 src: "phony_ltp_test_arm64_hwasan.sh",
67 src: "phony_ltp_test_arm64_lowmem_hwasan.sh",
83 src: "phony_ltp_test_arm.sh",
99 src: "phony_ltp_test_arm_lowmem.sh",
115 src: "phony_ltp_test_x86_64.sh",
131 src: "phony_ltp_test_x86.sh",
/test/vti/test_serving/gae/webapp/src/scheduler/
Djob_heartbeat.py24 from webapp.src import vtslab_status as Status
25 from webapp.src.proto import model
26 from webapp.src.utils import email_util
27 from webapp.src.utils import logger
28 from webapp.src.utils import model_util
Djob_heartbeat_test.py26 from webapp.src import vtslab_status as Status
27 from webapp.src.proto import model
28 from webapp.src.scheduler import job_heartbeat
29 from webapp.src.scheduler import schedule_worker
30 from webapp.src.testing import unittest_base
Ddevice_heartbeat.py24 from webapp.src import vtslab_status as Status
25 from webapp.src.proto import model
26 from webapp.src.utils import email_util
27 from webapp.src.utils import logger
/test/vts-testcase/kernel/encryption/
Dvts_kernel_encryption.h31 const uint8_t *src, uint8_t *dst, int nbytes) const { in Encrypt() argument
36 return DoEncrypt(key.data(), iv, src, dst, nbytes); in Encrypt()
39 const uint8_t *src, uint8_t *dst,
53 bool DoEncrypt(const uint8_t *key, const uint8_t *iv, const uint8_t *src,
68 bool DoEncrypt(const uint8_t *key, const uint8_t *iv, const uint8_t *src,
Dadiantum.cpp133 const uint8_t nonce[kXChaChaNonceSize], const uint8_t *src, in XChaCha() argument
161 dst[i + j] = src[i + j] ^ keystream.bytes[j]; in XChaCha()
179 const uint8_t *src, uint8_t *dst, int nbytes) { in XChaCha12() argument
180 XChaCha(key, nonce, src, dst, nbytes, 12); in XChaCha12()
283 const uint8_t *src, uint8_t *dst, in DoEncrypt() argument
309 AdiantumHash(&subkeys[kAes256KeySize], iv, src, bulk_len, hash); in DoEncrypt()
310 le128_add(rbuf, &src[bulk_len], hash); in DoEncrypt()
317 XChaCha12(key, rbuf, src, dst, bulk_len); in DoEncrypt()
/test/vts/harnesses/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
DVtsFilePusher.java153 File src = new File(pair[0]); in pushFileGroups() local
155 if (!src.isAbsolute()) { in pushFileGroups()
156 src = resolveRelativeFilePath(buildInfo, pair[0]); in pushFileGroups()
161 if (!src.exists()) { in pushFileGroups()
171 if ((src.isDirectory() && !device.pushDir(src, pair[1])) || in pushFileGroups()
172 (!device.pushFile(src, pair[1]))) { in pushFileGroups()
/test/vti/test_serving/gae/webapp/src/endpoint/
Dhost_info_test.py25 from webapp.src import vtslab_status as Status
26 from webapp.src.endpoint import host_info
27 from webapp.src.proto import model
28 from webapp.src.testing import unittest_base
Dschedule_info_test.py25 from webapp.src import vtslab_status as Status
26 from webapp.src.endpoint import schedule_info
27 from webapp.src.proto import model
28 from webapp.src.testing import unittest_base
Djob_queue.py21 from webapp.src import vtslab_status as Status
22 from webapp.src.endpoint import endpoint_base
23 from webapp.src.proto import model
24 from webapp.src.utils import email_util
25 from webapp.src.utils import model_util
/test/vts-testcase/kernel/linux_kselftest/testcases/
DAndroid.bp19 src: "phony_kselftest_arm64.sh",
26 src: "phony_kselftest_arm.sh",
33 src: "phony_kselftest_x86_64.sh",
40 src: "phony_kselftest_x86.sh",
/test/vts/utils/python/coverage/
Darc_summary_test.py34 src = block_summary.BlockSummary(0, 0)
37 arc = arc_summary.ArcSummary(src, dst, flag)
38 src.exit_arcs.append(arc)
41 self.assertEqual(len(src.exit_arcs), 0)
/test/vti/test_serving/gae/webapp/src/utils/
Dmodel_util_test.py26 from webapp.src import vtslab_status as Status
27 from webapp.src.proto import model
28 from webapp.src.scheduler import schedule_worker
29 from webapp.src.testing import unittest_base
30 from webapp.src.utils import model_util
/test/app_compat/csuite/harness/
DAndroid.bp18 "src/main/java/**/*.java",
21 "src/main/resources",
31 "src/test/java/**/*.java",
/test/vti/test_serving/gae/webapp/src/tasks/
Dremoving_outdated_devices_test.py26 from webapp.src.proto import model
27 from webapp.src.tasks import removing_outdated_devices
28 from webapp.src.testing import unittest_base

12345