Home
last modified time | relevance | path

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

/aosp12/packages/apps/RemoteProvisioner/tests/unittests/src/com/android/remoteprovisioner/unittest/
H A DCborUtilsTest.java175 GeekResponse resp = CborUtils.parseGeekResponse(mBaos.toByteArray()); in testParseGeekResponseFakeData()
204 GeekResponse resp = CborUtils.parseGeekResponse(mBaos.toByteArray()); in testExtraDeviceConfigEntriesDontFail()
231 GeekResponse resp = CborUtils.parseGeekResponse(mBaos.toByteArray()); in testMissingDeviceConfigDoesntFail()
260 GeekResponse resp = CborUtils.parseGeekResponse(mBaos.toByteArray()); in testMissingDeviceConfigEntriesDoesntFail()
284 assertNull(CborUtils.parseGeekResponse(mBaos.toByteArray())); in testParseGeekResponseFailsOnWrongType()
298 assertNull(CborUtils.parseGeekResponse(mBaos.toByteArray())); in testParseGeekResponseFailsOnWrongType()
312 assertNull(CborUtils.parseGeekResponse(mBaos.toByteArray())); in testParseGeekResponseFailsOnWrongType()
326 assertNull(CborUtils.parseGeekResponse(mBaos.toByteArray())); in testParseGeekResponseFailsOnWrongType()
339 assertNull(CborUtils.parseGeekResponse(mBaos.toByteArray())); in testParseGeekResponseWrongSize()
/aosp12/packages/apps/RemoteProvisioner/src/com/android/remoteprovisioner/
H A DServerInterface.java140 return CborUtils.parseGeekResponse(cborBytes.toByteArray()); in fetchGeek()
H A DCborUtils.java174 public static GeekResponse parseGeekResponse(byte[] serverResp) { in parseGeekResponse() method in CborUtils