Searched refs:inList (Results 1 – 6 of 6) sorted by relevance
/frameworks/native/include/binder/ |
D | IInterface.h | 309 constexpr bool inList(const char* a, const char* const* whitelist) { in inList() function 312 return inList(a, whitelist + 1); in inList() 316 return inList(name, kManualInterfaces) || in allowedManualInterface() 317 inList(name, kDownstreamManualInterfaces); in allowedManualInterface()
|
/frameworks/native/libs/binder/include/binder/ |
D | IInterface.h | 309 constexpr bool inList(const char* a, const char* const* whitelist) { in inList() function 312 return inList(a, whitelist + 1); in inList() 316 return inList(name, kManualInterfaces) || in allowedManualInterface() 317 inList(name, kDownstreamManualInterfaces); in allowedManualInterface()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | WatchedIntentFilter.java | 690 public static List<WatchedIntentFilter> toWatchedIntentFilterList(List<IntentFilter> inList) { in toWatchedIntentFilterList() argument 692 for (int i = 0; i < inList.size(); i++) { in toWatchedIntentFilterList() 693 outList.add(new WatchedIntentFilter(inList.get(i))); in toWatchedIntentFilterList() 701 public static List<IntentFilter> toIntentFilterList(List<WatchedIntentFilter> inList) { in toIntentFilterList() argument 703 for (int i = 0; i < inList.size(); i++) { in toIntentFilterList() 704 outList.add(inList.get(i).getIntentFilter()); in toIntentFilterList()
|
/frameworks/base/services/core/java/com/android/server/media/metrics/ |
D | MediaMetricsManagerService.java | 384 if (inList(packages, cached)) { in loggingLevelInternal() 390 private boolean inList(String[] packages, List<String> arr) { in inList() method in MediaMetricsManagerService.BinderService
|
/frameworks/base/core/tests/coretests/src/com/android/internal/os/ |
D | BatteryStatsCpuTimesTest.java | 178 final boolean[] inList = {false, true, false}; in testMarkPartialTimersAsEligible() 180 partialTimers.get(i).mInList = inList[i]; in testMarkPartialTimersAsEligible()
|
/frameworks/base/core/java/android/widget/ |
D | AbsListView.java | 4123 final boolean inList = in onTouchUp() 4125 if (inList && !child.hasExplicitFocusable()) { in onTouchUp()
|