Home
last modified time | relevance | path

Searched refs:file (Results 1 – 25 of 202) sorted by relevance

123456789

/test/mts/tools/mts-tradefed/res/config/
DOWNERS1 per-file mts-art*.xml = rpl@google.com
2 per-file mts-sdkextensions*.xml = file: platform/packages/modules/SdkExtensions:/OWNERS
3 per-file mts-bluetooth*.xml = file: platform/packages/modules/Bluetooth/:/pandora/OWNERS
4 per-file mts-mediaprovider*.xml = file: platform/frameworks/base:/core/java/android/os/storage/OWNE…
5 per-file mts-media.xml = file: platform/frameworks/av/:/media/janitors/reliability_mainline_OWNERS
6 per-file mts-media-*.xml = file: platform/frameworks/av/:/media/janitors/reliability_mainline_OWNERS
7 per-file mts-rkpd*.xml = file: platform/packages/modules/RemoteKeyProvisioning:/OWNERS
8 per-file mts-ondevicepersonalization*.xml = file: platform/packages/modules/OnDevicePersonalization…
/test/vts-testcase/security/avb/
DOWNERS4 per-file Android.bp = isaacmanjarres@google.com
5 per-file kernel_version* = file:kernel/configs:/OWNERS
6 per-file data/kernel_version* = file:kernel/configs:/OWNERS
7 per-file gsi_validation_utils* = isaacmanjarres@google.com
8 per-file vts_gki_compliance_test.cpp = isaacmanjarres@google.com
/test/mlts/benchmark/tools/
Dgen_tflite_visualization.sh26 for file in "$MODEL_DIR"/*.tflite
28 if [ -f "$file" ]; then
29 filename=`basename $file`
31 bazel run //tensorflow/lite/tools:visualize $file $HTML_DIR/$modelname.html
/test/app_compat/csuite/harness/src/main/java/com/android/csuite/core/
DDirectoryBasedModuleInfoProvider.java75 .filter(file -> file.getPath().toLowerCase().endsWith(".apk")) in get()
77 file -> { in get()
80 file.getName(), in get()
82 file.getName(), in get()
85 mPackageNameParser.parsePackageName(file), in get()
87 file.getPath()))); in get()
DPackagesFileModuleInfoProvider.java28 import java.nio.file.Files;
56 file -> { in get()
58 return Files.readAllLines(file.toPath()).stream(); in get()
DFileBasedTemplateMappingProvider.java27 import java.nio.file.Files;
55 for (File file : mTemplateMappingFiles) { in get()
57 Files.readAllLines(file.toPath()).stream() in get()
DAppCrawlTesterHostPreparer.java34 import java.nio.file.FileSystem;
35 import java.nio.file.FileSystems;
36 import java.nio.file.Files;
37 import java.nio.file.Path;
DRoboLoginConfigProvider.java24 import java.nio.file.Files;
25 import java.nio.file.Path;
/test/dittosuite/
DREADME.md25 $ ./dittobench [options] [.ditto file]
28 To run a benchmark, a well formed .ditto file must be provided, see section
44 Every .ditto file should begin with this skeleton:
202 Opens the file with a file path or a shared variable name pointing to a file path. If neither of
204 file descriptor which can then be used by subsequent instructions. Also, can optionally create the
205 file if it does not already exist.
208 - (optional) `string path_name` - Specifies the file path.<br/>
210 `string input` - Shared variable name pointing to a file path.
211 - (optional) `string output_fd` - Shared variable name to which output file descriptor
213 - (optional) `bool create` (`default = true`) - Specifies if the file should be created if it does
[all …]
DCMakeLists.txt16 file(GLOB libditto_src
20 file(GLOB_RECURSE ditto_benchmarks
/test/dittosuite/test/
Dread_directory_test.cpp35 for (const auto& file : files) { in SetUp() local
36 ASSERT_NE(open(file.c_str(), O_CREAT | O_CLOEXEC, S_IRUSR | S_IWUSR), -1); in SetUp()
41 for (const auto& file : files) { in TearDown() local
42 ASSERT_NE(unlink(file.c_str()), -1); in TearDown()
DCMakeLists.txt29 file(GLOB ditto_test_srcs
32 file(COPY ../example DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/
DDynamicConfigFileReader.java44 public static String getValueFromConfig(File file, String key) in getValueFromConfig() argument
47 config.initializeConfig(file); in getValueFromConfig()
59 public static List<String> getValuesFromConfig(File file, String key) in getValuesFromConfig() argument
62 config.initializeConfig(file); in getValuesFromConfig()
DCollectorUtil.java97 private static String readFile(File file) throws IOException { in readFile() argument
99 try (BufferedReader reader = new BufferedReader(new FileReader(file))) { in readFile()
115 private static void writeFile(File file, String jsonString) throws IOException { in writeFile() argument
116 file.createNewFile(); in writeFile()
117 try (BufferedWriter writer = new BufferedWriter(new FileWriter(file))) { in writeFile()
/test/vts-testcase/nbu/src/
DREADME.md29 This is a zip file that you have downloaded.
31 The zip file includes:
33 * this README file
50 #### Create a test config file
52 Based on the two devices' serial numbers, we need to create a config file.
54 Create a plain text file `config.yaml` in the following format, with the `<>`
87 First, you need to put the file `config.yaml` in the same directory as the
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/suite/
DCertificationChecksumHelper.java111 File file = new File(directory, NAME); in saveToFile() local
113 try (FileOutputStream fileStream = new FileOutputStream(file, false); in saveToFile()
219 private void addFile(File file, String path) { in addFile() argument
222 crc = calculateFileChecksum(file); in addFile()
226 String key = path + SEPARATOR + file.getName(); in addFile()
230 private static byte[] calculateFileChecksum(File file) throws ChecksumValidationException { in calculateFileChecksum() argument
232 try (FileInputStream fis = new FileInputStream(file); in calculateFileChecksum()
/test/suite_harness/common/host-side/util/tests/src/com/android/compatibility/common/util/
DDynamicConfigHandlerTest.java136 File file = File.createTempFile(module, "dynamic"); in createFileFromStr() local
139 stream = new FileOutputStream(file); in createFileFromStr()
145 return file; in createFileFromStr()
/test/mlts/benchmark/src/com/android/nn/benchmark/core/
DTestModelsListLoader.java172 for (String file : assetManager.list(MODELS_LIST_ROOT)) { in parseFromAssets()
173 if (!file.endsWith(".json")) { in parseFromAssets()
178 assetManager.open(MODELS_LIST_ROOT + "/" + file))); in parseFromAssets()
181 throw new IOException("JSON error in " + file, e); in parseFromAssets()
185 throw new IOException("Error while parsing " + file, e); in parseFromAssets()
/test/dittosuite/schema/
Dbenchmark.proto69 // Write a file descriptor for the file with given path into the send
73 // Write an ashmem file descriptor for a region containing the data
74 // from file the given path into the send parcel.
77 // Write the file descriptor into the send parcel.
100 oneof file { oneof
111 oneof file { oneof
/test/vts/vndk_utils/library/
DREADME.md3 * elf_parser.py: Contains ElfParser that reads metadata from an ELF file.
7 from an ELF file.
/test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
DDynamicConfigHostSide.java46 public static String getValueFromConfig(File file, String key) in getValueFromConfig() argument
48 Map<String, List<String>> configMap = DynamicConfig.createConfigMap(file); in getValueFromConfig()
/test/app_compat/csuite/harness/src/test/java/com/android/csuite/core/
DFileBasedTemplateMappingProviderTest.java33 import java.nio.file.Files;
34 import java.nio.file.Path;
134 private FileBasedTemplateMappingProvider createSubjectUnderTest(String file) in createSubjectUnderTest() argument
139 FileBasedTemplateMappingProvider.TEMPLATE_MAPPING_FILE_OPTION, file); in createSubjectUnderTest()
/test/dittosuite/src/
Dparser.cpp87 std::ifstream file(file_path); in ParseFile() local
88 if (!file.is_open()) { in ParseFile()
92 std::string json_benchmark((std::istreambuf_iterator<char>(file)), in ParseFile()
/test/app_compat/csuite/harness/src/main/java/com/android/csuite/config/
DAppRemoteFileResolver.java266 if (!optionSource.file.exists()) { in resolveUriToFile()
267 CLog.w("URI (%s) resolved to non-existent local file (%s)", uri, optionSource.file); in resolveUriToFile()
269 CLog.i("URI (%s) resolved to local file (%s)", uri, optionSource.file); in resolveUriToFile()
272 return optionSource.file; in resolveUriToFile()
280 public File file; field in AppRemoteFileResolver.FileOptionSource
/test/vts-testcase/kernel/api/bpf_native_test/
DOWNERS3 file:platform/system/bpf:main:/OWNERS_bpf

123456789