Home
last modified time | relevance | path

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

123456789

/test/vts/utils/python/coverage/
Dsancov_utils.py174 file = None
180 file = entry_parts[-1].rsplit(':')[0]
182 if file.startswith(path):
183 file = None
186 elif len(entry_parts) == 3 and file is not None:
192 if file not in file_vectors:
193 file_vectors[file] = [-1] * line
194 if line > len(file_vectors[file]):
195 file_vectors[file].extend(
196 [-2] * (line - len(file_vectors[file])))
[all …]
DREADME.md12 src_file_name: string, the source file name.
13 src_file_content: string, the C/C++ source file content.
14 gcov_file_content: string, the raw gcov binary file content.
15 gcda_file_content: string, the raw gcda binary file content.
Dcoverage_report_test.py37 with open(gcno_path, 'rb') as file:
38 gcno_summary = gcno_parser.GCNOParser(file).Parse()
40 with open(gcda_path, 'rb') as file:
41 parser = gcda_parser.GCDAParser(file)
/test/vts/drivers/hal/libcodecoverage/
DGcdaFile.cpp31 if (gcov_var_.file) return false; in Open()
36 gcov_var_.file = fopen(filename_.c_str(), "rb"); in Open()
37 if (!gcov_var_.file) return false; in Open()
39 setbuf(gcov_var_.file, (char*)0); in Open()
44 if (gcov_var_.file) { in Close()
45 fclose(gcov_var_.file); in Close()
46 gcov_var_.file = 0; in Close()
57 if (!gcov_var_.file) return; in Sync()
64 fseek(gcov_var_.file, base << 2, SEEK_SET); in Sync()
65 gcov_var_.start = ftell(gcov_var_.file) >> 2; in Sync()
[all …]
/test/vts/proto/
DVtsReportMessage.proto4 // you may not use this file except in compliance with the License.
135 // coverage report per file
141 // systrace report message per file
188 // the path to the source file from the project root.
191 // the name of the project where the file can be found
208 // the directory path of a source file.
212 // the name of the source file.
249 // URL of a produced log file (e.g., stdout, stderr).
252 // Name of a log file.
261 // message). This can be used to store a log file or an XML (or HTML) report
[all …]
DVtsResourceControllerMessage.proto4 // you may not use this file except in compliance with the License.
89 // Create a handle object for a single file.
91 // Read from a handle object with one file.
93 // Write to a handle object with one file.
186 // number of bytes to read from the file
190 // data to be written into file
200 // data read from the file
202 // number of bytes written into the file if the request is a write operation
DVtsReportMessage_pb2.py31 file=DESCRIPTOR,
70 file=DESCRIPTOR,
105 file=DESCRIPTOR,
136 file=DESCRIPTOR,
189 file=DESCRIPTOR,
283 file=DESCRIPTOR,
342 file=DESCRIPTOR,
373 file=DESCRIPTOR,
453 file=DESCRIPTOR,
547 file=DESCRIPTOR,
[all …]
DVtsResourceControllerMessage_pb2.py33 file=DESCRIPTOR,
104 file=DESCRIPTOR,
159 file=DESCRIPTOR,
226 file=DESCRIPTOR,
327 file=DESCRIPTOR,
379 file=DESCRIPTOR,
445 file=DESCRIPTOR,
497 file=DESCRIPTOR,
556 file=DESCRIPTOR,
DVtsFuzzTaskMessage_pb2.py34 file=DESCRIPTOR,
61 file=DESCRIPTOR,
102 file=DESCRIPTOR,
161 file=DESCRIPTOR,
234 file=DESCRIPTOR,
314 file=DESCRIPTOR,
/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/vts/utils/python/web/
Ddashboard_rest_client.py102 with tempfile.NamedTemporaryFile(delete=False) as file:
103 file.write(post_bytes)
105 self.post_cmd.format(path=file.name),
110 os.remove(file.name)
/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/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
/test/vti/test_serving/configs/infra/prod/vtslab-config-prod/
Dacl.cfg1 # Schema for this file:
4 # This file is sensitive. project_access_group specifies a super group
6 # This file is cached in process memory of instances for 10min
/test/vti/test_serving/configs/infra/test/vtslab-config-test/
Dacl.cfg1 # Schema for this file:
4 # This file is sensitive. project_access_group specifies a super group
6 # This file is cached in process memory of instances for 10min
/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/vti/dashboard/gradle/
Dprofiles.gradle16 apply from: rootProject.file('gradle/profile_prod.gradle');
21 apply from: rootProject.file('gradle/profile_staging.gradle');
26 apply from: rootProject.file('gradle/profile_default.gradle');
/test/vts/utils/native/trace_processor/
DVtsTraceProcessor.cpp238 struct dirent* file; in CleanupTraces() local
239 while ((file = readdir(dir)) != NULL) { in CleanupTraces()
240 if (file->d_type == DT_REG) { in CleanupTraces()
245 trace_file += file->d_name; in CleanupTraces()
318 struct dirent* file; in DedupTraces() local
321 while ((file = readdir(dir)) != NULL) { in DedupTraces()
322 if (file->d_type == DT_REG) { in DedupTraces()
328 trace_file += file->d_name; in DedupTraces()
383 struct dirent* file; in SelectTraces() local
384 while ((file = readdir(coverage_dir)) != NULL) { in SelectTraces()
[all …]
DVtsCoverageProcessor.cpp80 struct dirent* file; in MergeCoverage() local
81 while ((file = readdir(coverage_dir)) != NULL) { in MergeCoverage()
82 if (file->d_type == DT_REG) { in MergeCoverage()
87 string coverage_file_base_name = file->d_name; in MergeCoverage()
/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
DModuleGenerator.java41 import java.nio.file.FileSystem;
42 import java.nio.file.FileSystems;
43 import java.nio.file.Files;
44 import java.nio.file.Path;
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/
Derror_msg.jsp5 ~ may not use this file except in compliance with the License. You may
22 <%@ include file='header.jsp' %>
36 <%@ include file='footer.jsp' %>
Dauth_error.jsp5 ~ may not use this file except in compliance with the License. You may
22 <%@ include file='header.jsp' %>
36 <%@ include file='footer.jsp' %>
Dshow_profiling_list.jsp5 ~ may not use this file except in compliance with the License. You may
22 <%@ include file='header.jsp' %>
42 <%@ include file='footer.jsp' %>
Dshow_test_acknowledgments.jsp5 ~ may not use this file except in compliance with the License. You may
23 <%@ include file='header.jsp' %>
50 <%@ include file='footer.jsp' %>

123456789