Home
last modified time | relevance | path

Searched refs:mAnrController (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
DErrorDialogController.java67 private AnrController mAnrController; field in ErrorDialogController
130 mAnrController = null; in clearAnrDialogs()
231 return mAnrController; in getAnrController()
236 mAnrController = controller; in setAnrController()
/frameworks/base/services/core/java/com/android/server/wm/
DInputManagerCallback.java101 mService.mAnrController.notifyAppUnresponsive(applicationHandle, timeoutRecord); in notifyNoFocusedWindowAnr()
109 mService.mAnrController.notifyWindowUnresponsive(token, pid, timeoutRecord); in notifyWindowUnresponsive()
114 mService.mAnrController.notifyWindowResponsive(token, pid); in notifyWindowResponsive()
DActivityTaskManagerService.java565 private final List<AnrController> mAnrController = new ArrayList<>(); field in ActivityTaskManagerService
2320 synchronized (mAnrController) { in registerAnrController()
2321 mAnrController.add(controller); in registerAnrController()
2327 synchronized (mAnrController) { in unregisterAnrController()
2328 mAnrController.remove(controller); in unregisterAnrController()
2343 synchronized (mAnrController) { in getAnrController()
2344 controllers = new ArrayList<>(mAnrController); in getAnrController()
DWindowManagerService.java789 final AnrController mAnrController; field in WindowManagerService
1441 mAnrController = new AnrController(this); in WindowManagerService()
5644 mAnrController.onFocusChanged(newFocusedWindow); in reportFocusChanged()