/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | DisconnectedCallNotifierTest.java | 81 DisconnectedCallNotifier notifier = new DisconnectedCallNotifier(mContext, mCallsManager); in testNotificationShownAfterEmergencyCall() local 82 notifier.onCallStateChanged(call, CallState.NEW, CallState.DIALING); in testNotificationShownAfterEmergencyCall() 83 notifier.onCallStateChanged(call, CallState.DIALING, CallState.DISCONNECTED); in testNotificationShownAfterEmergencyCall() 88 notifier.onCallRemoved(call); in testNotificationShownAfterEmergencyCall() 104 DisconnectedCallNotifier notifier = new DisconnectedCallNotifier(mContext, mCallsManager); in testNotificationShownForDisconnectedEmergencyCall() local 105 notifier.onCallStateChanged(call, CallState.NEW, CallState.DIALING); in testNotificationShownForDisconnectedEmergencyCall() 106 notifier.onCallStateChanged(call, CallState.DIALING, CallState.DISCONNECTED); in testNotificationShownForDisconnectedEmergencyCall() 111 notifier.onCallRemoved(call); in testNotificationShownForDisconnectedEmergencyCall() 127 DisconnectedCallNotifier notifier = new DisconnectedCallNotifier(mContext, mCallsManager); in testNotificationNotShownAfterCall() local 128 notifier.onCallStateChanged(call, CallState.DIALING, CallState.DISCONNECTED); in testNotificationNotShownAfterCall() [all …]
|
/packages/modules/Connectivity/staticlibs/testutils/devicetests/com/android/testutils/ |
D | DevSdkIgnoreRunner.kt | 67 override fun run(notifier: RunNotifier?) = wrapped.run(notifier) in getDescription() 93 override fun run(notifier: RunNotifier) { in run() 98 notifier.fireTestIgnored( in run() 103 baseRunner.run(notifier) in run() 110 baseRunner.run(notifier) in run() 112 notifier.fireTestStarted(leakMonitorDesc) in run() 125 notifier.fireTestFailure(Failure(leakMonitorDesc, in run() 131 notifier.fireTestFinished(leakMonitorDesc) in run()
|
/packages/modules/AdServices/adservices/libraries/health/runners/concurrent-longevity/adservices/src/android/adservices/test/longevity/concurrent/ |
D | ProfileSuite.java | 90 public void run(RunNotifier notifier) { in run() argument 92 notifier.addListener(mProfile); in run() 95 notifier.addListener(getTimeoutTerminator(notifier)); in run() 96 super.run(notifier); in run() 106 protected void runChild(Runner runner, final RunNotifier notifier) { in runChild() argument 133 super.runChild(suiteRunner, notifier); in runChild() 246 private TimeoutTerminator getTimeoutTerminator(RunNotifier notifier) { in getTimeoutTerminator() argument 248 mTimeoutTerminator = new TimeoutTerminator(notifier, mArguments); in getTimeoutTerminator()
|
D | ScheduledScenarioRunner.java | 127 protected void runChild(final FrameworkMethod method, RunNotifier notifier) { in runChild() argument 129 super.runChild(method, notifier); in runChild()
|
/packages/apps/Car/systemlibs/car-qc-lib/tests/unit/src/com/android/car/qc/provider/ |
D | BaseLocalQCProviderTest.java | 69 BaseLocalQCProvider.Notifier notifier = mock(BaseLocalQCProvider.Notifier.class); in notifyChange_updateNotified() local 70 mProvider.setNotifier(notifier); in notifyChange_updateNotified() 72 verify(notifier).notifyUpdate(); in notifyChange_updateNotified()
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
D | DataManager.java | 301 public void registerChangeNotifier(Uri uri, ChangeNotifier notifier) { in registerChangeNotifier() argument 312 broker.registerNotifier(notifier); in registerChangeNotifier() 339 public synchronized void registerNotifier(ChangeNotifier notifier) { in registerNotifier() argument 340 mNotifiers.put(notifier, null); in registerNotifier() 345 for(ChangeNotifier notifier : mNotifiers.keySet()) { in onChange() 346 notifier.onChange(selfChange); in onChange()
|
/packages/modules/Bluetooth/system/gd/cert/ |
D | change_waiter.py | 15 notifier = pyinotify.Notifier(wm, handler) variable 18 notifier.loop()
|
/packages/apps/Car/systemlibs/car-qc-lib/src/com/android/car/qc/provider/ |
D | BaseLocalQCProvider.java | 50 public void setNotifier(Notifier notifier) { in setNotifier() argument 51 mNotifier = notifier; in setNotifier()
|
/packages/modules/Bluetooth/system/gd/rust/linux/service/src/ |
D | main.rs | 289 if let Some((tx, notifier)) = guard.as_ref() { in handle_sigterm() 297 let guard = notifier.enabled.lock().unwrap(); in handle_sigterm() 300 let _ = notifier.enabled_notify.wait_timeout(guard, STACK_TURN_OFF_TIMEOUT_MS); in handle_sigterm() 310 let guard = notifier.thread_attached.lock().unwrap(); in handle_sigterm() 313 let _ = notifier.thread_notify.wait_timeout(guard, STACK_CLEANUP_TIMEOUT_MS); in handle_sigterm()
|
/packages/modules/AdServices/adservices/tests/test-util/java/com/android/adservices/experimental/ |
D | AbstractFlagsRouletteRunner.java | 276 protected void runChild(FrameworkMethod method, RunNotifier notifier) { in runChild() argument 279 super.runChild(method, notifier); in runChild() 293 runLeaf(statement, description, notifier); in runChild() 300 super.runChild(method, notifier); in runChild()
|
/packages/apps/Dialer/java/com/android/dialer/calllog/ |
D | CallLogComponent.java | 19 import com.android.dialer.calllog.notifier.RefreshAnnotatedCallLogNotifier;
|
/packages/apps/Dialer/java/com/android/dialer/calllog/observer/ |
D | MarkDirtyObserver.java | 23 import com.android.dialer.calllog.notifier.RefreshAnnotatedCallLogNotifier;
|
/packages/modules/Connectivity/service/src/com/android/server/connectivity/ |
D | LingerMonitor.java | 91 public LingerMonitor(Context context, NetworkNotificationManager notifier, in LingerMonitor() argument 95 mNotifier = notifier; in LingerMonitor()
|
/packages/apps/Dialer/java/com/android/dialer/calllog/notifier/ |
D | RefreshAnnotatedCallLogNotifier.java | 17 package com.android.dialer.calllog.notifier;
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | DbModifierWithNotification.java | 424 static void setVoicemailNotifierForTest(VoicemailNotifier notifier) { in setVoicemailNotifierForTest() argument 425 sVoicemailNotifierForTest = notifier; in setVoicemailNotifierForTest()
|
/packages/services/Telephony/src/com/android/phone/ |
D | SimPhonebookProvider.java | 191 Supplier<IIccPhoneBook> iccPhoneBookSupplier, ContentNotifier notifier) { in onCreate() argument 194 mContentNotifier = notifier; in onCreate() 209 notifier.notifyChange(SimPhonebookContract.AUTHORITY_URI); in onCreate()
|
D | PhoneGlobals.java | 163 CallNotifier notifier; field in PhoneGlobals 655 notifier = CallNotifier.init(this); in onCreate() 839 notifier.updateCallNotifierRegistrationsAfterRadioTechnologyChange(); in initForNewRadioTechnology()
|
D | NotificationMgr.java | 237 mApp.notifier.updatePhoneStateListeners(true); in refreshMwi()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/services/ |
D | CopyJob.java | 947 private DirectoryChildrenObserver(Object notifier) { in DirectoryChildrenObserver() argument 949 assert(notifier != null); in DirectoryChildrenObserver() 950 mNotifier = notifier; in DirectoryChildrenObserver()
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | VoicemailProviderTest.java | 149 VoicemailNotifier notifier = mock(VoicemailNotifier.class); in testBulkInsert() local 150 DbModifierWithNotification.setVoicemailNotifierForTest(notifier); in testBulkInsert() 153 verify(notifier, Mockito.times(1)).sendNotification(); in testBulkInsert()
|
/packages/services/Telephony/tests/src/com/android/phone/ |
D | SimPhonebookProviderTest.java | 1579 ContentNotifier notifier) { in setup() argument 1586 provider.onCreate(subscriptionManager, () -> iccPhoneBook, notifier)); in setup()
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | en_GB_wordlist.combined.gz |
|
D | en_US_wordlist.combined.gz |
|
D | en_wordlist.combined.gz |
|
D | fr_wordlist.combined.gz |
|