OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:apkPath
(Results
1 - 11
of
11
) sorted by null
/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
);
/frameworks/base/test-runner/src/android/test/
ClassPathPackageInfoSource.java
123
for (String
apkPath
: apkPaths) {
124
File file = new File(
apkPath
);
206
private void findClassesInApk(String
apkPath
, String packageName,
212
dexFile = new DexFile(
apkPath
);
233
"Error finding classes at apk path: " +
apkPath
, e);
/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
111
String
apkPath
=
113
if (!HostUtils.isFileExist(
apkPath
)) {
114
Log.e("File doesn't exist: " +
apkPath
, null);
118
device.installAPK(
apkPath
);
TestDevice.java
322
String
apkPath
= HostConfig.getInstance().getCaseRepository().getApkPath(DEVICE_SETUP_APK);
323
if (!HostUtils.isFileExist(
apkPath
)) {
324
Log.e("File doesn't exist: " +
apkPath
, null);
336
installAPK(
apkPath
);
964
* @param
apkPath
Name of the package to be installed.
966
public void installAPK(final String
apkPath
) throws DeviceDisconnectedException,
968
if ((
apkPath
== null) || (
apkPath
.length() == 0) || (!HostUtils.isFileExist(
apkPath
))) {
969
throw new InvalidApkPathException(
apkPath
);
[
all
...]
TestPackage.java
741
* @param
apkPath
The test package to be installed.
743
private void installAPK(final String
apkPath
) throws DeviceDisconnectedException,
745
Log.d("installAPK " +
apkPath
+ " ...");
746
mDevice.installAPK(
apkPath
);
748
Log.d("installAPK " +
apkPath
+ " finish");
[
all
...]
HostConfig.java
929
String
apkPath
= mRoot + File.separator + packageBinaryName + FILE_SUFFIX_APK;
[
all
...]
/frameworks/base/services/java/com/android/server/pm/
Installer.java
202
public int dexopt(String
apkPath
, int uid, boolean isPublic) {
205
builder.append(
apkPath
);
309
public int getSizeInfo(String pkgName, String
apkPath
, String fwdLockApkPath,
315
builder.append(
apkPath
);
/frameworks/base/core/tests/hosttests/src/android/content/pm/
PackageManagerHostTestUtils.java
685
public void installAppAndVerifyExistsOnSDCard(String
apkPath
, String pkgName, boolean overwrite)
696
installFile(
apkPath
, overwrite);
722
public void installAppAndVerifyExistsOnDevice(String
apkPath
, String pkgName, boolean overwrite)
733
installFile(
apkPath
, overwrite);
759
public void installFwdLockedAppAndVerifyExists(String
apkPath
,
[
all
...]
/cts/tests/tests/content/src/android/content/pm/cts/
PackageManagerTest.java
[
all
...]
Completed in 90 milliseconds