Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/id3/
Dtestid3.cpp133 char newPath[MAXPATHLEN]; in scan() local
134 strcpy(newPath, path); in scan()
135 strcat(newPath, "/"); in scan()
136 strcat(newPath, ent->d_name); in scan()
139 scan(newPath); in scan()
145 scanFile(newPath); in scan()
/frameworks/base/core/java/android/content/
DUriMatcher.java169 String newPath = path; in addURI() local
172 newPath = path.substring(1); in addURI()
174 tokens = PATH_SPLIT_PATTERN.split(newPath); in addURI()
/frameworks/base/graphics/java/android/renderscript/
DPath.java71 Path newPath = new Path(id, rs, p, null, null, quality); in createStaticPath() local
72 return newPath; in createStaticPath()
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DPath_Delegate.java780 GeneralPath newPath = new GeneralPath(); in offset() local
784 newPath.append(iterator, false /*connect*/); in offset()
787 dst.mPath = newPath; in offset()
789 mPath = newPath; in offset()
809 GeneralPath newPath = new GeneralPath(); in transform() local
813 newPath.append(iterator, false /*connect*/); in transform()
816 dst.mPath = newPath; in transform()
818 mPath = newPath; in transform()
/frameworks/base/media/java/android/mtp/
DMtpDatabase.java736 String newPath = path.substring(0, lastSlash + 1) + newName; in renameFile() local
737 File newFile = new File(newPath); in renameFile()
740 Log.w(TAG, "renaming "+ path + " to " + newPath + " failed"); in renameFile()
746 values.put(Files.FileColumns.DATA, newPath); in renameFile()
756 Log.e(TAG, "Unable to update path for " + path + " to " + newPath); in renameFile()
765 if (oldFile.getName().startsWith(".") && !newPath.startsWith(".")) { in renameFile()
768 mMediaProvider.call(mPackageName, MediaStore.UNHIDE_CALL, newPath, null); in renameFile()
770 Log.e(TAG, "failed to unhide/rescan for " + newPath); in renameFile()
776 && !newPath.toLowerCase(Locale.US).equals(".nomedia")) { in renameFile()
780 Log.e(TAG, "failed to unhide/rescan for " + newPath); in renameFile()
/frameworks/base/core/java/android/net/
DUri.java2177 String newPath; in appendEncodedSegment() local
2180 newPath = "/" + newSegment; in appendEncodedSegment()
2182 newPath = oldPath + newSegment; in appendEncodedSegment()
2184 newPath = oldPath + "/" + newSegment; in appendEncodedSegment()
2187 return fromEncoded(newPath); in appendEncodedSegment()