OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:testAppFile
(Results
1 - 7
of
7
) sorted by null
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
TestSystemAppInstallSetup.java
80
File
testAppFile
= FileUtil.getFileForPath(testsDir, "DATA", "app", testAppName);
81
if (!
testAppFile
.exists()) {
83
+ "extracted tests.zip",
testAppFile
), device.getDeviceDescriptor());
85
device.pushFile(
testAppFile
, String.format("/system/app/%s", testAppName));
TestFilePushSetup.java
127
File
testAppFile
= new File(dir, fileName);
128
if (
testAppFile
.exists()) {
129
return
testAppFile
;
TestAppInstallSetup.java
189
File
testAppFile
= getLocalPathForFilename(buildInfo, testAppName, device);
190
if (
testAppFile
== null) {
200
if (!
testAppFile
.canRead()) {
234
String packageName = parsePackageName(
testAppFile
, device.getDeviceDescriptor());
235
CLog.d("Installing apk from %s ...",
testAppFile
.getAbsolutePath());
236
String result = installPackage(device,
testAppFile
);
241
result = installPackage(device,
testAppFile
);
293
private String installPackage(ITestDevice device, File
testAppFile
)
297
return device.installPackage(
testAppFile
, true, mInstallArgs.toArray(new String[] {}));
300
testAppFile
,
[
all
...]
/tools/tradefederation/core/src/com/android/tradefed/util/
BuildTestsZipUtils.java
107
File
testAppFile
= FileUtil.findFile(dir, apkFileName);
108
if (
testAppFile
!= null &&
testAppFile
.exists()) {
109
return
testAppFile
;
/cts/hostsidetests/atrace/src/android/atrace/cts/
AtraceHostTest.java
205
File
testAppFile
= buildHelper.getTestFile(TEST_APK);
206
String installResult = getDevice().installPackage(
testAppFile
, false);
/cts/hostsidetests/numberblocking/src/com/android/cts/numberblocking/hostside/
NumberBlockingTest.java
153
File
testAppFile
= buildHelper.getTestFile(TEST_APK);
155
testAppFile
, true /*reinstall*/, userId);
/cts/hostsidetests/dumpsys/src/android/dumpsys/cts/
BatteryStatsDumpsysTest.java
721
File
testAppFile
= buildHelper.getTestFile(TEST_APK);
722
String installResult = getDevice().installPackage(
testAppFile
, false);
[
all
...]
Completed in 358 milliseconds