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

  /packages/services/Car/car-lib/src/android/car/content/pm/
CarAppBlockingPolicy.java 36 public final AppBlockingPackageInfo[] whitelists; field in class:CarAppBlockingPolicy
58 public CarAppBlockingPolicy(AppBlockingPackageInfo[] whitelists,
60 this.whitelists = whitelists;
70 whitelists = payloadParcel.createTypedArray(AppBlockingPackageInfo.CREATOR);
83 payloadParcel.writeTypedArray(whitelists, 0);
106 result = prime * result + Arrays.hashCode(whitelists);
125 if (!Arrays.equals(whitelists, other.whitelists)) {
133 return "CarAppBlockingPolicy [whitelists=" + Arrays.toString(whitelists) + ", blacklists=
    [all...]
  /packages/services/Car/tests/android_car_api_test/src/android/car/apitest/
CarAppBlockingPolicyTest.java 35 AppBlockingPackageInfo[] whitelists = new AppBlockingPackageInfo[] { carServiceInfo, local
38 CarAppBlockingPolicy policyExpected = new CarAppBlockingPolicy(whitelists, blacklists);
  /packages/services/Car/tests/carservice_test/src/com/android/car/test/
TestAppBlockingPolicyService.java 61 AppBlockingPackageInfo[] whitelists = new AppBlockingPackageInfo[] { selfInfo }; local
62 CarAppBlockingPolicy policy = new CarAppBlockingPolicy(whitelists, null);
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlParser.java 69 // Whitelists for looking up accepted HTML tags and attributes
70 private List<HtmlWhitelist> whitelists = Lists.newArrayList(DEFAULT_WHITELIST); field in class:HtmlParser
144 whitelists = Lists.newArrayList(whitelist);
148 * Adds an HTML whitelist to the list of whitelists consulted when
152 * Whitelists are consulted in reverse chronological order (starting from
162 whitelists.add(whitelist);
797 * Lookups the element in our whitelist(s). Whitelists are consulted in
805 ListIterator<HtmlWhitelist> iter = whitelists.listIterator(whitelists.size());
816 * Lookups the attribute in our whitelist(s). Whitelists are consulted i
    [all...]
  /packages/services/Car/service/src/com/android/car/pm/
CarPackageManagerService.java 343 AppBlockingPackageInfoWrapper[] whitelistWrapper = verifyList(policy.whitelists);
620 sb.append(" whitelists:\n");
769 private void replaceWhitelists(AppBlockingPackageInfoWrapper[] whitelists) {
771 addToWhitelists(whitelists);
774 private void addToWhitelists(AppBlockingPackageInfoWrapper[] whitelists) {
775 if (whitelists == null) {
778 for (AppBlockingPackageInfoWrapper wrapper : whitelists) {
785 private void removeWhitelists(AppBlockingPackageInfoWrapper[] whitelists) {
786 if (whitelists == null) {
789 for (AppBlockingPackageInfoWrapper wrapper : whitelists) {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/all/
main.go 8 // It compares the output against a set of whitelists
118 // Load whitelists.
138 // Read whitelists and do template substitution.
145 // Allow not-exist errors; not all combinations have whitelists.
225 // And having them in the whitelists will just cause annoyance
  /prebuilts/go/linux-x86/src/cmd/vet/all/
main.go 8 // It compares the output against a set of whitelists
118 // Load whitelists.
138 // Read whitelists and do template substitution.
145 // Allow not-exist errors; not all combinations have whitelists.
225 // And having them in the whitelists will just cause annoyance

Completed in 483 milliseconds