Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/entitlement/response/
DGetImsiPseudonymResponseTest.java55 .put(Response.JSON_KEY_RESPONSE_CODE, Response.RESPONSE_CODE_REQUEST_SUCCESSFUL) in responseBodyCorrectWithRefreshInterval()
59 .put(Response.JSON_KEY_RESPONSE_CODE, Response.RESPONSE_CODE_REQUEST_SUCCESSFUL) in responseBodyCorrectWithRefreshInterval()
79 .put(Response.JSON_KEY_RESPONSE_CODE, Response.RESPONSE_CODE_REQUEST_SUCCESSFUL) in responseBodyCorrectWithoutRefreshInterval()
83 .put(Response.JSON_KEY_RESPONSE_CODE, Response.RESPONSE_CODE_REQUEST_SUCCESSFUL) in responseBodyCorrectWithoutRefreshInterval()
110 .put(Response.JSON_KEY_RESPONSE_CODE, Response.RESPONSE_CODE_REQUEST_SUCCESSFUL) in responseBodyInvalidRequest()
114 .put(Response.JSON_KEY_RESPONSE_CODE, Response.RESPONSE_CODE_INVALID_REQUEST) in responseBodyInvalidRequest()
131 .put(Response.JSON_KEY_RESPONSE_CODE, Response.RESPONSE_CODE_AKA_AUTH_FAILED) in responseBodyAuthFailed()
135 .put(Response.JSON_KEY_RESPONSE_CODE, Response.RESPONSE_CODE_REQUEST_SUCCESSFUL) in responseBodyAuthFailed()
151 .put(Response.JSON_KEY_RESPONSE_CODE, Response.RESPONSE_CODE_REQUEST_SUCCESSFUL); in responseBodyWrongMessageId()
165 .put(Response.JSON_KEY_RESPONSE_CODE, Response.RESPONSE_CODE_SERVER_ERROR); in responseBodyServerError()
DChallengeResponseTest.java43 .put(Response.JSON_KEY_RESPONSE_CODE, Response.RESPONSE_CODE_AKA_CHALLENGE) in responseBodyCorrect()
63 .put(Response.JSON_KEY_RESPONSE_CODE, Response.RESPONSE_CODE_INVALID_REQUEST); in responseBodyInvalidRequest()
74 .put(Response.JSON_KEY_RESPONSE_CODE, Response.RESPONSE_CODE_AKA_CHALLENGE) in responseBodyWrongMessageId()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/entitlement/
DCarrierSpecificServiceEntitlementTest.java66 private static final String JSON_KEY_RESPONSE_CODE = "response-code"; field in CarrierSpecificServiceEntitlementTest
154 .put(JSON_KEY_RESPONSE_CODE, Response.RESPONSE_CODE_AKA_CHALLENGE) in getAuthHttpResponse()
163 .put(JSON_KEY_RESPONSE_CODE, Response.RESPONSE_CODE_AKA_AUTH_FAILED); in getAuthFailedHttpResponse()
171 .put(JSON_KEY_RESPONSE_CODE, Response.RESPONSE_CODE_REQUEST_SUCCESSFUL) in getGetImsiPseudonymHttpResponse()
178 .put(JSON_KEY_RESPONSE_CODE, Response.RESPONSE_CODE_REQUEST_SUCCESSFUL) in getGetImsiPseudonymHttpResponse()
/packages/modules/Wifi/service/java/com/android/server/wifi/entitlement/response/
DResponse.java26 static final String JSON_KEY_RESPONSE_CODE = "response-code"; field in Response
48 mAuthResponseCode = object.optInt(JSON_KEY_RESPONSE_CODE, -1); in parse3gppAuthentication()
DGetImsiPseudonymResponse.java79 mGetImsiPseudonymResponseCode = object.optInt(JSON_KEY_RESPONSE_CODE, -1); in parseGetImsiPseudonym()