Home
last modified time | relevance | path

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

/packages/services/Telecomm/src/com/android/server/telecom/callfiltering/
DCallFilteringResult.java67 public Builder setShouldSilence(boolean shouldSilence) { in setShouldSilence() argument
68 mShouldSilence = shouldSilence; in setShouldSilence()
111 .setShouldSilence(result.shouldSilence) in from()
132 public boolean shouldSilence; field in CallFilteringResult
145 shouldSilence, boolean shouldAddToCallLog, boolean shouldShowNotification, boolean in CallFilteringResult() argument
153 this.shouldSilence = shouldSilence; in CallFilteringResult()
212 .setShouldSilence(shouldSilence || other.shouldSilence) in combine()
241 .setShouldSilence(shouldSilence || other.shouldSilence) in getCombinedCallFilteringResult()
287 if (shouldSilence != that.shouldSilence) return false; in equals()
305 result = 31 * result + (shouldSilence ? 1 : 0); in hashCode()
[all …]
/packages/services/Telecomm/src/com/android/server/telecom/
DCallsManager.java1074 } else if (result.shouldSilence) { in onCallFilteringComplete()