Home
last modified time | relevance | path

Searched refs:parseGeekResponse (Results 1 – 3 of 3) sorted by relevance

/packages/modules/RemoteKeyProvisioning/app/tests/unit/src/com/android/rkpdapp/unittest/
DCborUtilsTest.java194 GeekResponse resp = CborUtils.parseGeekResponse(mBaos.toByteArray()); in testParseGeekResponseFakeData()
223 GeekResponse resp = CborUtils.parseGeekResponse(mBaos.toByteArray()); in testParseGeekResponseFakeDataWithBadCertTimeRange()
251 GeekResponse resp = CborUtils.parseGeekResponse(mBaos.toByteArray()); in testExtraDeviceConfigEntriesDontFail()
278 GeekResponse resp = CborUtils.parseGeekResponse(mBaos.toByteArray()); in testMissingDeviceConfigDoesntFail()
309 GeekResponse resp = CborUtils.parseGeekResponse(mBaos.toByteArray()); in testMissingDeviceConfigEntriesDoesntFail()
335 assertNull(CborUtils.parseGeekResponse(mBaos.toByteArray())); in testParseGeekResponseFailsOnWrongType()
349 assertNull(CborUtils.parseGeekResponse(mBaos.toByteArray())); in testParseGeekResponseFailsOnWrongType()
363 assertNull(CborUtils.parseGeekResponse(mBaos.toByteArray())); in testParseGeekResponseFailsOnWrongType()
377 assertNull(CborUtils.parseGeekResponse(mBaos.toByteArray())); in testParseGeekResponseFailsOnWrongType()
390 assertNull(CborUtils.parseGeekResponse(mBaos.toByteArray())); in testParseGeekResponseWrongSize()
/packages/modules/RemoteKeyProvisioning/app/src/com/android/rkpdapp/utils/
DCborUtils.java205 public static GeekResponse parseGeekResponse(byte[] serverResp) { in parseGeekResponse() method in CborUtils
/packages/modules/RemoteKeyProvisioning/app/src/com/android/rkpdapp/interfaces/
DServerInterface.java254 GeekResponse resp = CborUtils.parseGeekResponse(cborBytes); in fetchGeek()