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

  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/handler/
MethodProfilingHandler.java 73 public void onSuccess(final String remoteFilePath, final Client client) {
76 if (remoteFilePath == null) {
88 pullAndOpen(sync, remoteFilePath);
118 private void pullAndOpen(final SyncService sync, final String remoteFilePath)
129 sync.pullFile(remoteFilePath, tempPath, monitor);
136 String.format("Pulling %1$s from the device", remoteFilePath), mParentShell);
BaseFileHandler.java 60 * @param remoteFilePath The name of the file to pull off of the device
70 String localFileName, final String remoteFilePath, String title)
83 sync.pullFile(remoteFilePath, localFilePath, monitor);
90 String.format("Pulling %1$s from the device", remoteFilePath), mParentShell);
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
VMHostTest.java 114 * @param remoteFilePath the absolute path.
117 private void createRemoteDir(ITestDevice device, String remoteFilePath)
119 if (device.doesFileExist(remoteFilePath)) {
122 File f = new File(remoteFilePath);
127 device.executeShellCommand(String.format("mkdir %s", remoteFilePath));
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
Device.java 514 String remoteFilePath = syncPackageToDevice(packageFilePath);
515 String result = installRemotePackage(remoteFilePath, reinstall, extraArgs);
516 removeRemotePackage(remoteFilePath);
533 String remoteFilePath = String.format("/data/local/tmp/%1$s", packageFileName); //$NON-NLS-1$
543 sync.pushFile(localFilePath, remoteFilePath, SyncService.getNullProgressMonitor());
547 return remoteFilePath;
572 public String installRemotePackage(String remoteFilePath, boolean reinstall,
585 remoteFilePath);
599 public void removeRemotePackage(String remoteFilePath) throws InstallException {
601 executeShellCommand("rm " + remoteFilePath, new NullOutputReceiver(), INSTALL_TIMEOUT)
    [all...]
IDevice.java 412 * @param remoteFilePath absolute file path to package file on device
418 public String installRemotePackage(String remoteFilePath, boolean reinstall,
424 * @param remoteFilePath path on device of file to remove
427 public void removeRemotePackage(String remoteFilePath) throws InstallException;
ClientData.java 300 * @param remoteFilePath the device-side path of the HPROF file.
303 void onSuccess(String remoteFilePath, Client client);
326 * @param remoteFilePath the device-side path of the trace file.
329 void onSuccess(String remoteFilePath, Client client);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
DeviceView.java 132 public void onSuccess(final String remoteFilePath, final Client client) {
152 sync.pullFile(remoteFilePath, tempPath, monitor);
160 remoteFilePath),
168 remoteFilePath, Messages.DeviceView_Save_HPROF_File);
  /frameworks/base/core/tests/hosttests/src/android/content/pm/
PackageManagerHostTestUtils.java 255 String remoteFilePath = mDevice.syncPackageToDevice(localFilePath);
258 "pm install -l \"%1$s\"", remoteFilePath);
260 mDevice.removeRemotePackage(remoteFilePath);
    [all...]
  /sdk/ddms/app/src/com/android/ddms/
UIThread.java 343 public void onSuccess(final String remoteFilePath, final Client client) {
353 remoteFilePath, "Save HPROF file");
    [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 355 milliseconds