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.java61 public Builder setShouldSilence(boolean shouldSilence) { in setShouldSilence() argument
62 mShouldSilence = shouldSilence; in setShouldSilence()
104 .setShouldSilence(result.shouldSilence) in from()
124 public boolean shouldSilence; field in CallFilteringResult
136 shouldSilence, boolean shouldAddToCallLog, boolean shouldShowNotification, int in CallFilteringResult() argument
143 this.shouldSilence = shouldSilence; in CallFilteringResult()
201 .setShouldSilence(shouldSilence || other.shouldSilence) in combine()
228 .setShouldSilence(shouldSilence || other.shouldSilence) in getCombinedCallFilteringResult()
272 if (shouldSilence != that.shouldSilence) return false; in equals()
289 result = 31 * result + (shouldSilence ? 1 : 0); in hashCode()
[all …]
/packages/services/Telecomm/src/com/android/server/telecom/
DCallsManager.java837 } else if (result.shouldSilence) { in onCallFilteringComplete()