OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:resultDir
(Results
1 - 25
of
109
) sorted by null
1
2
3
4
5
/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
ReportLogCollector.java
60
File
resultDir
= buildHelper.getResultDir();
62
resultDir
= new File(
resultDir
, mDestDir);
64
resultDir
.mkdirs();
65
if (!
resultDir
.isDirectory()) {
66
CLog.e("%s is not a directory",
resultDir
.getAbsolutePath());
79
File
resultDir
= buildHelper.getResultDir();
81
resultDir
= new File(
resultDir
, mDestDir);
83
resultDir
.mkdirs()
[
all
...]
DeviceFileCollector.java
77
File
resultDir
= buildHelper.getResultDir();
81
mResultFile = Paths.get(
resultDir
.getAbsolutePath(), mDestFile).toFile();
82
resultDir
= mResultFile.getParentFile();
83
resultDir
.mkdirs();
84
if (!
resultDir
.isDirectory()) {
85
CLog.e("%s is not a directory",
resultDir
.getAbsolutePath());
ResultFilePuller.java
80
File
resultDir
= buildHelper.getResultDir();
82
resultDir
= new File(
resultDir
, mDestDir);
84
resultDir
.mkdirs();
85
if (!
resultDir
.isDirectory()) {
86
CLog.e("%s is not a directory",
resultDir
.getAbsolutePath());
89
String resultPath =
resultDir
.getAbsolutePath();
/cts/common/util/tests/src/com/android/compatibility/common/util/
LightInvocationResultTest.java
43
File
resultDir
= ResultHandlerTest.writeResultDir(resultsDir);
44
IInvocationResult fullResult = ResultHandler.getResultFromDir(
resultDir
);
ResultHandlerTest.java
138
private File
resultDir
= null;
143
resultDir
= FileUtil.createTempDir("12345", resultsDir);
192
result,
resultDir
, START_MS, END_MS, REFERENCE_URL, LOG_URL,
196
checkResult(ResultHandler.getResultFromDir(
resultDir
));
200
File
resultDir
= writeResultDir(resultsDir);
202
checkResult(ResultHandler.getResultFromDir(
resultDir
));
206
File
resultDir
= writeResultDir(resultsDir);
215
* @return the written
resultDir
218
File
resultDir
= null;
221
resultDir
= FileUtil.createTempDir("12345", resultsDir)
[
all
...]
/cts/common/util/src/com/android/compatibility/common/util/
IInvocationResult.java
136
void setRetryDirectory(File
resultDir
);
ResultHandler.java
127
for (File
resultDir
: files) {
128
IInvocationResult result = getResultFromDir(
resultDir
, false);
142
* @param
resultDir
145
public static IInvocationResult getResultFromDir(File
resultDir
) {
146
return getResultFromDir(
resultDir
, false);
150
* @param
resultDir
154
public static IInvocationResult getResultFromDir(File
resultDir
, Boolean useChecksum) {
156
File resultFile = new File(
resultDir
, TEST_RESULT_FILE_NAME);
162
invocation.setRetryDirectory(
resultDir
);
166
checksumReporter = ChecksumReporter.load(
resultDir
);
[
all
...]
InvocationResult.java
236
public void setRetryDirectory(File
resultDir
) {
237
mRetryDirectory =
resultDir
;
LightInvocationResult.java
246
public void setRetryDirectory(File
resultDir
) {
247
mRetryDirectory =
resultDir
;
/tools/tradefederation/core/prod-tests/src/com/android/media/tests/
Camera2FrameworkStressTest.java
164
private ArrayList<String> getCameraIdList(String
resultDir
) throws DeviceNotAvailableException {
167
IFileEntry dirEntry = getDevice().getFileEntry(
resultDir
);
180
+ " to false?",
resultDir
);
/frameworks/base/core/tests/coretests/src/android/text/
StaticLayoutBidiTest.java
99
int
resultDir
= AndroidBidi.bidi(dir, chs, chInfo, n, false);
114
assertEquals("direction", expectedDir,
resultDir
);
/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/
CollectorUtil.java
94
* @param
resultDir
The directory containing test metrics.
96
public static void reformatRepeatedStreams(File
resultDir
) {
98
File[] reportLogs =
resultDir
.listFiles();
/cts/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/result/
ResultReporterTest.java
412
File
resultDir
= new File(mBuildHelper.getResultsDir(), RESULT_DIR);
413
resultDir
.mkdirs();
414
ResultReporter.copyFormattingFiles(
resultDir
, SUITE_NAME);
416
File file = new File(
resultDir
, filename);
/cts/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/testtype/
ModuleRepoTest.java
144
File
resultDir
= new File(resultsDir, CompatibilityBuildHelper.getDirSuffix(0));
145
resultDir
.mkdirs();
[
all
...]
/prebuilts/gradle-plugin/com/android/tools/build/gradle/0.5.7/
gradle-0.5.7.jar
/prebuilts/gradle-plugin/com/android/tools/build/gradle/0.7.0/
gradle-0.7.0.jar
/prebuilts/gradle-plugin/com/android/tools/build/gradle/0.7.4/
gradle-0.7.4.jar
/prebuilts/gradle-plugin/com/android/tools/build/gradle/0.8.0/
gradle-0.8.0.jar
/prebuilts/gradle-plugin/com/android/tools/build/gradle/0.8.1/
gradle-0.8.1.jar
/prebuilts/gradle-plugin/com/android/tools/build/gradle/0.8.3/
gradle-0.8.3.jar
/prebuilts/gradle-plugin/com/android/tools/build/gradle/0.10.0/
gradle-0.10.0.jar
/prebuilts/gradle-plugin/com/android/tools/build/gradle/0.11.2/
gradle-0.11.2.jar
/prebuilts/gradle-plugin/com/android/tools/build/gradle/0.12.1/
gradle-0.12.1.jar
/prebuilts/gradle-plugin/com/android/tools/build/gradle/0.12.2/
gradle-0.12.2.jar
/prebuilts/gradle-plugin/com/android/tools/build/gradle/0.13.0/
gradle-0.13.0.jar
Completed in 2982 milliseconds
1
2
3
4
5