Searched refs:trustedDevice (Results 1 – 6 of 6) sorted by relevance
41 public TrustedDeviceEntity(TrustedDevice trustedDevice) { in TrustedDeviceEntity() argument42 id = trustedDevice.getDeviceId(); in TrustedDeviceEntity()43 userId = trustedDevice.getUserId(); in TrustedDeviceEntity()44 handle = trustedDevice.getHandle(); in TrustedDeviceEntity()
44 void addOrReplaceTrustedDevice(TrustedDeviceEntity trustedDevice); in addOrReplaceTrustedDevice() argument48 void removeTrustedDevice(TrustedDeviceEntity trustedDevice); in removeTrustedDevice() argument
243 TrustedDevice trustedDevice = new TrustedDevice(deviceId, userId, handle); in onEscrowTokenActivated() local246 callback.onTrustedDeviceAdded(trustedDevice); in onEscrowTokenActivated()271 public void removeTrustedDevice(TrustedDevice trustedDevice) { in removeTrustedDevice() argument278 mTrustAgentDelegate.removeEscrowToken(trustedDevice.getHandle(), in removeTrustedDevice()279 trustedDevice.getUserId()); in removeTrustedDevice()280 mDatabase.removeTrustedDevice(new TrustedDeviceEntity(trustedDevice)); in removeTrustedDevice()287 callback.onTrustedDeviceRemoved(trustedDevice); in removeTrustedDevice()631 for (TrustedDevice trustedDevice : devices) {632 if (trustedDevice.getDeviceId().equals(device.getDeviceId())) {633 deviceToRemove = trustedDevice;
124 for (Preference trustedDevice : updatedList) { in updateState()125 preferenceGroup.addPreference(trustedDevice); in updateState()
217 mModel.getDeviceToDisable().observe(this, trustedDevice -> { in observeViewModel()218 if (trustedDevice == null) { in observeViewModel()228 mTrustedDeviceManager.removeTrustedDevice(trustedDevice); in observeViewModel()
60 void removeTrustedDevice(in TrustedDevice trustedDevice); in removeTrustedDevice() argument