Searched defs:mCacheDir (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/test-runner/src/android/test/
H A DRenamingDelegatingContext.java44 private File mCacheDir; field in class:RenamingDelegatingContext
228 if (mCacheDir == null) {
229 mCacheDir = new File(mFileContext.getCacheDir(), renamedFileName("cache"));
231 if (!mCacheDir.exists()) {
232 if(!mCacheDir.mkdirs()) {
237 mCacheDir.getPath(),
242 return mCacheDir;
/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DScript.h75 std::string mCacheDir; member in class:bcc::Script
79 return std::string(mCacheDir + mCacheName + ".o");
224 // Side effect: it will set mCacheDir, mCacheName.
/frameworks/base/core/java/android/app/
H A DContextImpl.java172 private File mCacheDir; field in class:ContextImpl
741 if (mCacheDir == null) {
742 mCacheDir = new File(getDataDirFile(), "cache");
744 if (!mCacheDir.exists()) {
745 if(!mCacheDir.mkdirs()) {
750 mCacheDir.getPath(),
755 return mCacheDir;

Completed in 131 milliseconds