1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
| private void attachApplicationLocked(@NonNull IApplicationThread thread,int pid, int callingUid, long startSeq) { ProcessRecord app; long startTime = SystemClock.uptimeMillis(); long bindApplicationTimeMillis; long bindApplicationTimeNanos; if (pid != MY_PID && pid >= 0) { synchronized (mPidsSelfLocked) { app = mPidsSelfLocked.get(pid); } ... if (app.getIsolatedEntryPoint() != null) { thread.runIsolatedEntryPoint(app.getIsolatedEntryPoint(), app.getIsolatedEntryPointArgs()); } else { boolean isSdkInSandbox = false; ComponentName instrumentationName = null; Bundle instrumentationArgs = null; IInstrumentationWatcher instrumentationWatcher = null; IUiAutomationConnection instrumentationUiConnection = null; if (instr2 != null) { isSdkInSandbox = instr2.mIsSdkInSandbox; instrumentationName = instr2.mClass; instrumentationArgs = instr2.mArguments; instrumentationWatcher = instr2.mWatcher; instrumentationUiConnection = instr2.mUiAutomationConnection; } thread.bindApplication( processName, appInfo, app.sdkSandboxClientAppVolumeUuid, app.sdkSandboxClientAppPackage, isSdkInSandbox, providerList, instrumentationName, profilerInfo, instrumentationArgs, instrumentationWatcher, instrumentationUiConnection, testMode, mBinderTransactionTrackingEnabled, enableTrackAllocation, isRestrictedBackupMode || !normalMode, app.isPersistent(), new Configuration(app.getWindowProcessController().getConfiguration()), app.getCompat(), getCommonServicesLocked(app.isolated), mCoreSettingsObserver.getCoreSettingsLocked(), buildSerial, autofillOptions, contentCaptureOptions, app.getDisabledCompatChanges(), app.getLoggableCompatChanges(), serializedSystemFontMap, app.getStartElapsedTime(), app.getStartUptime()); } ... } }
|