Home
last modified time | relevance | path

Searched refs:binary (Results 1 – 18 of 18) sorted by relevance

/test/vts-testcase/performance/fmq_benchmark/
DFmqPerformanceTest.py83 binary = "/data/local/tmp/%s/mq_benchmark_service%s" % (bits, bits)
85 "chmod 755 %s" % binary,
88 "$LD_LIBRARY_PATH %s&" % (bits, binary)
97 binary = "/data/local/tmp/%s/mq_benchmark_client%s" % (bits, bits)
100 "chmod 755 %s" % binary,
102 "$LD_LIBRARY_PATH %s" % (bits, binary)
/test/vts/tools/vts-core-tradefed/src/com/android/tradefed/testtype/binary/
DKernelTargetTest.java16 package com.android.tradefed.testtype.binary;
39 public String findBinary(String binary) throws DeviceNotAvailableException { in findBinary() argument
41 return binary; in findBinary()
42 return super.findBinary(binary); in findBinary()
/test/vts/utils/python/hal/
Dhal_service_name_utils.py43 binary = VTS_TESTABILITY_CHECKER_64
45 binary = VTS_TESTABILITY_CHECKER_32
47 shell.Execute("chmod 755 %s" % binary)
48 cmd = binary
/test/vts-testcase/performance/binder_benchmark/
DBinderPerformanceTest.py109 binary = "/data/local/tmp/%s/libbinder_benchmark%s" % (bits, bits)
112 "chmod 755 %s" % binary, "LD_LIBRARY_PATH=/data/local/tmp/%s/hw:"
114 "%s --benchmark_format=json" % (bits, bits, binary)
/test/vts/script/
Ddownload-pypi-packages.sh33 …YPI_PATH -r $ANDROID_BUILD_TOP/test/vts/script/pip_requirements.txt --no-binary protobuf,grpcio,nu…
40 pip download -d $VTS_PYPI_PATH matplotlib --no-binary matplotlib,numpy
/test/vts-testcase/performance/hwbinder_benchmark/
DHwBinderPerformanceTest.py113 binary = "/data/local/tmp/%s/libhwbinder_benchmark%s" % (bits, bits)
116 "chmod 755 %s" % binary,
121 (bits, bits, bits, binary, self.hidl_hal_mode.encode("utf-8"))
/test/framework/harnesses/
DREADME.md1 To build a new CTS TF prebuilt binary
12 To test a test suite which uses that prebuilt binary
/test/vts/utils/python/coverage/
DREADME.md14 gcov_file_content: string, the raw gcov binary file content.
15 gcda_file_content: string, the raw gcda binary file content.
Dsancov_utils.py310 binary, pid, _ = os.path.basename(file).rsplit('.', 2)
313 binary_to_sancov[binary] = (bitness, offsets)
/test/vts-testcase/performance/hwbinder_latency_test/
DHwBinderLatencyTest.py101 binary = "/data/local/tmp/%s/libhwbinder_latency%s" % (bits, bits)
105 "chmod 755 %s" % binary,
110 binary, max_cpu - min_cpu, iterations,
/test/vts-testcase/performance/binder_throughput_test/
DBinderThroughputBenchmark.py150 binary = "/data/local/tmp/%s/binderThroughputTest%s" % (bits, bits)
153 ["chmod 755 %s" % binary,
156 "$LD_LIBRARY_PATH %s -w %s" % (bits, bits, binary, threads)])
/test/vts-testcase/performance/hwbinder_throughput_test/
DHwBinderThroughputBenchmark.py153 binary = "/data/local/tmp/%s/hwbinderThroughputTest%s" % (bits, bits)
156 ["chmod 755 %s" % binary,
160 …"$LD_LIBRARY_PATH %s -m %s -w %s" % (bits, bits, bits, binary, self.hidl_hal_mode.encode("utf-8"),…
/test/vts/proto/
DAndroidSystemControlMessage.proto35 // To start a fuzzer binary service and select a HAL module.
107 // Whether a target driver binary is 64-bits or 32-bits.
/test/vts-testcase/hal/treble/vintf/
DAndroid.bp57 // Test vendor image that has the highest target FCM version. This test binary
/test/vti/dashboard/src/main/java/com/android/vts/api/
DTestSuiteResultRestServlet.java29 import org.apache.commons.codec.binary.Base64;
DBigtableLegacyJsonServlet.java40 import org.apache.commons.codec.binary.Base64;
DDatastoreRestServlet.java58 import org.apache.commons.codec.binary.Base64;
/test/vts/utils/native/trace_processor/
DVtsTraceProcessor.cpp401 ifstream in(trace_file, ifstream::binary | ifstream::ate); in SelectTraces()