Home
last modified time | relevance | path

Searched refs:remainingAttempts (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSimResponse.java85 public void changeIccPin2ForAppResponse(RadioResponseInfo responseInfo, int remainingAttempts) { in changeIccPin2ForAppResponse() argument
86 RadioResponse.responseInts(RIL.SIM_SERVICE, mRil, responseInfo, remainingAttempts); in changeIccPin2ForAppResponse()
93 public void changeIccPinForAppResponse(RadioResponseInfo responseInfo, int remainingAttempts) { in changeIccPinForAppResponse() argument
94 RadioResponse.responseInts(RIL.SIM_SERVICE, mRil, responseInfo, remainingAttempts); in changeIccPinForAppResponse()
394 public void supplyIccPin2ForAppResponse(RadioResponseInfo responseInfo, int remainingAttempts) { in supplyIccPin2ForAppResponse() argument
395 RadioResponse.responseInts(RIL.SIM_SERVICE, mRil, responseInfo, remainingAttempts); in supplyIccPin2ForAppResponse()
402 public void supplyIccPinForAppResponse(RadioResponseInfo responseInfo, int remainingAttempts) { in supplyIccPinForAppResponse() argument
403 RadioResponse.responseInts(RIL.SIM_SERVICE, mRil, responseInfo, remainingAttempts); in supplyIccPinForAppResponse()
410 public void supplyIccPuk2ForAppResponse(RadioResponseInfo responseInfo, int remainingAttempts) { in supplyIccPuk2ForAppResponse() argument
411 RadioResponse.responseInts(RIL.SIM_SERVICE, mRil, responseInfo, remainingAttempts); in supplyIccPuk2ForAppResponse()
[all …]
DRadioResponse.java140 public void supplyIccPinForAppResponse(RadioResponseInfo responseInfo, int remainingAttempts) { in supplyIccPinForAppResponse() argument
141 responseInts(responseInfo, remainingAttempts); in supplyIccPinForAppResponse()
148 public void supplyIccPukForAppResponse(RadioResponseInfo responseInfo, int remainingAttempts) { in supplyIccPukForAppResponse() argument
149 responseInts(responseInfo, remainingAttempts); in supplyIccPukForAppResponse()
156 public void supplyIccPin2ForAppResponse(RadioResponseInfo responseInfo, int remainingAttempts) { in supplyIccPin2ForAppResponse() argument
157 responseInts(responseInfo, remainingAttempts); in supplyIccPin2ForAppResponse()
164 public void supplyIccPuk2ForAppResponse(RadioResponseInfo responseInfo, int remainingAttempts) { in supplyIccPuk2ForAppResponse() argument
165 responseInts(responseInfo, remainingAttempts); in supplyIccPuk2ForAppResponse()
172 public void changeIccPinForAppResponse(RadioResponseInfo responseInfo, int remainingAttempts) { in changeIccPinForAppResponse() argument
173 responseInts(responseInfo, remainingAttempts); in changeIccPinForAppResponse()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DAuthCredentialView.java378 final int remainingAttempts = maxAttempts - numAttempts; in updateErrorMessage() local
379 if (remainingAttempts == 1) { in updateErrorMessage()
381 } else if (remainingAttempts <= 0) { in updateErrorMessage()
/frameworks/av/media/libaudioclient/
DAudioRecord.cpp873 int32_t remainingAttempts = kMaxCreateAttempts; in createRecord_l() local
942 if (status != FAILED_TRANSACTION || --remainingAttempts <= 0) { in createRecord_l()