HomeSort by relevance Sort by last modified time
    Searched defs:mNotifier (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /platform_testing/libraries/longevity/src/android/longevity/core/listener/
RunTerminator.java 26 protected RunNotifier mNotifier;
29 mNotifier = notifier;
37 mNotifier.pleaseStop();
  /platform_testing/libraries/longevity/tests/src/android/longevity/core/listener/
ErrorTerminatorTest.java 38 @Mock private RunNotifier mNotifier;
43 mListener = new ErrorTerminator(mNotifier);
52 verify(mNotifier).pleaseStop();
64 verify(mNotifier, never()).pleaseStop();
TimeoutTerminatorTest.java 39 @Mock private RunNotifier mNotifier;
46 mListener = new TimeoutTerminator(mNotifier, args);
55 verify(mNotifier, never()).pleaseStop();
66 verify(mNotifier).pleaseStop();
  /platform_testing/libraries/longevity/tests/src/android/longevity/platform/listener/
TimeoutTerminatorTest.java 43 @Mock private RunNotifier mNotifier;
50 mListener = new TimeoutTerminator(mNotifier, args);
59 verify(mNotifier, never()).pleaseStop();
70 verify(mNotifier).pleaseStop();
BatteryTerminatorTest.java 46 @Mock private RunNotifier mNotifier;
57 mListener = new BatteryTerminator(mNotifier, args, mContext);
68 verify(mNotifier).pleaseStop();
79 verify(mNotifier, never()).pleaseStop();
  /frameworks/base/services/core/java/com/android/server/connectivity/
LingerMonitor.java 73 private final NetworkNotificationManager mNotifier;
90 mNotifier = notifier;
152 mNotifier.showNotification(fromNai.network.netId, NotificationType.NETWORK_SWITCH,
167 mNotifier.clearNotification(fromNetId);
191 mNotifier.showToast(fromNai, toNai);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalAlbumSet.java 53 private final ChangeNotifier mNotifier;
66 mNotifier = new ChangeNotifier(this, mWatchUris, application);
167 if (mNotifier.isDirty()) {
199 mNotifier.fakeChange();
SecureAlbum.java 50 private final ChangeNotifier mNotifier;
60 mNotifier = new ChangeNotifier(this, mWatchUris, application);
81 mNotifier.fakeChange();
126 if (mNotifier.isDirty()) {
LocalAlbum.java 57 private final ChangeNotifier mNotifier;
86 mNotifier = new ChangeNotifier(this, mBaseUri, application);
256 if (mNotifier.isDirty()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
RemoteAdtTestRunner.java 433 private TestResultsNotifier mNotifier;
442 mNotifier = notifier;
447 mNotifier.testEnded(new TestCaseReference(mDeviceName, test));
455 mNotifier.testFailed(failure);
463 mNotifier.testFailed(failure);
473 mNotifier.testRunEnded(mDeviceName, elapsedTime);
498 mNotifier.testStarted(testId);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransferHistory.java 83 private BluetoothOppNotification mNotifier;
146 mNotifier = new BluetoothOppNotification(this);
341 mNotifier.updateNotification();
BluetoothOppService.java 112 private BluetoothOppNotification mNotifier;
234 mNotifier = new BluetoothOppNotification(this);
235 mNotifier.mNotificationMgr.cancelAll();
236 mNotifier.updateNotification();
342 mNotifier.cancelNotifications();
690 mNotifier.updateNotification();
    [all...]
  /frameworks/base/services/core/java/com/android/server/power/
PowerManagerService.java 240 private Notifier mNotifier;
763 mNotifier = new Notifier(Looper.getMainLooper(), mContext, mBatteryStats,
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
CallbackRegistry.java 71 private final NotifierCallback<C, T, A> mNotifier;
78 mNotifier = notifier;
204 mNotifier.onNotifyCallback(mCallbacks.get(i), sender, arg, arg2);
  /frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
CallbackRegistry.java 69 private final NotifierCallback<C, T, A> mNotifier;
76 mNotifier = notifier;
201 mNotifier.onNotifyCallback(mCallbacks.get(i), sender, arg, arg2);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Phone.java 361 protected PhoneNotifier mNotifier;
477 mNotifier = notifier;
692 mNotifier.notifyOemHookRawEventForSubscriber(getSubId(), data);
    [all...]
GsmCdmaPhone.java 594 mNotifier.notifyPhoneState(this);
614 mNotifier.notifyDisconnectCause(cn.getDisconnectCause(), cn.getPreciseDisconnectCause());
672 mNotifier.notifyCellLocation(this);
677 mNotifier.notifyCallForwardingChanged(this);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneBase.java 211 mNotifier.notifyPhoneState(this);
227 mNotifier.notifyDisconnectCause(cn.getDisconnectCause(), cn.getPreciseDisconnectCause());
244 mNotifier.notifyCallForwardingChanged(this);
  /packages/apps/DocumentsUI/src/com/android/documentsui/services/
CopyJob.java     [all...]
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoProvider.java 244 protected ChangeNotification mNotifier = null;
347 mNotifier = notification;
444 if (mNotifier != null) {
445 mNotifier.notifyChange(uri, syncToNetwork);
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadThread.java 122 private final DownloadNotifier mNotifier;
251 mNotifier = Helpers.getDownloadNotifier(mContext);
378 mNotifier.notifyDownloadSpeed(mId, 0);
760 mNotifier.notifyDownloadSpeed(mId, mSpeed);
    [all...]
  /frameworks/base/tests/net/java/com/android/server/connectivity/
LingerMonitorTest.java 71 @Mock NetworkNotificationManager mNotifier;
81 mMonitor = new TestableLingerMonitor(mCtx, mNotifier, HIGH_DAILY_LIMIT, HIGH_RATE_LIMIT);
127 verify(mNotifier, times(1)).clearNotification(100);
141 verify(mNotifier, times(1)).clearNotification(100);
155 verify(mNotifier, times(1)).clearNotification(100);
157 reset(mNotifier);
174 verify(mNotifier, times(1)).clearNotification(100);
176 reset(mNotifier);
183 mMonitor = new TestableLingerMonitor(mCtx, mNotifier, HIGH_DAILY_LIMIT, LOW_RATE_LIMIT);
194 reset(mNotifier);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhoneBase.java 196 mNotifier.notifyCallForwardingChanged(this);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
TelephonyTest.java 116 protected PhoneNotifier mNotifier;
  /frameworks/data-binding/internal-prebuilts/com/android/databinding/baseLibrary/1.0-rc3/
baseLibrary-1.0-rc3.jar 

Completed in 880 milliseconds

1 2 3 4