Searched refs:publishedDate (Results 1 – 5 of 5) sorted by relevance
| /security/security-state-provider/src/main/java/androidx/security/state/provider/ |
| D | UpdateInfo.kt | 48 @Serializable(with = DateSerializer::class) private val publishedDate: Date in serialize() constant in androidx.security.state.provider.SerializableUpdateInfo 51 UpdateInfo(uri, component, securityPatchLevel, publishedDate) in serialize() 66 public val publishedDate: Date constant in androidx.security.state.provider.UpdateInfo 70 SerializableUpdateInfo(uri, component, securityPatchLevel, publishedDate) in toSerializableUpdateInfo() 79 "uri=$uri, component=$component, SPL=$securityPatchLevel, date=$publishedDate)" in toSerializableUpdateInfo() 93 publishedDate == other.publishedDate in toSerializableUpdateInfo() 101 Objects.hash(uri, component, securityPatchLevel, publishedDate) in toSerializableUpdateInfo() 108 @set:JvmSynthetic private var publishedDate: Date = Date(0) // 1970-01-01 in toSerializableUpdateInfo() variable in androidx.security.state.provider.UpdateInfo.Builder 142 public fun setPublishedDate(publishedDate: Date): Builder = apply { in toSerializableUpdateInfo() 143 this.publishedDate = publishedDate in toSerializableUpdateInfo() [all …]
|
| /security/security-state-provider/api/ |
| D | restricted_current.txt | 5 … UpdateInfo(String uri, String component, String securityPatchLevel, java.util.Date publishedDate); 11 property public java.util.Date publishedDate; 20 …androidx.security.state.provider.UpdateInfo.Builder setPublishedDate(java.util.Date publishedDate);
|
| D | current.txt | 5 … UpdateInfo(String uri, String component, String securityPatchLevel, java.util.Date publishedDate); 11 property public java.util.Date publishedDate; 20 …androidx.security.state.provider.UpdateInfo.Builder setPublishedDate(java.util.Date publishedDate);
|
| /security/security-state-provider/src/test/java/androidx/security/state/provider/ |
| D | UpdateInfoManagerTest.kt | 44 private val publishedDate = Date.from(LocalDate.now().atStartOfDay().toInstant(ZoneOffset.UTC)) constant 50 .setPublishedDate(publishedDate)
|
| D | UpdateInfoProviderTest.kt | 51 private val publishedDate = Date.from(LocalDate.now().atStartOfDay().toInstant(ZoneOffset.UTC)) constant 57 .setPublishedDate(publishedDate)
|