Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/am/
H A DAsyncProcessStartTest.java193 final IBinder threadBinder = new Binder(); in makeActiveProcessRecord() local
194 doReturn(threadBinder).when(thread).asBinder(); in makeActiveProcessRecord()
H A DBroadcastQueueTest.java461 final IBinder threadBinder = new Binder(); in makeActiveProcessRecord() local
462 doReturn(threadBinder).when(thread).asBinder(); in makeActiveProcessRecord()
/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DProcessList.java3898 ProcessRecord getLRURecordForAppLOSP(IBinder threadBinder) {
3899 if (threadBinder == null) {
3906 if (t != null && t.asBinder() == threadBinder) {
H A DActivityManagerService.java3422 ProcessRecord getRecordForAppLOSP(IBinder threadBinder) { in getRecordForAppLOSP() argument
3423 if (threadBinder == null) { in getRecordForAppLOSP()
3427 ProcessRecord record = mProcessList.getLRURecordForAppLOSP(threadBinder); in getRecordForAppLOSP()
3438 if (procThread != null && procThread.asBinder() == threadBinder) { in getRecordForAppLOSP()
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DActivityTaskManagerService.java5337 final IBinder threadBinder = thread.asBinder(); in getProcessController() local
5343 if (proc.hasThread() && proc.getThread().asBinder() == threadBinder) { in getProcessController()