Home
last modified time | relevance | path

Searched refs:createTimestamp (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DBackgroundInstallControlServiceTest.java556 long createTimestamp = PACKAGE_ADD_TIMESTAMP_1 in testHandleUsageEvent_packageAddedNoUsageEvent() local
560 createTimestamp); in testHandleUsageEvent_packageAddedNoUsageEvent()
593 long createTimestamp = PACKAGE_ADD_TIMESTAMP_1 in testHandleUsageEvent_packageAddedInsideTimeFrame() local
597 createTimestamp); in testHandleUsageEvent_packageAddedInsideTimeFrame()
638 long createTimestamp = PACKAGE_ADD_TIMESTAMP_1 in testHandleUsageEvent_packageAddedOutsideTimeFrame1() local
642 createTimestamp); in testHandleUsageEvent_packageAddedOutsideTimeFrame1()
687 long createTimestamp = PACKAGE_ADD_TIMESTAMP_1 in testHandleUsageEvent_packageAddedOutsideTimeFrame2() local
691 createTimestamp); in testHandleUsageEvent_packageAddedOutsideTimeFrame2()
740 long createTimestamp = PACKAGE_ADD_TIMESTAMP_1 in testHandleUsageEvent_packageAddedThroughAdb() local
744 createTimestamp); in testHandleUsageEvent_packageAddedThroughAdb()
[all …]
/aosp14/frameworks/base/core/java/android/content/pm/
H A DApplicationInfo.java1203 public long createTimestamp; field in ApplicationInfo
1733 pw.println(prefix + "createTimestamp=" + createTimestamp); in dump()
1899 createTimestamp = SystemClock.uptimeMillis(); in ApplicationInfo()
1973 createTimestamp = SystemClock.uptimeMillis(); in ApplicationInfo()
2064 dest.writeLong(createTimestamp); in writeToParcel()
2164 createTimestamp = source.readLong(); in ApplicationInfo()
/aosp14/frameworks/base/core/java/android/app/
H A DLoadedApk.java394 if (mApplicationInfo != null && mApplicationInfo.createTimestamp > aInfo.createTimestamp) { in setApplicationInfo()
396 + " is out of date with TS " + aInfo.createTimestamp + " < the current TS " in setApplicationInfo()
397 + mApplicationInfo.createTimestamp); in setApplicationInfo()
H A DActivityThread.java1275 if (oldAi != null && oldAi.createTimestamp > ai.createTimestamp) { in scheduleApplicationInfoChanged()
1277 + ai.createTimestamp + " < already pending TS " in scheduleApplicationInfoChanged()
1278 + oldAi.createTimestamp); in scheduleApplicationInfoChanged()
2762 if (packageInfo.getApplicationInfo().createTimestamp > aInfo.createTimestamp) { in getPackageInfo()
/aosp14/frameworks/base/services/core/java/com/android/server/pm/
H A DBackgroundInstallControlService.java244 - (SystemClock.uptimeMillis() - appInfo.createTimestamp); in handlePackageAdd()