Home
last modified time | relevance | path

Searched refs:rootDir (Results 1 – 25 of 55) sorted by relevance

123

/aosp12/build/soong/ui/build/
H A Dupload_test.go33 rootDir := t.TempDir()
36 filepath.Join(rootDir, "d1"),
37 filepath.Join(rootDir, "d1", "d2"),
38 filepath.Join(rootDir, "d1", "d2", "d3"),
42 filepath.Join(rootDir, "d1", "f1"),
43 filepath.Join(rootDir, "d1", "d2", "f1"),
44 filepath.Join(rootDir, "d1", "d2", "d3", "f1"),
60 filepath.Join(rootDir, "d1", "f1"),
61 filepath.Join(rootDir, "d1", "d2", "f1"),
62 filepath.Join(rootDir, "d1", "d2", "d3", "f1"),
[all …]
H A Dconfig_test.go236 rootDir, err := ioutil.TempDir("", "")
240 defer os.RemoveAll(rootDir)
245 dir := filepath.Join(rootDir, buildRootDir)
249 f := filepath.Join(rootDir, srcDirFileCheck)
256 dir := rootDir
/aosp12/build/soong/filesystem/
H A Dfilesystem.go161 rootDir := android.PathForModuleGen(ctx, "root").OutputPath
163 builder.Command().Text("rm -rf").Text(rootDir.String())
164 builder.Command().Text("mkdir -p").Text(rootDir.String())
187 dst := rootDir.Join(ctx, name)
210 FlagWithArg("-C ", rootDir.String()).
212 FlagWithArg("-D ", rootDir.String()).
221 builder.Command().Text("rm -rf").Text(rootDir.String())
240 rootDir := android.PathForModuleOut(ctx, "root").OutputPath
251 Text(rootDir.String()). // input directory
359 rootDir := android.PathForModuleOut(ctx, "root").OutputPath
[all …]
/aosp12/frameworks/base/services/people/java/com/android/server/people/data/
H A DEventHistoryImpl.java70 EventHistoryImpl(@NonNull File rootDir, in EventHistoryImpl() argument
72 this(new Injector(), rootDir, scheduledExecutorService); in EventHistoryImpl()
76 EventHistoryImpl(@NonNull Injector injector, @NonNull File rootDir, in EventHistoryImpl() argument
82 mRootDir = rootDir; in EventHistoryImpl()
236 EventsProtoDiskReadWriter(@NonNull File rootDir, in EventsProtoDiskReadWriter() argument
238 super(rootDir, scheduledExecutorService); in EventsProtoDiskReadWriter()
239 rootDir.mkdirs(); in EventsProtoDiskReadWriter()
309 EventIndexesProtoDiskReadWriter(@NonNull File rootDir,
311 super(rootDir, scheduledExecutorService);
312 rootDir.mkdirs();
H A DAbstractProtoDiskReadWriter.java81 AbstractProtoDiskReadWriter(@NonNull File rootDir, in AbstractProtoDiskReadWriter() argument
83 mRootDir = rootDir; in AbstractProtoDiskReadWriter()
H A DConversationStore.java318 ConversationInfosProtoDiskReadWriter(@NonNull File rootDir, in ConversationInfosProtoDiskReadWriter() argument
321 super(rootDir, scheduledExecutorService); in ConversationInfosProtoDiskReadWriter()
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/people/data/
H A DUsageStatsQueryHelperTest.java355 @NonNull ScheduledExecutorService scheduledExecutorService, @NonNull File rootDir) { in TestPackageData() argument
357 scheduledExecutorService, rootDir); in TestPackageData()
358 mConversationStore = new TestConversationStore(rootDir, scheduledExecutorService); in TestPackageData()
359 mEventStore = new TestEventStore(rootDir, scheduledExecutorService); in TestPackageData()
395 TestEventStore(File rootDir, ScheduledExecutorService scheduledExecutorService) { in TestEventStore() argument
396 super(rootDir, scheduledExecutorService); in TestEventStore()
397 mShortcutEventHistory = new TestEventHistoryImpl(EVENT_HISTORY_INJECTOR, rootDir, in TestEventStore()
399 mLocusEventHistory = new TestEventHistoryImpl(EVENT_HISTORY_INJECTOR, rootDir, in TestEventStore()
419 TestEventHistoryImpl(Injector injector, File rootDir, in TestEventHistoryImpl() argument
421 super(injector, rootDir, scheduledExecutorService); in TestEventHistoryImpl()
/aosp12/frameworks/opt/setupwizard/tools/gradle/
H A Drepositories.properties2 maven { url "$rootDir/prebuilts/maven_repo/robolectric" }
3 maven { url "$rootDir/prebuilts/maven_repo/android" }
H A Ddocs.gradle9 def DOCSDIR = "$rootDir/frameworks/opt/setupwizard/tools/docs"
38 file("$rootDir/external/doclava/res/assets/templates-sdk").canonicalPath)
H A Dsettings.gradle2 project(':setup-wizard-lib').projectDir = new File(rootDir, 'frameworks/opt/setupwizard/library')
/aosp12/packages/apps/Launcher3/
H A Dsettings.gradle2 project(':IconLoader').projectDir = new File(rootDir, 'iconloaderlib')
5 project(':SharedLibWrapper').projectDir = new File(rootDir, 'SharedLibWrapper')
/aosp12/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationHistoryDatabaseFactory.java34 @NonNull Handler handler, @NonNull File rootDir) { in create() argument
38 return new NotificationHistoryDatabase(context, handler, rootDir); in create()
/aosp12/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DFileCache.java74 public static void deleteFiles(Context context, File rootDir, String dbName) { in deleteFiles() argument
77 File[] files = rootDir.listFiles(); in deleteFiles()
79 for (File file : rootDir.listFiles()) { in deleteFiles()
89 public FileCache(Context context, File rootDir, String dbName, long capacity) { in FileCache() argument
90 mRootDir = Utils.checkNotNull(rootDir); in FileCache()
/aosp12/frameworks/base/libs/androidfw/include/androidfw/
H A DAssetManager.h234 String8 createPathNameLocked(const asset_path& path, const char* rootDir);
244 const asset_path& path, const char* rootDir, const char* dirName);
247 const asset_path& path, const char* rootDir, const char* dirName);
/aosp12/system/timezone/distro/core/src/main/com/android/timezone/distro/
H A DFileUtils.java151 public static boolean filesExist(File rootDir, String... fileNames) { in filesExist() argument
153 File file = new File(rootDir, fileName); in filesExist()
/aosp12/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
H A DObbBackupService.java128 ArrayList<File> allFileContents(File rootDir) {
132 dirs.add(rootDir);
/aosp12/frameworks/base/libs/androidfw/
H A DAssetManager.cpp853 String8 AssetManager::createPathNameLocked(const asset_path& ap, const char* rootDir) in createPathNameLocked() argument
856 if (rootDir != NULL) path.appendPath(rootDir); in createPathNameLocked()
1074 const asset_path& ap, const char* rootDir, const char* dirName) in scanAndMergeDirLocked() argument
1080 String8 path = createPathNameLocked(ap, rootDir); in scanAndMergeDirLocked()
1205 const asset_path& ap, const char* rootDir, const char* baseDirName) in scanAndMergeZipLocked() argument
1222 if (rootDir != NULL) dirName = rootDir; in scanAndMergeZipLocked()
/aosp12/packages/apps/Car/libs/aaos-apps-gradle-project/
H A Dsettings.gradle22 gradle.ext.lib_car_system_stubs = rootDir.absolutePath + "../../../../../../prebuilts/sdk/" + gradl…
23 gradle.ext.lib_system_stubs = rootDir.absolutePath + "../../../../../../prebuilts/sdk/" + gradle.ex…
/aosp12/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java444 final String rootDir = ceContext.getDataDir().getCanonicalPath(); in onFullBackup() local
490 traversalExcludeSet.add(rootDir); in onFullBackup()
667 final String rootDir; in fullBackupFile() local
692 rootDir = ceContext.getDataDir().getCanonicalPath(); in fullBackupFile()
753 } else if (filePath.startsWith(rootDir)) { in fullBackupFile()
755 rootpath = rootDir; in fullBackupFile()
/aosp12/frameworks/multidex/
H A Dsettings.gradle18 project(':multidex').projectDir = new File(rootDir, 'library')
/aosp12/system/timezone/distro/installer/src/test/com/android/timezone/distro/installer/
H A DTimeZoneDistroInstallerTest.java87 private static File createUniqueDirectory(File rootDir, String prefix) throws Exception { in createUniqueDirectory() argument
88 File dir = File.createTempFile(prefix, "", rootDir); in createUniqueDirectory()
716 private static void assertFileCount(int expectedFiles, File rootDir) throws Exception { in assertFileCount() argument
726 Files.walkFileTree(rootDir.toPath(), visitor); in assertFileCount()
/aosp12/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageAbiHelperImpl.java241 final File rootDir = new File(codeFile, LIB_DIR_NAME); in getBundledAppAbi() local
245 has64BitLibs = (new File(rootDir, isa)).exists(); in getBundledAppAbi()
252 has32BitLibs = (new File(rootDir, isa)).exists(); in getBundledAppAbi()
/aosp12/frameworks/base/packages/EasterEgg/
H A Dbuild.gradle26 final String ANDROID_ROOT = "${rootDir}/../../../.."
/aosp12/packages/apps/UniversalMediaPlayer/
H A Dbuild.gradle61 maven { url "$rootDir/../../../prebuilts/sdk/current/androidx/m2repository" }
/aosp12/build/soong/android/
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)
471 func (ctx *TestContext) ParseBlueprintsFiles(rootDir string) (deps []string, errs []error) {
474 return ctx.Context.ParseBlueprintsFiles(rootDir, ctx.config)

123