Home
last modified time | relevance | path

Searched refs:mResponseCode (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
DVerifyCredentialResponse.java36 private int mResponseCode; field in VerifyCredentialResponse
67 mResponseCode = RESPONSE_OK; in VerifyCredentialResponse()
74 mResponseCode = RESPONSE_OK; in VerifyCredentialResponse()
79 mResponseCode = RESPONSE_RETRY; in VerifyCredentialResponse()
84 mResponseCode = responseCode; in VerifyCredentialResponse()
91 dest.writeInt(mResponseCode); in writeToParcel()
92 if (mResponseCode == RESPONSE_RETRY) { in writeToParcel()
94 } else if (mResponseCode == RESPONSE_OK) { in writeToParcel()
116 return mResponseCode; in getResponseCode()
/frameworks/base/core/java/android/service/gatekeeper/
DGateKeeperResponse.java32 private final int mResponseCode; field in GateKeeperResponse
39 mResponseCode = responseCode; in GateKeeperResponse()
43 mResponseCode = responseCode; in GateKeeperResponse()
80 dest.writeInt(mResponseCode); in writeToParcel()
81 if (mResponseCode == RESPONSE_RETRY) { in writeToParcel()
83 } else if (mResponseCode == RESPONSE_OK) { in writeToParcel()
105 return mResponseCode; in getResponseCode()
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
DBluetoothMasRequest.java83 protected int mResponseCode; field in BluetoothMasRequest
120 mResponseCode = op.getResponseCode(); in executeGet()
122 mResponseCode = ResponseCodes.OBEX_HTTP_INTERNAL_ERROR; in executeGet()
143 mResponseCode = op.getResponseCode(); in executePut()
145 mResponseCode = ResponseCodes.OBEX_HTTP_INTERNAL_ERROR; in executePut()
152 return (mResponseCode == ResponseCodes.OBEX_HTTP_OK); in isSuccess()
DBluetoothMasRequestSetPath.java66 mResponseCode = hs.getResponseCode(); in execute()
68 mResponseCode = ResponseCodes.OBEX_HTTP_INTERNAL_ERROR; in execute()
DBluetoothMasRequestPushMessage.java65 mResponseCode = ResponseCodes.OBEX_HTTP_INTERNAL_ERROR; in readResponseHeaders()
67 mResponseCode = ResponseCodes.OBEX_HTTP_INTERNAL_ERROR; in readResponseHeaders()
DBluetoothMasRequestGetMessage.java89 mResponseCode = ResponseCodes.OBEX_HTTP_INTERNAL_ERROR; in readResponse()