Lines Matching defs:address
353 bool SmsPersistHelper::UpdateContact(const std::string &address)
356 if (address.empty()) {
357 TELEPHONY_LOGE("address empty");
362 bool ret = QueryContactedCount(address, rawCountId, contactedCount);
387 bool SmsPersistHelper::QueryContactedCount(const std::string &address, int32_t &rawCountId, int32_t &contactedCount)
389 bool ret = QueryRawContactId(address, rawCountId);
391 TELEPHONY_LOGE("no sms address in contact");
424 bool SmsPersistHelper::QueryRawContactId(const std::string &address, int32_t &rawCountId)
437 address, ISO_COUNTRY_CODE, i18n::phonenumbers::PhoneNumberUtil::PhoneNumberFormat::NATIONAL, nationalNum);
440 nationalNum = address;
442 ret = FormatSmsNumber(address, ISO_COUNTRY_CODE,
446 internationalNum = address;