Home
last modified time | relevance | path

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

/frameworks/opt/setupwizard/tools/gradle/
Drepositories.properties2 maven { url "$rootDir/prebuilts/maven_repo/robolectric" }
3 maven { url "$rootDir/prebuilts/maven_repo/android" }
Ddocs.gradle9 def DOCSDIR = "$rootDir/frameworks/opt/setupwizard/tools/docs"
38 file("$rootDir/external/doclava/res/assets/templates-sdk").canonicalPath)
Dsettings.gradle2 project(':setup-wizard-lib').projectDir = new File(rootDir, 'frameworks/opt/setupwizard/library')
/frameworks/base/libs/androidfw/include/androidfw/
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);
/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
DObbBackupService.java128 ArrayList<File> allFileContents(File rootDir) {
132 dirs.add(rootDir);
/frameworks/base/core/java/android/app/backup/
DBackupAgent.java389 final String rootDir = ceContext.getDataDir().getCanonicalPath(); in onFullBackup() local
442 traversalExcludeSet.add(rootDir); in onFullBackup()
592 final String rootDir; in fullBackupFile() local
617 rootDir = ceContext.getDataDir().getCanonicalPath(); in fullBackupFile()
678 } else if (filePath.startsWith(rootDir)) { in fullBackupFile()
680 rootpath = rootDir; in fullBackupFile()
/frameworks/multidex/
Dsettings.gradle18 project(':multidex').projectDir = new File(rootDir, 'library')
Dbuild.gradle31 File fullSdkPath = file("${rootDir}/../../prebuilts/fullsdk-${platform}")
/frameworks/base/libs/androidfw/
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()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageAbiHelperImpl.java237 final File rootDir = new File(codeFile, LIB_DIR_NAME); in getBundledAppAbi() local
241 has64BitLibs = (new File(rootDir, isa)).exists(); in getBundledAppAbi()
248 has32BitLibs = (new File(rootDir, isa)).exists(); in getBundledAppAbi()
/frameworks/opt/setupwizard/library/
Dself.gradle12 maven { url "$rootDir/prebuilts/tools/common/m2/repository" }
/frameworks/base/core/jni/
DAndroidRuntime.cpp1199 const char* rootDir = getenv("ANDROID_ROOT"); in start() local
1200 if (rootDir == NULL) { in start()
1201 rootDir = "/system"; in start()
1206 setenv("ANDROID_ROOT", rootDir, 1); in start()
/frameworks/base/packages/Shell/tests/src/com/android/shell/
DBugreportReceiverTest.java1002 final File rootDir = mContext.getFilesDir(); in getPath() local
1003 final File dir = new File(rootDir, BUGREPORTS_DIR); in getPath()