/aosp12/frameworks/base/services/core/java/com/android/server/am/ |
H A D | InstrumentationReporter.java | 78 if (DEBUG) Slog.d(TAG, "Dispatch status to " + rep.mWatcher in run() 81 rep.mWatcher.instrumentationStatus(rep.mName, rep.mResultCode, in run() 84 if (DEBUG) Slog.d(TAG, "Dispatch finished to " + rep.mWatcher in run() 87 rep.mWatcher.instrumentationFinished(rep.mName, rep.mResultCode, in run() 101 final IInstrumentationWatcher mWatcher; field in InstrumentationReporter.Report 109 mWatcher = watcher; in Report() 114 Binder.allowBlocking(mWatcher.asBinder()); in Report()
|
H A D | ActiveInstrumentation.java | 47 IInstrumentationWatcher mWatcher; field in ActiveInstrumentation 125 if (mWatcher != null) { in dump() 126 pw.print(prefix); pw.print("mWatcher="); pw.println(mWatcher); in dump() 155 proto.write(ActiveInstrumentationProto.WATCHER, mWatcher.toString()); in dumpDebug()
|
H A D | ActivityManagerService.java | 4530 instr2.mWatcher, in attachApplicationLocked() 13837 activeInstr.mWatcher = watcher; in startInstrumentation() 13912 activeInstr.mWatcher, in instrumentWithoutRestart() 13993 if (instr.mWatcher != null) { in finishInstrumentationLocked() 14002 mInstrumentationReporter.reportFinished(instr.mWatcher, in finishInstrumentationLocked()
|
/aosp12/frameworks/base/services/core/java/com/android/server/pm/ |
H A D | WatchedIntentResolver.java | 87 private final Watcher mWatcher = new Watcher() { field in WatchedIntentResolver 104 f.registerObserver(mWatcher); in addFilter() 110 f.unregisterObserver(mWatcher); in removeFilter() 117 f.unregisterObserver(mWatcher); in removeFilterInternal()
|
H A D | PackageManagerService.java | 1836 private final Watcher mWatcher = new Watcher() { field in PackageManagerService 7245 mPackages.registerObserver(mWatcher); in registerObserver() 7246 mSharedLibraries.registerObserver(mWatcher); in registerObserver() 7247 mStaticLibsByDeclaringPackage.registerObserver(mWatcher); in registerObserver() 7248 mInstrumentation.registerObserver(mWatcher); in registerObserver() 7249 mWebInstantAppsDisabled.registerObserver(mWatcher); in registerObserver() 7250 mAppsFilter.registerObserver(mWatcher); in registerObserver() 7251 mInstantAppRegistry.registerObserver(mWatcher); in registerObserver() 7252 mSettings.registerObserver(mWatcher); in registerObserver() 7253 mIsolatedOwners.registerObserver(mWatcher); in registerObserver() [all …]
|
/aosp12/frameworks/base/services/core/java/com/android/server/tv/ |
H A D | TvRemoteService.java | 41 private final TvRemoteProviderWatcher mWatcher; field in TvRemoteService 45 mWatcher = new TvRemoteProviderWatcher(context, mLock); in TvRemoteService() 65 mWatcher.start(); // Also schedules the start of all providers. in onBootPhase()
|
/aosp12/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/ |
H A D | RotationWatcher.java | 30 private final IRotationWatcher mWatcher = new IRotationWatcher.Stub() { field in RotationWatcher 50 WindowManagerGlobal.getWindowManagerService().watchRotation(mWatcher, in enable() 62 WindowManagerGlobal.getWindowManagerService().removeRotationWatcher(mWatcher); in disable()
|
/aosp12/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/ |
H A D | UiAutomatorTestRunner.java | 67 private final FakeInstrumentationWatcher mWatcher = new FakeInstrumentationWatcher(); field in UiAutomatorTestRunner 71 mWatcher.instrumentationStatus(null, resultCode, status); 86 mWatcher.instrumentationFinished(null, 0, results); in run()
|
/aosp12/frameworks/base/services/core/java/com/android/server/os/ |
H A D | NativeTombstoneManager.java | 75 private final TombstoneWatcher mWatcher; field in NativeTombstoneManager 91 mWatcher = new TombstoneWatcher(); in NativeTombstoneManager() 92 mWatcher.startWatching(); in NativeTombstoneManager()
|
/aosp12/frameworks/base/core/java/android/text/ |
H A D | DynamicLayout.java | 482 if (mWatcher == null) in generate() 483 mWatcher = new ChangeWatcher(this); in generate() 493 sp.setSpan(mWatcher, 0, baseLength, in generate() 1154 private ChangeWatcher mWatcher; field in DynamicLayout
|
/aosp12/frameworks/base/core/java/android/app/ |
H A D | Instrumentation.java | 114 private IInstrumentationWatcher mWatcher; field in Instrumentation 223 if (mWatcher != null) { in sendStatus() 225 mWatcher.instrumentationStatus(mComponent, resultCode, results); in sendStatus() 228 mWatcher = null; in sendStatus() 2090 mWatcher = watcher; in init()
|
/aosp12/frameworks/base/services/core/java/com/android/server/media/ |
H A D | MediaRouterService.java | 1118 private final RemoteDisplayProviderWatcher mWatcher; field in MediaRouterService.UserHandler 1136 mWatcher = new RemoteDisplayProviderWatcher(service.mContext, this, in UserHandler() 1198 mWatcher.dump(pw, prefix); in dump() 1213 mWatcher.start(); // also starts all providers in start() 1221 mWatcher.stop(); // also stops all providers in stop()
|
H A D | MediaRouter2ServiceImpl.java | 1288 private final MediaRoute2ProviderWatcher mWatcher; field in MediaRouter2ServiceImpl.UserHandler 1309 mWatcher = new MediaRoute2ProviderWatcher(service.mContext, this, in UserHandler() 1320 mWatcher.start(); in start() 1327 mWatcher.stop(); // also stops all providers in stop()
|
/aosp12/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | WindowManagerService.java | 697 final IRotationWatcher mWatcher; field in WindowManagerService.RotationWatcher 702 mWatcher = watcher; in RotationWatcher() 4267 if (watcherBinder == mRotationWatchers.get(i).mWatcher.asBinder()) { in watchRotation() 4269 IBinder binder = removed.mWatcher.asBinder(); in watchRotation() 4298 if (watcherBinder == rotationWatcher.mWatcher.asBinder()) { in removeRotationWatcher() 4300 IBinder binder = removed.mWatcher.asBinder(); in removeRotationWatcher()
|
H A D | DisplayContent.java | 1995 rotationWatcher.mWatcher.onRotationChanged(rotation); in applyRotation()
|
/aosp12/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 6750 Landroid/app/Instrumentation;->mWatcher:Landroid/app/IInstrumentationWatcher; 59309 Landroid/text/DynamicLayout;->mWatcher:Landroid/text/DynamicLayout$ChangeWatcher;
|