Home
last modified time | relevance | path

Searched refs:idCreationTime (Results 1 – 2 of 2) sorted by relevance

/packages/services/Car/service/src/com/android/car/remoteaccess/
DRemoteAccessStorage.java95 public final long idCreationTime; field in RemoteAccessStorage.ClientIdEntry
98 ClientIdEntry(String clientId, long idCreationTime, String uidName) { in ClientIdEntry() argument
101 this.idCreationTime = idCreationTime; in ClientIdEntry()
114 return clientId.equals(other.clientId) && idCreationTime == other.idCreationTime in equals()
120 return Objects.hash(clientId, idCreationTime, uidName); in hashCode()
126 .append(", idCreationTime: ").append(idCreationTime).append(", uidName: ") in toString()
239 values.put(COLUMN_CLIENT_ID_CREATION_TIME, entry.idCreationTime); in replaceEntry()
DCarRemoteAccessService.java1284 new ClientToken(entry.clientId, entry.idCreationTime)); in populatePackageClientIdMapping()