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.java198 GeekResponse resp = CborUtils.parseGeekResponse(mBaos.toByteArray()); in testParseGeekResponseFakeData()
227 GeekResponse resp = CborUtils.parseGeekResponse(mBaos.toByteArray()); in testParseGeekResponseFakeDataWithBadCertTimeRange()
255 GeekResponse resp = CborUtils.parseGeekResponse(mBaos.toByteArray()); in testExtraDeviceConfigEntriesDontFail()
282 GeekResponse resp = CborUtils.parseGeekResponse(mBaos.toByteArray()); in testMissingDeviceConfigDoesntFail()
313 GeekResponse resp = CborUtils.parseGeekResponse(mBaos.toByteArray()); in testMissingDeviceConfigEntriesDoesntFail()
339 assertNull(CborUtils.parseGeekResponse(mBaos.toByteArray())); in testParseGeekResponseFailsOnWrongType()
353 assertNull(CborUtils.parseGeekResponse(mBaos.toByteArray())); in testParseGeekResponseFailsOnWrongType()
367 assertNull(CborUtils.parseGeekResponse(mBaos.toByteArray())); in testParseGeekResponseFailsOnWrongType()
381 assertNull(CborUtils.parseGeekResponse(mBaos.toByteArray())); in testParseGeekResponseFailsOnWrongType()
394 assertNull(CborUtils.parseGeekResponse(mBaos.toByteArray())); in testParseGeekResponseWrongSize()
/packages/modules/RemoteKeyProvisioning/app/src/com/android/rkpdapp/utils/
DCborUtils.java208 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()