OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:apkPath
(Results
1 - 7
of
7
) sorted by null
/cts/tools/host/src/com/android/cts/
TestPlan.java
96
String
apkPath
= HostConfig.getInstance().getCaseRepository().getApkPath(pkgName);
98
File apkFile = new File(
apkPath
);
SignatureCheckPackage.java
112
String
apkPath
=
114
if (!HostUtils.isFileExist(
apkPath
)) {
115
Log.e("File doesn't exist: " +
apkPath
, null);
119
device.installAPK(
apkPath
);
HostConfig.java
883
String
apkPath
= mRoot + File.separator + packageBinaryName + FILE_SUFFIX_APK;
885
deleteFile(
apkPath
);
[
all
...]
TestDevice.java
310
String
apkPath
= HostConfig.getInstance().getCaseRepository().getApkPath(DEVICE_SETUP_APK);
311
if (!HostUtils.isFileExist(
apkPath
)) {
312
Log.e("File doesn't exist: " +
apkPath
, null);
324
installAPK(
apkPath
);
905
* @param
apkPath
Name of the package to be installed.
907
public void installAPK(final String
apkPath
) throws DeviceDisconnectedException,
909
if ((
apkPath
== null) || (
apkPath
.length() == 0) || (!HostUtils.isFileExist(
apkPath
))) {
910
throw new InvalidApkPathException(
apkPath
);
[
all
...]
/cts/tools/host/test/com/android/cts/
CtsTestBase.java
97
String
apkPath
= caseRoot + File.separator + packageName + APK_SUFFIX;
101
createFile(null,
apkPath
);
109
String
apkPath
= path + File.separator + APK_SUFFIX;
112
deleteFile(
apkPath
);
ConsoleTests.java
284
String
apkPath
= caseRoot + File.separator + packageName + APK_SUFFIX;
287
createFile(null,
apkPath
);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
ApkBuilder.java
[
all
...]
Completed in 1153 milliseconds