Home | History | Annotate | Download | only in handover

Lines Matching defs:dstFile

380             File dstFile = generateUniqueDestination(beamPath.getAbsolutePath(),
383 if (!srcFile.renameTo(dstFile)) {
384 if (DBG) Log.d(TAG, "Failed to rename from " + srcFile + " to " + dstFile);
388 mPaths.add(dstFile.getAbsolutePath());
389 mMimeTypes.put(dstFile.getAbsolutePath(), mimeType);
390 if (DBG) Log.d(TAG, "Did successful rename from " + srcFile + " to " + dstFile);
495 File dstFile = new File(path + File.separator + fileName);
497 while (dstFile.exists()) {
498 dstFile = new File(path + File.separator + fileNameWithoutExtension + "-" +
502 return dstFile;