HomeSort by relevance Sort by last modified time
    Searched refs:mCacheDir (Results 1 - 4 of 4) sorted by null

  /frameworks/compile/libbcc/lib/ExecutionEngine/
Script.cpp 187 mCacheDir = cacheDir;
190 if (!mCacheDir.empty() && *mCacheDir.rbegin() != '/') {
191 mCacheDir.push_back('/'); // Ensure mCacheDir is end with '/'
220 mCacheDir = cacheDir;
223 if (!mCacheDir.empty() && *mCacheDir.rbegin() != '/') {
224 mCacheDir.push_back('/'); // Ensure mCacheDir is end with '/
    [all...]
Script.h 63 std::string mCacheDir;
  /frameworks/base/test-runner/src/android/test/
RenamingDelegatingContext.java 44 private File mCacheDir;
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/base/core/java/android/app/
ContextImpl.java 163 private File mCacheDir;
708 if (mCacheDir == null) {
709 mCacheDir = new File(getDataDirFile(), "cache");
711 if (!mCacheDir.exists()) {
712 if(!mCacheDir.mkdirs()) {
717 mCacheDir.getPath(),
722 return mCacheDir;
    [all...]

Completed in 2872 milliseconds