HomeSort by relevance Sort by last modified time
    Searched defs:remoteFilePath (Results 1 - 2 of 2) sorted by null

  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
Device.java 435 String remoteFilePath = syncPackageToDevice(packageFilePath);
436 String result = installRemotePackage(remoteFilePath, reinstall);
437 removeRemotePackage(remoteFilePath);
448 String remoteFilePath = String.format("/data/local/tmp/%1$s", packageFileName); //$NON-NLS-1$
458 SyncResult result = sync.pushFile(localFilePath, remoteFilePath,
468 return remoteFilePath;
488 public String installRemotePackage(String remoteFilePath, boolean reinstall)
492 remoteFilePath);
500 public void removeRemotePackage(String remoteFilePath) throws IOException {
503 executeShellCommand("rm " + remoteFilePath, new NullOutputReceiver())
    [all...]
  /frameworks/base/core/tests/hosttests/src/android/content/pm/
PackageManagerHostTestUtils.java 187 String remoteFilePath = mDevice.syncPackageToDevice(localFilePath);
190 "pm install -l \"%1$s\"", remoteFilePath);
192 mDevice.removeRemotePackage(remoteFilePath);

Completed in 238 milliseconds