Home
last modified time | relevance | path

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

/frameworks/base/test-base/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/tests/FlickerTests/src/com/android/server/wm/flicker/
DStandardAppHelper.java30 public StandardAppHelper(Instrumentation instr, String packageName, String launcherName) { in StandardAppHelper() argument
31 super(instr); in StandardAppHelper()
/frameworks/base/services/core/java/com/android/server/am/
DProcessRecord.java1236 void setActiveInstrumentation(ActiveInstrumentation instr) { in setActiveInstrumentation() argument
1237 mInstr = instr; in setActiveInstrumentation()
1238 boolean isInstrumenting = instr != null; in setActiveInstrumentation()
1240 isInstrumenting && instr.mHasBackgroundActivityStartsPermission); in setActiveInstrumentation()
DActivityManagerService.java4924 final ActiveInstrumentation instr = app.getActiveInstrumentation(); in attachApplicationLocked() local
4926 if (instr != null) { in attachApplicationLocked()
4927 notifyPackageUse(instr.mClass.getPackageName(), in attachApplicationLocked()
4933 ApplicationInfo appInfo = instr != null ? instr.mTargetInfo : app.info; in attachApplicationLocked()
4952 } else if (instr != null && instr.mProfileFile != null) { in attachApplicationLocked()
4953 profilerInfo = new ProfilerInfo(instr.mProfileFile, null, 0, false, false, in attachApplicationLocked()
4990 if (mActiveInstrumentation.size() > 0 && instr == null) { in attachApplicationLocked()
15835 final ActiveInstrumentation instr = app.getActiveInstrumentation(); in addInstrumentationResultsLocked() local
15836 if (instr == null) { in addInstrumentationResultsLocked()
15841 if (!instr.mFinished && results != null) { in addInstrumentationResultsLocked()
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/php/ext/google/protobuf/
Dupb.c6635 static int instruction_len(uint32_t instr) { in instruction_len() argument
6636 switch (getop(instr)) { in instruction_len()
6861 uint32_t instr = *p++; in dumpbc() local
6862 uint8_t op = getop(instr); in dumpbc()
6906 fprintf(f, " %d", instr >> 8); in dumpbc()
6914 fprintf(f, " =>0x%tx", p + getofs(instr) - begin); in dumpbc()
6918 fprintf(f, " tag:0x%x", instr >> 16); in dumpbc()
6919 if (getofs(instr)) { in dumpbc()
6920 fprintf(f, " =>0x%tx", p + getofs(instr) - begin); in dumpbc()
6928 fprintf(f, " n:%d", instr >> 16); in dumpbc()
[all …]
Dupb.h7409 UPB_INLINE opcode getop(uint32_t instr) { return instr & 0xff; }
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/ruby/ext/google/protobuf_c/
Dupb.c7308 static int instruction_len(uint32_t instr) { in instruction_len() argument
7309 switch (getop(instr)) { in instruction_len()
7535 uint32_t instr = *p++; in dumpbc() local
7536 uint8_t op = getop(instr); in dumpbc()
7580 fprintf(f, " %d", instr >> 8); in dumpbc()
7588 fprintf(f, " =>0x%tx", p + getofs(instr) - begin); in dumpbc()
7592 fprintf(f, " tag:0x%x", instr >> 16); in dumpbc()
7593 if (getofs(instr)) { in dumpbc()
7594 fprintf(f, " =>0x%tx", p + getofs(instr) - begin); in dumpbc()
7602 fprintf(f, " n:%d", instr >> 16); in dumpbc()
[all …]
Dupb.h7712 UPB_INLINE opcode getop(uint32_t instr) { return instr & 0xff; }
/frameworks/base/core/java/android/app/
DActivity.java7702 Instrumentation instr, IBinder token, int ident, in attach() argument
7726 mInstrumentation = instr; in attach()