Searched defs:mRetryCount (Results 1 - 6 of 6) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRetryManager.java195 private int mRetryCount = 0; field in class:RetryManager
410 if (mRetryCount < mRetryArray.size()) {
411 index = mRetryCount;
569 if (!mRetryForever && mRetryCount + 1 > mMaxRetryCount) {
574 ++mRetryCount;
606 mRetryCount = 0;
669 return "RetryManager: mApnType=" + mApnType + " mRetryCount=" + mRetryCount
H A DSMSDispatcher.java680 tracker.mRetryCount = MAX_SEND_RETRIES;
684 +" mRetryCount="+tracker.mRetryCount
695 tracker.mRetryCount < MAX_SEND_RETRIES) {
704 tracker.mRetryCount++;
1456 public int mRetryCount; field in class:SMSDispatcher.SmsTracker
1507 mRetryCount = 0;
/frameworks/av/services/audioflinger/
H A DPlaybackTracks.h167 int8_t mRetryCount; member in class:Track
/frameworks/base/services/core/java/com/android/server/utils/
H A DManagedApplicationService.java98 private int mRetryCount; field in class:ManagedApplicationService
438 mRetryCount = 0;
443 mRetryCount++;
449 && mRetryCount >= MAX_RETRY_COUNT)) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccCarrierPrivilegeRules.java190 private int mRetryCount; // Number of retries for open logical channel. field in class:UiccCarrierPrivilegeRules
439 if (ar.exception instanceof CommandException && mRetryCount < MAX_RETRY
442 mRetryCount++;
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsManager.java258 private int mRetryCount = 0; field in class:ImsManager.Connector
264 int timeout = (1 << mRetryCount) * IMS_RETRY_STARTING_TIMEOUT_MS;
265 if (mRetryCount <= CEILING_SERVICE_RETRY_COUNT) {
266 mRetryCount++;
291 mRetryCount = 0;
353 mRetryCount = 0;

Completed in 178 milliseconds