Home
last modified time | relevance | path

Searched refs:currentApnIndex_ (Results 1 – 2 of 2) sorted by relevance

/base/telephony/cellular_data/services/src/apn_manager/
Dconnection_retry_policy.cpp34 if (currentApnIndex_ >= static_cast<int32_t>(matchedApns_.size()) || currentApnIndex_ < 0) { in GetNextRetryApnItem()
35 currentApnIndex_ = 0; in GetNextRetryApnItem()
36 return matchedApns_[currentApnIndex_]; in GetNextRetryApnItem()
38 sptr<ApnItem> apnItem = matchedApns_[currentApnIndex_]; in GetNextRetryApnItem()
42 currentApnIndex_++; in GetNextRetryApnItem()
/base/telephony/cellular_data/services/include/apn_manager/
Dconnection_retry_policy.h42 mutable int32_t currentApnIndex_ = 0; variable