Home
last modified time | relevance | path

Searched refs:sourceUriPath (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/telephony/java/android/telephony/mbms/
DMbmsDownloadReceiver.java474 public static String getFileRelativePath(String sourceUriPath, String fileInfoPath) { in getFileRelativePath() argument
475 if (sourceUriPath.endsWith("*")) { in getFileRelativePath()
478 int lastSlash = sourceUriPath.lastIndexOf('/'); in getFileRelativePath()
479 sourceUriPath = sourceUriPath.substring(0, lastSlash); in getFileRelativePath()
481 if (!fileInfoPath.startsWith(sourceUriPath)) { in getFileRelativePath()
483 + " source: " + sourceUriPath + " fileinfo path: " + fileInfoPath); in getFileRelativePath()
486 if (fileInfoPath.length() == sourceUriPath.length()) { in getFileRelativePath()
489 return sourceUriPath.substring(sourceUriPath.lastIndexOf('/') + 1); in getFileRelativePath()
492 String prefixOmittedPath = fileInfoPath.substring(sourceUriPath.length()); in getFileRelativePath()