HomeSort by relevance Sort by last modified time
    Searched full:apkpath (Results 1 - 14 of 14) 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);
  /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);
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...]
TestPackage.java 734 * @param apkPath The test package to be installed.
736 private void installAPK(final String apkPath) throws DeviceDisconnectedException,
738 Log.d("installAPK " + apkPath + " ...");
739 mDevice.installAPK(apkPath);
741 Log.d("installAPK " + apkPath + " finish");
    [all...]
HostConfig.java 883 String apkPath = mRoot + File.separator + packageBinaryName + FILE_SUFFIX_APK;
885 deleteFile(apkPath);
    [all...]
  /frameworks/base/services/java/com/android/server/
Installer.java 180 public int dexopt(String apkPath, int uid, boolean isPublic) {
183 builder.append(apkPath);
265 public int getSizeInfo(String pkgName, String apkPath,
271 builder.append(apkPath);
  /frameworks/base/test-runner/src/android/test/
ClassPathPackageInfoSource.java 125 for (String apkPath : apkPaths) {
126 File file = new File(apkPath);
217 private void findClassesInApk(String apkPath, String packageName,
223 dexFile = new DexFile(apkPath);
244 "Error finding classes at apk path: " + apkPath, e);
  /frameworks/base/cmds/installd/
installd.h 100 int get_size(const char *pkgname, const char *apkpath, const char *fwdlock_apkpath,
commands.c 315 int get_size(const char *pkgname, const char *apkpath,
332 if (strncmp(apkpath, "/system", 7) != 0 &&
333 strncmp(apkpath, SDCARD_DIR_PREFIX, 7) != 0) {
334 if (stat(apkpath, &s) == 0) {
346 if (!create_cache_path(path, apkpath)) {
installd.c 83 /* pkgdir, apkpath */
  /frameworks/base/core/tests/hosttests/src/android/content/pm/
PackageManagerHostTestUtils.java 557 public void installAppAndVerifyExistsOnSDCard(String apkPath, String pkgName, boolean overwrite)
567 installFile(apkPath, overwrite);
588 public void installAppAndVerifyExistsOnDevice(String apkPath, String pkgName, boolean overwrite)
598 installFile(apkPath, overwrite);
619 public void installFwdLockedAppAndVerifyExists(String apkPath,
629 String result = installFileForwardLocked(apkPath, overwrite);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
ApkBuilder.java     [all...]

Completed in 471 milliseconds