Home
last modified time | relevance | path

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

/frameworks/base/legacy-test/src/android/test/
DInstrumentationTestSuite.java43 public InstrumentationTestSuite(Instrumentation instr) { in InstrumentationTestSuite() argument
44 mInstrumentation = instr; in InstrumentationTestSuite()
48 public InstrumentationTestSuite(String name, Instrumentation instr) { in InstrumentationTestSuite() argument
50 mInstrumentation = instr; in InstrumentationTestSuite()
58 public InstrumentationTestSuite(final Class theClass, Instrumentation instr) { in InstrumentationTestSuite() argument
60 mInstrumentation = instr; in InstrumentationTestSuite()
/frameworks/base/services/core/java/com/android/server/am/
DProcessRecord.java143 ActiveInstrumentation instr;// Set to currently active instrumentation running in process field in ProcessRecord
250 if (instr != null) { in dump()
251 pw.print(prefix); pw.print("instr="); pw.println(instr); in dump()
DActivityManagerService.java4077 if (app == null || app.instr == null) { in startHomeActivityLocked()
5310 if (app.instr != null) { in handleAppDiedLocked()
5312 + " running instrumentation " + app.instr.mClass); in handleAppDiedLocked()
5465 boolean doLowMem = app.instr == null; in appDiedLocked()
7044 } else if (app.instr != null && app.instr.mProfileFile != null) { in attachApplicationLocked()
7045 profilerInfo = new ProfilerInfo(app.instr.mProfileFile, null, 0, false, false, in attachApplicationLocked()
7064 if (app.instr != null) { in attachApplicationLocked()
7065 notifyPackageUse(app.instr.mClass.getPackageName(), in attachApplicationLocked()
7070 ApplicationInfo appInfo = app.instr != null ? app.instr.mTargetInfo : app.info; in attachApplicationLocked()
7087 if (mActiveInstrumentation.size() > 0 && app.instr == null) { in attachApplicationLocked()
[all …]
DAppErrors.java377 if (r != null && r.instr != null) { in crashApplicationInner()
/frameworks/base/core/java/android/app/
DActivity.java6936 Instrumentation instr, IBinder token, int ident, in attach() argument
6960 mInstrumentation = instr; in attach()