Home
last modified time | relevance | path

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

/ohos5.0/base/telephony/call_manager/services/call/call_state_observer/src/
H A Dcall_records_handler.cpp153 std::map<std::string, int32_t> phoneNumAndUnreadCountMap; in QueryAndNotifyUnReadMissedCall() local
159 bool ret = callDataPtr_->QueryCallLog(phoneNumAndUnreadCountMap, predicates); in QueryAndNotifyUnReadMissedCall()
160 if (phoneNumAndUnreadCountMap.empty() || !ret) { in QueryAndNotifyUnReadMissedCall()
164 int32_t result = missedCallNotification_->NotifyUnReadMissedCall(phoneNumAndUnreadCountMap); in QueryAndNotifyUnReadMissedCall()
H A Dmissed_call_notification.cpp149 …CallNotification::NotifyUnReadMissedCall(std::map<std::string, int32_t> &phoneNumAndUnreadCountMap) in NotifyUnReadMissedCall() argument
155 for (auto it = phoneNumAndUnreadCountMap.begin(); it != phoneNumAndUnreadCountMap.end(); it++) { in NotifyUnReadMissedCall()
H A Dcall_data_base_helper.cpp222 …std::map<std::string, int32_t> &phoneNumAndUnreadCountMap, DataShare::DataSharePredicates &predica… in QueryCallLog() argument
248 auto iter = phoneNumAndUnreadCountMap.find(phoneNumber); in QueryCallLog()
249 if (iter != phoneNumAndUnreadCountMap.end()) { in QueryCallLog()
252 phoneNumAndUnreadCountMap.insert( in QueryCallLog()
/ohos5.0/base/telephony/call_manager/services/call/call_state_observer/include/
H A Dmissed_call_notification.h35 int32_t NotifyUnReadMissedCall(std::map<std::string, int32_t> &phoneNumAndUnreadCountMap);