Searched refs:blocklist (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/packages/DynamicSystemInstallationService/tests/src/com/android/dynsystem/ |
D | KeyRevocationListTest.java | 62 KeyRevocationList blocklist; in testFromJsonString() local 63 blocklist = KeyRevocationList.fromJsonString(sBlocklistJsonString); in testFromJsonString() 64 Assert.assertNotNull(blocklist); in testFromJsonString() 65 Assert.assertFalse(blocklist.mEntries.isEmpty()); in testFromJsonString() 66 blocklist = KeyRevocationList.fromJsonString("{}"); in testFromJsonString() 67 Assert.assertNotNull(blocklist); in testFromJsonString() 68 Assert.assertTrue(blocklist.mEntries.isEmpty()); in testFromJsonString() 100 KeyRevocationList blocklist = KeyRevocationList.fromUrl(mockUrl); in testFromUrl() local 101 Assert.assertNotNull(blocklist); in testFromUrl() 102 Assert.assertFalse(blocklist.mEntries.isEmpty()); in testFromUrl() [all …]
|
/frameworks/base/services/robotests/src/com/android/server/location/gnss/ |
D | GnssSatelliteBlocklistHelperTest.java | 72 String blocklist = "3,0,5,24"; in blocklistOf2Satellites_callbackIsCalled() local 73 updateBlocklistAndVerifyCallbackIsCalled(blocklist); in blocklistOf2Satellites_callbackIsCalled() 81 String blocklist = "3, 11"; in blocklistWithSpaces_callbackIsCalled() local 82 updateBlocklistAndVerifyCallbackIsCalled(blocklist); in blocklistWithSpaces_callbackIsCalled() 90 String blocklist = ""; in emptyBlocklist_callbackIsCalled() local 91 updateBlocklistAndVerifyCallbackIsCalled(blocklist); in emptyBlocklist_callbackIsCalled() 99 String blocklist = "3,0,5"; in blocklistWithOddNumberOfValues_callbackIsNotCalled() local 100 updateBlocklistAndNotifyContentObserver(blocklist); in blocklistWithOddNumberOfValues_callbackIsNotCalled() 109 String blocklist = "3,-11"; in blocklistWithNegativeValue_callbackIsNotCalled() local 110 updateBlocklistAndNotifyContentObserver(blocklist); in blocklistWithNegativeValue_callbackIsNotCalled() [all …]
|
/frameworks/base/services/core/java/com/android/server/location/gnss/ |
D | GnssSatelliteBlocklistHelper.java | 67 String blocklist = Settings.Global.getString( in updateSatelliteBlocklist() local 70 if (blocklist == null) { in updateSatelliteBlocklist() 71 blocklist = ""; in updateSatelliteBlocklist() 73 Log.i(TAG, String.format("Update GNSS satellite blocklist: %s", blocklist)); in updateSatelliteBlocklist() 77 blocklistValues = parseSatelliteBlocklist(blocklist); in updateSatelliteBlocklist() 100 static List<Integer> parseSatelliteBlocklist(String blocklist) throws NumberFormatException { in parseSatelliteBlocklist() argument 101 String[] strings = blocklist.split(BLOCKLIST_DELIMITER); in parseSatelliteBlocklist()
|
/frameworks/rs/tests/lldb/ |
D | config.py | 85 def blocklist(self): member in Config
|
D | run_tests.py | 177 self.blocklist = _choice(args.blocklist, config.blocklist) 725 and not item in state.blocklist):
|
D | README.txt | 45 [--blocklist BLOCKLIST [BLOCKLIST ...]] 78 --blocklist BLOCKLIST [BLOCKLIST ...] 79 Provide a test blocklist for skipping specific tests. 80 To specify the blocklist from the command line the 81 following can be used: --blocklist test1.py test2.py
|
/frameworks/base/libs/androidfw/ |
D | Android.bp | 131 blocklist: "libandroidfw_blocklist.txt",
|