Home
last modified time | relevance | path

Searched refs:resDir (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/services/java/com/android/server/am/
DServiceRecord.java67 final String resDir; // where public activity source (public resources etc) located field in ServiceRecord
205 if (!resDir.equals(baseDir)) { in dump()
206 pw.print(prefix); pw.print("resDir="); pw.println(resDir); in dump()
286 resDir = sInfo.applicationInfo.publicSourceDir; in ServiceRecord()
DActivityRecord.java69 final String resDir; // where public activity source (public resources etc) located field in ActivityRecord
132 if (!resDir.equals(baseDir)) pw.print(" res="); pw.print(resDir); in dump()
250 resDir = aInfo.applicationInfo.publicSourceDir; in ActivityRecord()
326 resDir = null; in ActivityRecord()
/frameworks/base/core/java/android/app/
DActivityThread.java1359 ResourcesKey(String resDir, float scale) { in ResourcesKey() argument
1360 mResDir = resDir; in ResourcesKey()
1455 Resources getTopLevelResources(String resDir, CompatibilityInfo compInfo) { in getTopLevelResources() argument
1456 ResourcesKey key = new ResourcesKey(resDir, compInfo.applicationScale); in getTopLevelResources()
1461 Slog.w(TAG, "getTopLevelResources: " + resDir + " / " in getTopLevelResources()
1469 Slog.w(TAG, "Returning cached resources " + r + " " + resDir in getTopLevelResources()
1482 if (assets.addAssetPath(resDir) == 0) { in getTopLevelResources()
1490 Slog.i(TAG, "Created app resources " + resDir + " " + r + ": " in getTopLevelResources()
1514 Resources getTopLevelResources(String resDir, LoadedApk pkgInfo) { in getTopLevelResources() argument
1515 return getTopLevelResources(resDir, pkgInfo.mCompatibilityInfo.get()); in getTopLevelResources()
/frameworks/base/tools/aapt/
DAaptAssets.h558 sp<AaptDir> resDir(const String8& name) const;
DAaptAssets.cpp2139 sp<AaptDir> rdir = resDir(resType); in slurpResourceTree()
2457 sp<AaptDir> AaptAssets::resDir(const String8& name) const in resDir() function in AaptAssets