Home
last modified time | relevance | path

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

/packages/services/Telecomm/src/com/android/server/telecom/callfiltering/
DCallFilteringResult.java35 private int mCallBlockReason = Calls.BLOCK_REASON_NOT_BLOCKED; field in CallFilteringResult.Builder
67 mCallBlockReason = callBlockReason; in setCallBlockReason()
105 .setCallBlockReason(result.mCallBlockReason) in from()
116 mShouldAddToCallLog, mShouldShowNotification, mCallBlockReason, in build()
128 public int mCallBlockReason; field in CallFilteringResult
147 this.mCallBlockReason = callBlockReason; in CallFilteringResult()
167 if (isBlockedByProvider(mCallBlockReason)) { in combine()
168 return getCombinedCallFilteringResult(other, mCallBlockReason, in combine()
170 } else if (isBlockedByProvider(other.mCallBlockReason)) { in combine()
171 return getCombinedCallFilteringResult(other, other.mCallBlockReason, in combine()
[all …]
/packages/services/Telecomm/src/com/android/server/telecom/
DCallLogManager.java319 paramBuilder.setCallBlockReason(result.mCallBlockReason); in logCall()