Home
last modified time | relevance | path

Searched refs:CellularIdentifierDisclosureNotifier (Results 1 – 5 of 5) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/security/
DCellularIdentifierDisclosureNotifierTest.java82 CellularIdentifierDisclosureNotifier notifier = getNotifier(); in testInitializeDisabled()
90 CellularIdentifierDisclosureNotifier notifier = getNotifier(); in testDisableAddDisclosureNop()
101 CellularIdentifierDisclosureNotifier notifier = getNotifier(); in testAddDisclosureEmergencyNop()
120 CellularIdentifierDisclosureNotifier notifier = getNotifier(); in testAddDisclosureCountIncrements()
138 CellularIdentifierDisclosureNotifier notifier = getNotifier(); in testSingleDisclosureStartAndEndTimesAreEqual()
151 CellularIdentifierDisclosureNotifier notifier = getNotifier(); in testMultipleDisclosuresTimeWindows()
170 CellularIdentifierDisclosureNotifier notifier = getNotifier(); in testAddDisclosureThenWindowClose()
195 CellularIdentifierDisclosureNotifier notifier = getNotifier(); in testDisableClosesWindow()
220 CellularIdentifierDisclosureNotifier notifier = getNotifier(); in testMultipleSubIdsTrackedIndependently()
254 CellularIdentifierDisclosureNotifier notifier = getNotifier(); in testLogDisclsoure()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/security/
DCellularIdentifierDisclosureNotifier.java49 public class CellularIdentifierDisclosureNotifier { class
53 private static CellularIdentifierDisclosureNotifier sInstance = null;
71 public CellularIdentifierDisclosureNotifier(CellularNetworkSecuritySafetySource safetySource) { in CellularIdentifierDisclosureNotifier() method in CellularIdentifierDisclosureNotifier
85 public CellularIdentifierDisclosureNotifier( in CellularIdentifierDisclosureNotifier() method in CellularIdentifierDisclosureNotifier
200 public static synchronized CellularIdentifierDisclosureNotifier getInstance( in getInstance()
203 sInstance = new CellularIdentifierDisclosureNotifier(safetySource); in getInstance()
319 void increment(Context context, CellularIdentifierDisclosureNotifier notifier) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DTelephonyComponentFactory.java50 import com.android.internal.telephony.security.CellularIdentifierDisclosureNotifier;
590 public CellularIdentifierDisclosureNotifier makeIdentifierDisclosureNotifier(
592 return CellularIdentifierDisclosureNotifier.getInstance(safetySource);
DGsmCdmaPhone.java119 import com.android.internal.telephony.security.CellularIdentifierDisclosureNotifier;
306 private CellularIdentifierDisclosureNotifier mIdentifierDisclosureNotifier;
560 .inject(CellularIdentifierDisclosureNotifier.class.getName()) in initOnce()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DTelephonyTest.java128 import com.android.internal.telephony.security.CellularIdentifierDisclosureNotifier;
291 protected CellularIdentifierDisclosureNotifier mIdentifierDisclosureNotifier;
578 mIdentifierDisclosureNotifier = Mockito.mock(CellularIdentifierDisclosureNotifier.class); in setUp()