OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:allowRepeatCallers
(Results
1 - 4
of
4
) sorted by null
/platform_testing/tests/functional/settingstests/src/com/android/settings/functional/
SoundSettingsTest.java
109
assertFalse(baseZenCfg.
allowRepeatCallers
== changedCfg.
allowRepeatCallers
);
118
assertTrue(baseZenCfg.
allowRepeatCallers
== changedCfg.
allowRepeatCallers
);
/frameworks/base/core/java/android/service/notification/
ZenModeConfig.java
127
public boolean
allowRepeatCallers
= DEFAULT_ALLOW_REPEAT_CALLERS;
144
allowRepeatCallers
= source.readInt() == 1;
169
dest.writeInt(
allowRepeatCallers
? 1 : 0);
200
.append(",
allowRepeatCallers
=").append(
allowRepeatCallers
)
224
if (
allowRepeatCallers
!= to.
allowRepeatCallers
) {
225
d.addLine("
allowRepeatCallers
",
allowRepeatCallers
, to.
allowRepeatCallers
);
[
all
...]
/frameworks/base/services/core/java/com/android/server/notification/
ZenModeFiltering.java
84
if (config.
allowRepeatCallers
&& REPEAT_CALLERS.isRepeat(context, extras)) {
133
if (config.
allowRepeatCallers
ZenModeHelper.java
517
config.
allowRepeatCallers
, config.allowMessages,
734
final boolean muteCalls = zen && !mConfig.allowCalls && !mConfig.
allowRepeatCallers
[
all
...]
Completed in 462 milliseconds