Home
last modified time | relevance | path

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

/aosp12/build/blueprint/bootstrap/
H A Dcleanup.go65 filePaths, err := parseNinjaLog(ninjaBuildDir, under)
70 for _, filePath := range filePaths {
102 var filePaths []string
125 filePaths = append(filePaths, filePath)
134 return filePaths, nil
/aosp12/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadStorageProvider.java356 filePaths, notificationUris, in queryChildDocuments()
480 String[] projection, Set<String> filePaths, in includeSearchFilesFromSharedStorage() argument
484 projection, filePaths, queryArgs)) { in includeSearchFilesFromSharedStorage() argument
616 Set<String> filePaths, Bundle queryArgs) { in includeDownloadFromCursor() argument
699 if (filePaths != null && localFilePath != null) { in includeDownloadFromCursor()
700 filePaths.add(localFilePath); in includeDownloadFromCursor()
892 queryArgs, filePaths, parentId); in includeDownloadsFromMediaStore()
951 if (filePaths != null) { in includeDownloadFromMediaStore()
952 filePaths.add(mediaCursor.getString( in includeDownloadFromMediaStore()
972 if (parentId == null && filePaths != null && filePaths.size() > 0) { in buildSearchSelection()
[all …]
/aosp12/packages/providers/MediaProvider/tests/src/com/android/providers/media/
H A DTranscodeHelperTest.java73 List<String> filePaths = Arrays.asList( in testSupportsValidTranscodePath() local
78 for (String path : filePaths) { in testSupportsValidTranscodePath()
85 List<String> filePaths = Arrays.asList( in testDoesNotSupportsInvalidTranscodePath() local
92 for (String path : filePaths) { in testDoesNotSupportsInvalidTranscodePath()
/aosp12/build/soong/android/
H A Dfilegroup.go114 filePaths, ok := bazelCtx.GetOutputFiles(fg.GetBazelLabel(ctx, fg), ctx.Arch().ArchType)
119 bazelOuts := make(Paths, 0, len(filePaths))
120 for _, p := range filePaths {
H A Dtesting.go465 func (ctx *TestContext) ParseFileList(rootDir string, filePaths []string) (deps []string, errs []er…
468 return ctx.Context.ParseFileList(rootDir, filePaths, ctx.config)
/aosp12/packages/apps/StorageManager/robotests/src/com/android/storagemanager/automatic/
H A DDownloadsDeletionTypeTest.java59 String[] filePaths = new String[2]; in testInitializeWithUncheckedFiles() local
60 filePaths[0] = temp.getPath(); in testInitializeWithUncheckedFiles()
61 filePaths[1] = temp2.getPath(); in testInitializeWithUncheckedFiles()
62 mDeletion = new DownloadsDeletionType(RuntimeEnvironment.application, filePaths); in testInitializeWithUncheckedFiles()
/aosp12/build/soong/bloaty/
H A Dbloaty.go91 filePaths := ctx.ModuleProvider(m, fileSizeMeasurerKey).(measuredFiles)
92 for _, path := range filePaths.paths {
/aosp12/build/soong/finder/
H A Dfinder.go1467 filter WalkFunc) (subDirs []*pathMap, filePaths []string) {
1479 filePaths = make([]string, 0, len(fileNames))
1481 filePaths = append(filePaths, joinCleanPaths(node.path, fileName))
1491 return subDirs, filePaths
1509 subDirs, filePaths := f.listMatches(node, filter)
1527 filePaths = append(filePaths, childResults...)
1531 return filePaths
1548 subDirs, filePaths := f.listMatches(currentNode, filter)
1552 matches = append(matches, filePaths...)
/aosp12/build/soong/genrule/
H A Dgenrule.go229 filePaths, ok := bazelCtx.GetOutputFiles(label, ctx.Arch().ArchType)
233 for _, bazelOutputFile := range filePaths {
/aosp12/build/blueprint/
H A Dcontext.go739 func (c *Context) ParseFileList(rootDir string, filePaths []string,
742 if len(filePaths) < 1 {
817 deps, errs = c.WalkBlueprintsFiles(rootDir, filePaths, handleOneFile)
873 func (c *Context) WalkBlueprintsFiles(rootDir string, filePaths []string,
877 descendantsMap, err := findBlueprintDescendants(filePaths)
/aosp12/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java2670 public static void writeFallBackSettingsFiles(List<String> filePaths) {
2671 final int numFiles = filePaths.size();
2673 final String filePath = filePaths.get(i);