Home
last modified time | relevance | path

Searched refs:isolatedEntryPoint (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
DProcessRecord.java193 String isolatedEntryPoint; // Class to run on start if this is a special isolated process. field in ProcessRecord
429 if (isolatedEntryPoint != null || isolatedEntryPointArgs != null) { in dump()
430 pw.print(prefix); pw.print("isolatedEntryPoint="); pw.println(isolatedEntryPoint); in dump()
DActivityManagerService.java4154 app.isolatedEntryPoint = entryPoint; in startProcessLocked()
4570 if (app.isolatedEntryPoint != null) { in handleProcessStartedLocked()
4572 buf.append(app.isolatedEntryPoint); in handleProcessStartedLocked()
7811 if (app.isolatedEntryPoint != null) { in attachApplicationLocked()
7814 thread.runIsolatedEntryPoint(app.isolatedEntryPoint, app.isolatedEntryPointArgs); in attachApplicationLocked()
25115 if (app.isolated && app.services.size() <= 0 && app.isolatedEntryPoint == null) { in updateOomAdjLocked()