Home
last modified time | relevance | path

Searched refs:mDataPaths (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/content/
DIntentFilter.java280 private ArrayList<PatternMatcher> mDataPaths = null; field in IntentFilter
467 if (o.mDataPaths != null) { in IntentFilter()
468 mDataPaths = new ArrayList<PatternMatcher>(o.mDataPaths); in IntentFilter()
1209 if (mDataPaths == null) mDataPaths = new ArrayList<PatternMatcher>(); in addDataPath()
1210 mDataPaths.add(path); in addDataPath()
1217 return mDataPaths != null ? mDataPaths.size() : 0; in countDataPaths()
1224 return mDataPaths.get(index); in getDataPath()
1239 if (mDataPaths == null) { in hasDataPath()
1242 final int numDataPaths = mDataPaths.size(); in hasDataPath()
1244 final PatternMatcher pe = mDataPaths.get(i); in hasDataPath()
[all …]
/frameworks/native/cmds/installd/
DCacheTracker.cpp50 mDataPaths.push_back(dataPath); in addDataPath()
63 for (const auto& path : mDataPaths) { in loadStats()
173 for (const auto& path : mDataPaths) { in loadItems()
DCacheTracker.h67 std::vector<std::string> mDataPaths; variable