Home
last modified time | relevance | path

Searched refs:tokenBytes (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/timezone/
H A DRulesManagerServiceTest.java297 byte[] tokenBytes = createArbitraryTokenBytes(); in getRulesState_operationInProgress()
321 byte[] tokenBytes = createArbitraryTokenBytes(); in requestInstall_operationInProgress()
377 byte[] tokenBytes = createArbitraryTokenBytes(); in requestInstall_nullParcelFileDescriptor()
398 byte[] tokenBytes = createArbitraryTokenBytes(); in requestInstall_nullCallback()
423 byte[] tokenBytes = token.toByteArray(); in requestInstall_asyncSuccess()
498 byte[] tokenBytes = token.toByteArray(); in requestInstall_asyncInstallFail()
603 byte[] tokenBytes = token.toByteArray(); in requestUninstall_asyncSuccess()
637 byte[] tokenBytes = token.toByteArray(); in requestUninstall_asyncNothingInstalled()
701 byte[] tokenBytes = token.toByteArray(); in requestUninstall_asyncUninstallFail()
741 byte[] tokenBytes = token.toByteArray(); in requestNothing_operationInProgressOk()
[all …]
/aosp12/frameworks/base/core/tests/coretests/src/android/app/timezone/
H A DRulesUpdaterContractTest.java55 byte[] tokenBytes = new byte[] { 1, 2, 3, 4, 5 }; in sendBroadcast()
58 expectedIntent.putExtra(RulesUpdaterContract.EXTRA_CHECK_TOKEN, tokenBytes); in sendBroadcast()
62 RulesUpdaterContract.sendBroadcast(mockContext, packageName, tokenBytes); in sendBroadcast()
/aosp12/frameworks/base/services/core/java/com/android/server/timezone/
H A DCheckToken.java57 static CheckToken fromByteArray(byte[] tokenBytes) throws IOException { in fromByteArray() argument
58 ByteArrayInputStream bais = new ByteArrayInputStream(tokenBytes); in fromByteArray()
/aosp12/packages/apps/TimeZoneUpdater/src/main/com/android/timezone/updater/
H A DRulesCheckReceiver.java174 private DistroOperation getOperation(Context context, byte[] tokenBytes) { in getOperation() argument
175 EventLogTags.writeTimezoneCheckReadFromDataApp(Arrays.toString(tokenBytes)); in getOperation()