Searched refs:statuses (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/services/core/java/com/android/server/connectivity/ |
D | DnsManager.java | 284 final PrivateDnsValidationStatuses statuses = in updatePrivateDnsStatus() local 286 final boolean validated = (null != statuses) && statuses.hasValidatedServer(); in updatePrivateDnsStatus() 293 if (usingPrivateDns && null != statuses) { in updatePrivateDnsStatus() 294 statuses.fillInValidatedPrivateDns(lp); in updatePrivateDnsStatus() 301 final PrivateDnsValidationStatuses statuses = in updatePrivateDnsValidation() local 303 if (statuses == null) return; in updatePrivateDnsValidation() 304 statuses.updateStatus(update); in updatePrivateDnsValidation()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/storage/ |
D | RecoverableKeyStoreDbTest.java | 430 Map<String, Integer> statuses = mRecoverableKeyStoreDb.getStatusForAllKeys(uid); in getStatusForAllKeys_with3Keys() local 431 assertThat(statuses).hasSize(3); in getStatusForAllKeys_with3Keys() 432 assertThat(statuses).containsEntry(alias, in getStatusForAllKeys_with3Keys() 434 assertThat(statuses).containsEntry(alias2, status); in getStatusForAllKeys_with3Keys() 435 assertThat(statuses).containsEntry(alias3, status); in getStatusForAllKeys_with3Keys() 441 statuses = mRecoverableKeyStoreDb.getStatusForAllKeys(uid); in getStatusForAllKeys_with3Keys() 443 assertThat(statuses).hasSize(3); in getStatusForAllKeys_with3Keys() 444 assertThat(statuses).containsEntry(alias, status2); // updated from default in getStatusForAllKeys_with3Keys() 445 assertThat(statuses).containsEntry(alias2, status); in getStatusForAllKeys_with3Keys() 446 assertThat(statuses).containsEntry(alias3, status2); // updated in getStatusForAllKeys_with3Keys() [all …]
|
/frameworks/hardware/interfaces/cameraservice/service/2.0/ |
D | ICameraService.hal | 58 * @return statuses a list of CameraStatusAndIds which store the deviceIds 59 * and their corresponding statuses. 62 generates (Status status, vec<CameraStatusAndId> statuses);
|
/frameworks/av/camera/tests/ |
D | CameraBinderTests.cpp | 326 std::vector<hardware::CameraStatus> statuses; in TEST() local 327 res = service->addListener(listener, &statuses); in TEST() 330 EXPECT_EQ(numCameras, static_cast<const int>(statuses.size())); in TEST() 331 for (const auto &it : statuses) { in TEST() 436 std::vector<hardware::CameraStatus> statuses; in SetUp() local 437 service->addListener(serviceListener, &statuses); in SetUp() 438 for (const auto &it : statuses) { in SetUp()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/ |
D | RecoverableKeyStoreManagerTest.java | 1230 Map<String, Integer> statuses = in setRecoveryStatus() local 1232 assertThat(statuses).hasSize(1); in setRecoveryStatus() 1233 assertThat(statuses).containsEntry(alias, status); in setRecoveryStatus() 1236 statuses = mRecoverableKeyStoreManager.getRecoveryStatus(); in setRecoveryStatus() 1237 assertThat(statuses).hasSize(1); in setRecoveryStatus() 1238 assertThat(statuses).containsEntry(alias, status2); // updated in setRecoveryStatus()
|
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/storage/ |
D | RecoverableKeyStoreDb.java | 222 HashMap<String, Integer> statuses = new HashMap<>(); in getStatusForAllKeys() local 228 statuses.put(alias, recoveryStatus); in getStatusForAllKeys() 230 return statuses; in getStatusForAllKeys()
|
/frameworks/base/services/core/java/com/android/server/content/ |
D | SyncManager.java | 2211 final ArrayList<Pair<EndPoint, SyncStatusInfo>> statuses = new ArrayList<>(); in dumpSyncState() local 2273 statuses.add(Pair.create(settings.target, status)); in dumpSyncState() 2335 for (int i = 0; i < statuses.size(); i++) { in dumpSyncState() 2336 final Pair<EndPoint, SyncStatusInfo> event = statuses.get(i); in dumpSyncState()
|