Home
last modified time | relevance | path

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

/aosp12/frameworks/opt/telephony/tests/telephonytests/src/android/telephony/mbms/
H A DMbmsReceiverTest.java33 String rootPath = "http://www.example.com/files/"; in testFileHierarchyRecreation() local
35 MbmsDownloadReceiver.getFileRelativePath(rootPath, rootPath + "/subdir1/file.txt")); in testFileHierarchyRecreation()
38 rootPath, in testFileHierarchyRecreation()
42 rootPath + "/subdir1/file.*", in testFileHierarchyRecreation()
43 rootPath + "/subdir1/file.txt")); in testFileHierarchyRecreation()
46 rootPath + "/subdir1/*", in testFileHierarchyRecreation()
50 rootPath + "/subdir*", in testFileHierarchyRecreation()
54 rootPath, in testFileHierarchyRecreation()
55 rootPath + "/file.txt")); in testFileHierarchyRecreation()
58 rootPath + "/*", in testFileHierarchyRecreation()
[all …]
/aosp12/packages/apps/TV/common/src/com/android/tv/common/recording/
H A DRecordingStorageStatusManager.java194 String rootPath; in getRecordingRootDataDirectory() local
196 rootPath = root != null ? root.getCanonicalPath() : null; in getRecordingRootDataDirectory()
200 return rootPath == null ? null : new File(rootPath + RECORDING_DATA_SUB_PATH); in getRecordingRootDataDirectory()
/aosp12/build/soong/finder/
H A Dfinder.go243 func (f *Finder) FindNamedAt(rootPath string, fileName string) []string {
254 return f.FindMatching(rootPath, filter)
279 return f.FindMatching(rootPath, filter)
286 func (f *Finder) FindMatching(rootPath string, filter WalkFunc) []string {
292 isRel = !filepath.IsAbs(rootPath)
294 rootPath = filepath.Join(workingDir, rootPath)
297 rootPath = filepath.Clean(rootPath)
304 node := f.nodes.GetNode(rootPath, false)
307 rootPath, f.cacheMetadata.Config.CacheParams)
313 f.verbosef("Finder finding %v using cache\n", rootPath)
[all …]
/aosp12/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DExternalStorageProvider.java361 final String rootPath = visiblePath in getDocIdForFileMaybeCreate() local
364 if (rootPath.equals(path)) { in getDocIdForFileMaybeCreate()
366 } else if (rootPath.endsWith("/")) { in getDocIdForFileMaybeCreate()
367 path = path.substring(rootPath.length()); in getDocIdForFileMaybeCreate()
369 path = path.substring(rootPath.length() + 1); in getDocIdForFileMaybeCreate()
391 final String rootPath = rootFile.getAbsolutePath(); in getMostSpecificRootForPath() local
392 if (path.startsWith(rootPath) && (mostSpecificPath == null in getMostSpecificRootForPath()
393 || rootPath.length() > mostSpecificPath.length())) { in getMostSpecificRootForPath()
395 mostSpecificPath = rootPath; in getMostSpecificRootForPath()
/aosp12/build/soong/ui/build/
H A Dbazel.go207 func populateOutdir(ctx Context, config Config, rootPath string, relativePath string) {
208 destDir := filepath.Join(rootPath, relativePath)
232 populateOutdir(ctx, config, rootPath, filepath.Join(relativePath, f.Name()))
/aosp12/system/tools/hidl/c2hal/
H A Dmain.cpp85 const std::string& rootPath = pair.second; in applyPackageRootPath() local
94 outputPath = rootPath; in applyPackageRootPath()
/aosp12/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
H A DObbBackupService.java69 final String rootPath = obbDir.getCanonicalPath();
77 rootPath, filePath, out);
/aosp12/system/vold/
H A DBenchmark.cpp89 static status_t benchmarkInternal(const std::string& rootPath, in benchmarkInternal() argument
94 auto path = rootPath; in benchmarkInternal()
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/gadget/
H A DMediaSetSource.java99 String rootPath = mDataManager.getTopSetPath(DataManager.INCLUDE_ALL); in monitorRootPath() local
100 mRootSet = (MediaSet) mDataManager.getMediaObject(rootPath); in monitorRootPath()
/aosp12/system/tools/hidl/
H A DCoordinator.cpp50 void Coordinator::setRootPath(const std::string &rootPath) { in setRootPath() argument
51 mRootPath = rootPath; in setRootPath()
816 std::string rootPath; in checkHash() local
817 status_t err = getPackageRootPath(fqName, &rootPath); in checkHash()
820 std::string hashPath = makeAbsolute(rootPath) + "/current.txt"; in checkHash()
H A DCoordinator.h39 void setRootPath(const std::string &rootPath);
/aosp12/frameworks/base/libs/androidfw/include/androidfw/
H A DBackupHelpers.h140 const String8& rootPath, const String8& filePath, off64_t* outSize,