/art/test/1925-self-frame-pop/src/art/ |
D | Test1925.java | 38 public static void recurTimesA(int times, Runnable safepoint) { in recurTimesA() argument 39 if (times == 0) { in recurTimesA() 43 recurTimesB(times - 1, safepoint); in recurTimesA() 46 public static void recurTimesB(int times, Runnable safepoint) { in recurTimesB() argument 47 if (times == 0) { in recurTimesB() 51 recurTimesC(times - 1, safepoint); in recurTimesB() 54 public static void recurTimesC(int times, Runnable safepoint) { in recurTimesC() argument 55 if (times == 0) { in recurTimesC() 59 recurTimesD(times - 1, safepoint); in recurTimesC() 62 public static void recurTimesD(int times, Runnable safepoint) { in recurTimesD() argument [all …]
|
/art/test/1923-frame-pop/src/art/ |
D | Test1923.java | 38 public static void recurTimesA(int times, Runnable safepoint) { in recurTimesA() argument 39 if (times == 0) { in recurTimesA() 43 recurTimesB(times - 1, safepoint); in recurTimesA() 46 public static void recurTimesB(int times, Runnable safepoint) { in recurTimesB() argument 47 if (times == 0) { in recurTimesB() 51 recurTimesC(times - 1, safepoint); in recurTimesB() 54 public static void recurTimesC(int times, Runnable safepoint) { in recurTimesC() argument 55 if (times == 0) { in recurTimesC() 59 recurTimesD(times - 1, safepoint); in recurTimesC() 62 public static void recurTimesD(int times, Runnable safepoint) { in recurTimesD() argument [all …]
|
/art/test/1924-frame-pop-toggle/src/art/ |
D | Test1924.java | 38 public static void recurTimesA(int times, Runnable safepoint) { in recurTimesA() argument 39 if (times == 0) { in recurTimesA() 43 recurTimesB(times - 1, safepoint); in recurTimesA() 46 public static void recurTimesB(int times, Runnable safepoint) { in recurTimesB() argument 47 if (times == 0) { in recurTimesB() 51 recurTimesC(times - 1, safepoint); in recurTimesB() 54 public static void recurTimesC(int times, Runnable safepoint) { in recurTimesC() argument 55 if (times == 0) { in recurTimesC() 59 recurTimesD(times - 1, safepoint); in recurTimesC() 62 public static void recurTimesD(int times, Runnable safepoint) { in recurTimesD() argument [all …]
|
/art/test/1926-missed-frame-pop/src/art/ |
D | Test1926.java | 38 public static void recurTimesA(int times, Runnable safepoint) { in recurTimesA() argument 39 if (times == 0) { in recurTimesA() 43 recurTimesB(times - 1, safepoint); in recurTimesA() 46 public static void recurTimesB(int times, Runnable safepoint) { in recurTimesB() argument 47 if (times == 0) { in recurTimesB() 51 recurTimesC(times - 1, safepoint); in recurTimesB() 54 public static void recurTimesC(int times, Runnable safepoint) { in recurTimesC() argument 55 if (times == 0) { in recurTimesC() 59 recurTimesD(times - 1, safepoint); in recurTimesC() 62 public static void recurTimesD(int times, Runnable safepoint) { in recurTimesD() argument [all …]
|
/art/test/2003-double-virtual-structural/ |
D | expected.txt | 1 Hi(SubTransform called 1 times) 2 Hi(SubTransform called 2 times) 3 Hi(SubTransform called 3 times) 4 Hello(SubTransform called 4 times, Transform called 1 times) 5 Hello(SubTransform called 5 times, Transform called 2 times) 6 Hello(SubTransform called 6 times, Transform called 3 times)
|
/art/test/901-hello-ti-agent/ |
D | expected.txt | 13 1 times JVMTI_ERROR_ILLEGAL_ARGUMENT 15 9 times JVMTI_ERROR_ILLEGAL_ARGUMENT 22 4 times JVMTI_ERROR_ILLEGAL_ARGUMENT 29 5 times JVMTI_ERROR_ILLEGAL_ARGUMENT 32 1 times JVMTI_ERROR_ILLEGAL_ARGUMENT 35 4 times JVMTI_ERROR_ILLEGAL_ARGUMENT 38 8 times JVMTI_ERROR_ILLEGAL_ARGUMENT 42 7 times JVMTI_ERROR_ILLEGAL_ARGUMENT 55 7 times JVMTI_ERROR_ILLEGAL_ARGUMENT 57 18 times JVMTI_ERROR_ILLEGAL_ARGUMENT [all …]
|
/art/test/1999-virtual-structural/ |
D | expected.txt | 1 Hi(SubTransform called 1 times) 2 Hi(SubTransform called 2 times) 3 Hi(SubTransform called 3 times) 4 Hello (Transform called 1 times)(SubTransform called 4 times)
|
/art/tools/class2greylist/test/src/com/android/class2greylist/ |
D | UnsupportedAppUsageAnnotationHandlerTest.java | 24 import static org.mockito.Mockito.times; 100 verify(mConsumer, times(1)).consume(greylist.capture(), any(), any()); in testGreylistMethod() 121 verify(mConsumer, times(1)).consume(greylist.capture(), any(), any()); in testGreylistConstructor() 142 verify(mConsumer, times(1)).consume(greylist.capture(), any(), any()); in testGreylistField() 163 verify(mConsumer, times(1)).consume(greylist.capture(), any(), any()); in testGreylistImplicit() 183 verify(mStatus, times(1)).error(format.capture(), any()); in testGreylistImplicit_Invalid_MissingOnClass() 205 verify(mStatus, times(1)).error(format.capture(), any()); in testGreylistImplicit_Invalid_PresentOnMember() 227 verify(mConsumer, times(1)).consume(greylist.capture(), any(), any()); in testGreylistMethodExpectedSignature() 246 verify(mStatus, times(1)).error(any(), any()); in testGreylistMethodExpectedSignatureWrong() 268 verify(mConsumer, times(1)).consume(greylist.capture(), any(), any()); in testGreylistInnerClassMethod() [all …]
|
D | CovariantReturnTypeHandlerTest.java | 24 import static org.mockito.Mockito.times; 81 verify(mConsumer, times(1)).consume( in testReturnTypeWhitelisted()
|
/art/test/998-redefine-use-after-free/src/ |
D | Main.java | 45 public static void runSeveralTimes(int times) throws Exception { in runSeveralTimes() argument 50 for (int i = 0 ; i < times; i++) { in runSeveralTimes()
|
/art/test/078-polymorphic-virtual/ |
D | info.txt | 2 calless invoked 10,000,000 times each in three threads.
|
/art/test/1917-get-stack-frame/ |
D | expected.txt | 1 Recurring 5 times 13 Recurring 5 times on another thread 24 Recurring 5 times on another thread. Stack trace from main thread!
|
/art/test/2029-contended-monitors/ |
D | info.txt | 3 times for contended and uncontentended monitor acquisition under different
|
/art/test/970-iface-super-resolution-gen/ |
D | info.txt | 13 return equivalent output when run multiple times and the expected output should
|
/art/test/964-default-iface-init-gen/ |
D | info.txt | 13 return equivalent output when run multiple times and the expected output should
|
/art/test/961-default-iface-resolution-gen/ |
D | info.txt | 13 return equivalent output when run multiple times and the expected output should
|
/art/test/971-iface-super/ |
D | info.txt | 13 return equivalent output when run multiple times and the expected output should
|
/art/test/968-default-partial-compile-gen/ |
D | info.txt | 13 return equivalent output when run multiple times and the expected output should
|
/art/test/960-default-smali/ |
D | info.txt | 14 always return equivalent output when run multiple times.
|
/art/tools/jvmti-agents/simple-force-redefine/ |
D | README.md | 26 Since the agent has no static state it can be attached multiple times to the same process.
|
/art/tools/ |
D | libcore_gcstress_debug_failures.txt | 48 description: "Sometimes times out with gcstress and debug.",
|
D | external_oj_libjdwp_art_failures.txt | 52 description: "Test times out on fugu-debug",
|
/art/tools/runtime_memusage/ |
D | symbol_trace_info.py | 201 data_lists["times"] = parsed_argv.times
|
/art/tools/dexfuzz/ |
D | README | 105 resulting output. Divergent programs are run multiple times with a
|
/art/test/dexdump/ |
D | invoke-custom.txt | 3489 … |00c0: const-string v9, " Call site instance #%02d was invoked % 2d times
|