Home | History | Annotate | Download | only in notification

Lines Matching refs:mPolicy

50     private Policy mPolicy;
58 mPolicy = NotificationManager.from(mContext).getNotificationPolicy();
70 mPolicy.priorityCallSenders, mPolicy.priorityMessageSenders,
71 mPolicy.suppressedVisualEffects);
85 mPolicy.priorityCallSenders, mPolicy.priorityMessageSenders,
86 mPolicy.suppressedVisualEffects);
100 val == SOURCE_NONE ? mPolicy.priorityMessageSenders : val;
106 mPolicy.priorityCallSenders, allowMessagesFrom,
107 mPolicy.suppressedVisualEffects);
120 final int allowCallsFrom = val == SOURCE_NONE ? mPolicy.priorityCallSenders : val;
125 allowCallsFrom, mPolicy.priorityMessageSenders,
126 mPolicy.suppressedVisualEffects);
145 savePolicy(priorityCategories, mPolicy.priorityCallSenders,
146 mPolicy.priorityMessageSenders, mPolicy.suppressedVisualEffects);
161 mPolicy = NotificationManager.from(mContext).getNotificationPolicy();
170 ? mPolicy.priorityCallSenders : SOURCE_NONE));
174 ? mPolicy.priorityMessageSenders : SOURCE_NONE));
180 || mPolicy.priorityCallSenders != Policy.PRIORITY_SENDERS_ANY);
205 return (mPolicy.priorityCategories & categoryType) != 0;
209 int priorityCategories = mPolicy.priorityCategories;
220 mPolicy = new Policy(priorityCategories, priorityCallSenders, priorityMessageSenders,
222 NotificationManager.from(mContext).setNotificationPolicy(mPolicy);