Home
last modified time | relevance | path

Searched refs:phoneAccountId (Results 1 – 9 of 9) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/voicemail/listui/error/
DVoicemailStatus.java47 public final String phoneAccountId; field in VoicemailStatus
76 phoneAccountId = getString(statusCursor, VoicemailStatusQuery.PHONE_ACCOUNT_ID, ""); in VoicemailStatus()
80 phoneAccountId = ""; in VoicemailStatus()
121 phoneAccountId = builder.phoneAccountId; in VoicemailStatus()
158 private String phoneAccountId = ""; field in VoicemailStatus.Builder
192 this.phoneAccountId = id; in setPhoneAccountId()
312 if (TextUtils.isEmpty(phoneAccountComponentName) || TextUtils.isEmpty(phoneAccountId)) { in getPhoneAccountHandle()
319 return new PhoneAccountHandle(componentName, phoneAccountId); in getPhoneAccountHandle()
DVoicemailStatusCorruptionHandler.java70 status.phoneAccountId); in maybeFixVoicemailStatus()
DVoicemailTosMessageCreator.java100 status.phoneAccountId); in getTosMessage()
363 status.phoneAccountId);
/packages/apps/Dialer/java/com/android/voicemail/impl/sync/
DVoicemailStatusQueryHelper.java88 String phoneAccountId = phoneAccount.getId(); in isFieldEqualTo() local
89 if (phoneAccountComponentName == null || phoneAccountId == null) { in isFieldEqualTo()
100 String[] whereArgs = {phoneAccountComponentName, phoneAccountId, context.getPackageName()}; in isFieldEqualTo()
DVoicemailsQueryHelper.java208 String phoneAccountId = phoneAccount.getId(); in isVoicemailUnique() local
210 if (phoneAccountComponentName == null || phoneAccountId == null || sourceData == null) { in isVoicemailUnique()
221 String[] whereArgs = {phoneAccountComponentName, phoneAccountId, sourceData}; in isVoicemailUnique()
/packages/apps/Dialer/java/com/android/dialer/voicemail/listui/
DVoicemailCursorLoader.java139 String phoneAccountId = cursor.getString(PHONE_ACCOUNT_ID); in toVoicemailEntry() local
140 if (!TextUtils.isEmpty(phoneAccountId)) { in toVoicemailEntry()
141 voicemailEntryBuilder.setPhoneAccountId(phoneAccountId); in toVoicemailEntry()
DNewVoicemailMediaPlayerView.java72 private String phoneAccountId; field in NewVoicemailMediaPlayerView
128 phoneAccountId = null; in reset()
160 phoneAccountId = voicemailEntryFromAdapter.getPhoneAccountId(); in bindValuesFromAdapterOfExpandedViewHolderMediaPlayerView()
538 phoneAccountComponentName, phoneAccountId)));
/packages/apps/Dialer/java/com/android/dialer/calllog/database/
DCoalescer.java280 String phoneAccountId = annotatedCallLogRow.getString(phoneAccountIdColumn); in mergeRow() local
281 if (!TextUtils.isEmpty(phoneAccountId)) { in mergeRow()
282 coalescedRowBuilder.setPhoneAccountId(phoneAccountId); in mergeRow()
/packages/apps/Dialer/java/com/android/dialer/calllog/datasources/systemcalllog/
DSystemCallLogDataSource.java311 String phoneAccountId = cursor.getString(phoneAccountIdColumn); in handleInsertsAndUpdates() local
346 contentValues.put(AnnotatedCallLog.PHONE_ACCOUNT_ID, phoneAccountId); in handleInsertsAndUpdates()